Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the cargo-minor group with 2 updates #59

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 5, 2024

Updates the requirements on env_logger and yew to permit the latest version.
Updates env_logger to 0.11.3

Release notes

Sourced from env_logger's releases.

v0.11.3

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv
Changelog

Sourced from env_logger's changelog.

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv

[0.11.2] - 2024-02-13

[0.11.1] - 2024-01-27

Fixes

  • Allow styling with Target::Pipe

[0.11.0] - 2024-01-19

Migration Guide

env_logger::fmt::Style: The bespoke styling API, behind color, was removed, in favor of accepting any ANSI styled string and adapting it to the target stream's capabilities.

Possible styling libraries include:

  • anstyle is a minimal, runtime string styling API and is re-exported as env_logger::fmt::style
  • owo-colors is a feature rich runtime string styling API
  • color-print for feature-rich compile-time styling API

custom_format.rs uses anstyle via Formatter::default_level_style

Breaking Change

  • Removed bespoke styling API
    • env_logger::fmt::Formatter::style
    • env_logger::fmt::Formatter::default_styled_level
    • env_logger::fmt::Style
    • env_logger::fmt::Color
    • env_logger::fmt::StyledValue
  • Removed env_logger::filter in favor of env_filter

Compatibility

MSRV changed to 1.71

Features

  • Automatically adapt ANSI escape codes in logged messages to the current terminal's capabilities
  • Add support for NO_COLOR and CLICOLOR_FORCE, see https://bixense.com/clicolors/

... (truncated)

Commits
  • 98ce803 chore: Release
  • 7a16130 docs: Update changelog
  • e55af6f Merge pull request #137 from tmccombs/structured
  • f6e2d45 feat(kv): Use now-stable kv feature of log crate
  • 9f4a33a feat(kv): Add styling for key in default format
  • 9d26ad5 feat: Add support for Key-Value data in log records
  • 8962096 Merge pull request #314 from rust-cli/renovate/pre-commit-action-3.x
  • 4127228 chore(deps): update pre-commit/action action to v3.0.1
  • b0e3ea9 chore: Release
  • 522ce17 Merge pull request #310 from epage/docs
  • Additional commits viewable in compare view

Updates yew to 0.21.0

Changelog

Sourced from yew's changelog.

✨ yew 0.21.0 (2023-09-23)

Changelog

🛠 Fixes

  • Fix rust-analyzer non_camel_case_types warning. [[@​Sean Bruton](https://github.com/Sean Bruton), #3388]
  • Fix incorrect text escaping during SSR. [[@​Tim Kurdov](https://github.com/Tim Kurdov), #3381]
  • Fix top-level reconciliation in portals. [@​WorldSEnder, #3020]
  • Fix clippy::let_unit_value lint in propless components. [@​WorldSEnder, #2970]

⚡️ Features

  • Updated the docs of set_event_bubbling. [[@​Tim Kurdov](https://github.com/Tim Kurdov), #3391]
  • feat: support arrays for Classes/classes!(). [@​Pouriya, #3393]
  • Mark VNode as #[must_use]. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3387]
  • Add IntoPropValue implementation to convert from Cows to AttrValue. [[@​Tim Kurdov](https://github.com/Tim Kurdov), #3346]
  • Remove compatibility code before 1.64. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3379]
  • Keep checked attribute for elements without special handling. [[@​Muhammad Hamza](https://github.com/Muhammad Hamza), #3373]
  • feat: implement hydration for vraw. [[@​Dillen Meijboom](https://github.com/Dillen Meijboom), #3245]
  • Add webkitdirectory to the boolean attributes list. [[@​Julius Lungys](https://github.com/Julius Lungys), #3214]
  • Incremental performance improvements to element creation. [[@​Greg Johnston](https://github.com/Greg Johnston), #3169]
  • Make VList's children Rc'ed. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3050]
  • Update dependencies. [[@​Muhammad Hamza](https://github.com/Muhammad Hamza), #3171]
  • Pass string types to Html props. [[@​Cecile Tonglet](https://github.com/Cecile Tonglet), #2872]
  • Implement an internal DomSlot for positioning instead of NodeRef. [@​WorldSEnder, #3048]
  • Prefer pop_first if it is available. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3084]
  • Add method map() on Children to wrap easily. [[@​Cecile Tonglet](https://github.com/Cecile Tonglet), #3039]
  • Reentrant event listeners. [@​WorldSEnder, #3037]
  • Add impl IntoIterator on &Classes. [[@​Cecile Tonglet](https://github.com/Cecile Tonglet), #3038]
  • Assert there are no circular references. [@​WorldSEnder, #3025]

🚨 Breaking changes

  • Remove special handling of struct fields of type Option in derive(Properties). [[@​Tim Kurdov](https://github.com/Tim Kurdov), #3398]
  • Agent v2. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #2773]
  • Update signature of use_prepared_state/use_transitive_state. [[@​Muhammad Hamza](https://github.com/Muhammad Hamza), #3376]
  • Make signature of use_future_with consistent. [[@​Muhammad Hamza](https://github.com/Muhammad Hamza), #3372]
  • Allow any type to be used as Children (take 2). [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3289]
  • Enable PartialEq for all virtual dom types. [[@​Kaede Hoshikawa](https://github.com/Kaede Hoshikawa), #3206]
  • Pass hook dependencies as the first function argument. [[@​Arniu Tseng](https://github.com/Arniu Tseng), #2861]
  • Make Classes cheap to clone. [[@​Cecile Tonglet](https://github.com/Cecile Tonglet), #3021]

✨ yew-router 0.18.0 (2023-09-xx)

Changelog

⚡️ Features

  • Update dependencies. [[@​Muhammad Hamza](https://github.com/Muhammad Hamza), #3171]
  • Only handle "normal" clicks on s. [[@​Kai Salmon](https://github.com/Kai Salmon), #3056]

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jul 5, 2024
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-minor-9a6f0a6d8b branch from 8587b4c to b431bb2 Compare July 5, 2024 11:27
@Dinnerbone
Copy link
Contributor

@dependabot reopen

@Dinnerbone
Copy link
Contributor

@dependabot recreate

Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) and [yew](https://github.com/yewstack/yew) to permit the latest version.

Updates `env_logger` to 0.11.3
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.11.3)

Updates `yew` to 0.21.0
- [Release notes](https://github.com/yewstack/yew/releases)
- [Changelog](https://github.com/yewstack/yew/blob/master/CHANGELOG.md)
- [Commits](yewstack/yew@yew-v0.19.3...yew-v0.21.0)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
  dependency-group: cargo-minor
- dependency-name: yew
  dependency-type: direct:production
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-minor-9a6f0a6d8b branch from b431bb2 to 733fdc8 Compare July 5, 2024 11:32
@Dinnerbone
Copy link
Contributor

@dependabot ignore yew minor version

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 5, 2024

OK, I won't notify you about version 0.21.x of yew again, unless you unignore it.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 5, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jul 5, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-minor-9a6f0a6d8b branch July 5, 2024 11:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant