Skip to content

Bump the minor group across 1 directory with 12 updates #865

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 28, 2025

Bumps the minor group with 12 updates in the / directory:

Package From To
proc-macro2 1.0.94 1.0.95
syn 2.0.100 2.0.101
anyhow 1.0.97 1.0.98
clap 4.5.35 4.5.37
cxx 1.0.153 1.0.158
data-encoding 2.8.0 2.9.0
parse-display 0.9.1 0.10.0
parse-display-derive 0.9.1 0.10.0
serde_json 1.0.139 1.0.140
tabled 0.18.0 0.19.0
tokio-tungstenite 0.24.0 0.26.2
image 0.25.1 0.25.6

Updates proc-macro2 from 1.0.94 to 1.0.95

Release notes

Sourced from proc-macro2's releases.

1.0.95

  • Update semver-exempt API under RUSTFLAGS=--cfg=procmacro2_semver_exempt to that of nightly-2025-04-16 (#497)
Commits
  • 24bbf16 Release 1.0.95
  • 835c5bd Merge pull request #497 from dtolnay/nosourcefile
  • 7bc363c Update semver-exempt API to nightly-2025-04-16
  • b867aa7 Merge pull request #496 from PaulGrandperrin/master
  • c605e8e Revert "Merge pull request #495 from dtolnay/fuzzlld"
  • 1993cd3 Merge pull request #495 from dtolnay/fuzzlld
  • cfdb567 Link to honggfuzz-rs issue
  • b09a5b0 Work around cargo-hfuzz nostart-stop-gc gold link failure
  • See full diff in compare view

Updates syn from 2.0.100 to 2.0.101

Release notes

Sourced from syn's releases.

2.0.101

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#1861)
Commits
  • 58336a3 Release 2.0.101
  • f1612cc Merge pull request #1861 from JakobDegen/turbofish
  • d04eea1 Fix lifetime on as_turbofish
  • 432b303 Resolve renamed_and_removed_lints warning about match_on_vec_items
  • 1353d60 Update test suite to nightly-2025-04-08
  • 3980ff2 Improve wording of comment in advance_to implementation
  • 8328b52 Update test suite to nightly-2025-04-05
  • 1d2e2be Update test suite to nightly-2025-04-03
  • 2400946 Update test suite to nightly-2025-04-02
  • 114a629 Update test suite to nightly-2025-03-27
  • Additional commits viewable in compare view

Updates anyhow from 1.0.97 to 1.0.98

Release notes

Sourced from anyhow's releases.

1.0.98

Commits
  • 709fe86 Release 1.0.98
  • cbc1ad2 Merge pull request #415 from dtolnay/intodyn
  • e1a2017 Add 2 different conversions to Box<dyn Error + Send + Sync + 'static>
  • 29f2edd Merge pull request #416 from dtolnay/oldnostd
  • 2244db8 Omit unused object_boxed from vtable in old no-std rustc
  • 213a9c2 Merge pull request #414 from dtolnay/nightly
  • 02aa6b6 Make all nightly go through the module that was probed
  • See full diff in compare view

Updates clap from 4.5.35 to 4.5.37

Release notes

Sourced from clap's releases.

v4.5.37

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

v4.5.36

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now
Changelog

Sourced from clap's changelog.

[4.5.37] - 2025-04-18

Features

  • Added ArgMatches::try_clear_id()

[4.5.36] - 2025-04-11

Fixes

  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now
Commits

Updates cxx from 1.0.153 to 1.0.158

Release notes

Sourced from cxx's releases.

1.0.158

  • Work around clippy reporting borrow_as_ptr lint inside generated code (#1510)

1.0.157

1.0.156

  • Fix return-type-c-linkage warning in signatures that return a shared struct containing primitives (#1498)

1.0.155

  • Zero-initialize primitive fields of shared structs in default constructor (#1495)

1.0.154

  • Generate indirect placement for shared structs containing improper ctype (#1494)
Commits
  • a1afe6c Release 1.0.158
  • 7ddae2e Lockfile update
  • 97ea6f3 Merge pull request #1513 from dtolnay/uploadartifact
  • 3883270 Upload Cargo.lock artifact from just the default nightly job
  • 9b2d2d9 Resolve semicolon_if_nothing_returned lints in generated code
  • a777cb3 Rearrange expr construction in c++ function shim
  • f4dc499 Consistently use ExternFn's Deref impl
  • 05ae6fa Resolve renamed_and_removed_lints warning about unknown_clippy_lints
  • 6916094 Merge pull request #1512 from dtolnay/attestfalse
  • c87ffa1 Turn off publish-to-bcr attestation
  • Additional commits viewable in compare view

Updates data-encoding from 2.8.0 to 2.9.0

Commits

Updates parse-display from 0.9.1 to 0.10.0

Changelog

Sourced from parse-display's changelog.

[0.10.0] - 2024-08-04

Changed

  • Set rust-version to 1.80.0.
  • In debug mode, it will panic if the result of FromStrFormat::regex varies for the same field depending on the type parameters.
  • Change the behavior when both #[display("...")] and #[from_str("...")] are specified for a field. (dc14a2b)

Fixed

  • Fix #[from_str] to not affect Display.
Commits
  • de8546b Version 0.10.0.
  • 384022a Simplify.
  • 130f2bc Fix document.
  • 126e356 Fix document for #[display(...)].
  • 0c4f68c Add documentation regarding the behavior when both #[display("...")] and `#...
  • dc14a2b Change behavior when both '#[display(...)]' and '#[from_str(regex = "...")]' ...
  • 5a13cb8 Add test.
  • 1b5f31a Rename variable.
  • 43b101f Improve error messages for compile errors caused by the expression specified ...
  • 18d4bdd Refactor: Use Vec instead of BTreeMap in ParserBuilder::with.
  • Additional commits viewable in compare view

Updates parse-display-derive from 0.9.1 to 0.10.0

Changelog

Sourced from parse-display-derive's changelog.

[0.10.0] - 2024-08-04

Changed

  • Set rust-version to 1.80.0.
  • In debug mode, it will panic if the result of FromStrFormat::regex varies for the same field depending on the type parameters.
  • Change the behavior when both #[display("...")] and #[from_str("...")] are specified for a field. (dc14a2b)

Fixed

  • Fix #[from_str] to not affect Display.
Commits
  • de8546b Version 0.10.0.
  • 384022a Simplify.
  • 130f2bc Fix document.
  • 126e356 Fix document for #[display(...)].
  • 0c4f68c Add documentation regarding the behavior when both #[display("...")] and `#...
  • dc14a2b Change behavior when both '#[display(...)]' and '#[from_str(regex = "...")]' ...
  • 5a13cb8 Add test.
  • 1b5f31a Rename variable.
  • 43b101f Improve error messages for compile errors caused by the expression specified ...
  • 18d4bdd Refactor: Use Vec instead of BTreeMap in ParserBuilder::with.
  • Additional commits viewable in compare view

Updates serde_json from 1.0.139 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements
Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • See full diff in compare view

Updates tabled from 0.18.0 to 0.19.0

Changelog

Sourced from tabled's changelog.

[0.19.0] - 2025-24-04

Added

  • Added tabled::assert module.
  • Added #[tabled(map)] macro.
  • Added derive::display::bool function.
  • Added derive::display::wrap and derive::display::truncate function.
  • Added Locator::value.
  • Added Table::get_dimension function.
  • Added ANSI link handling in Width::truncate.
  • Added Upper Title Case and lower title case options for rename_all.
  • Added no_std in testing_table.

Changed

  • Changed Reverse interface.
  • Changed Position interface.
  • Changed tabled::grid::dimension structures.
  • Changed IterTable interface.
  • Migrated ron to 0.10.
  • Renamed ColumnNames::default() into ColumnsNames::head().
  • Renamed BorderSpanCorrection into BorderCorrection::span().
  • Renamed Offset::Begin into Offset::Start.
  • Moved Offset out of tabled into papergrid.
  • Imroved wrap logic.
  • Switch underlying hash algorithm.
  • Improved README (by @​romanz).
  • Improved README (by @​Diddy42).

Fixed

  • Fixed no_std build (in actuall no_std env).
  • Fixed wrap emojie issue (releated to int overlap).
  • Fixed LineText<LastColumn>.
Commits

Updates tokio-tungstenite from 0.24.0 to 0.26.2

Changelog

Sourced from tokio-tungstenite's changelog.

0.26.2

0.26.1

  • Update tungstenite to address an issue that might cause UB in certain cases.

0.26.0

0.25.0

Commits

Updates image from 0.25.1 to 0.25.6

Changelog

Sourced from image's changelog.

Version 0.25.6

Features:

  • Improved format detection (#2418)
  • Implement writing ICC profiles for JPEG and PNG images (#2389)

Bug fixes:

  • JPEG encoding bugfix (#2387)
  • Expanded ICO format detection (#2434)
  • Fixed EXR bug with NaNs (#2381)
  • Various documentation improvements

Version 0.25.5

Features:

  • Added support for decoding 10-bit and 12-bit AVIF
  • Initial, opt-in serde support for an enum. This may be extended to other types in the future.

Bug fixes:

  • Multiple bug fixes in AVIF decoding
  • The rayon feature now correctly toggles the use of rayon when encoding AVIF. (Previously it would be either always on or always off depending on the version of the ravif crate in your dependency tree.)
  • "jfif" file extension for JPEG images is now recognized

Version 0.25.4

Features:

  • Much faster decoding of lossless WebP due to a variety of optimizations. Our benchmarks show 2x to 2.5x improvement.
  • Added support for orientation metadata, so that e.g. smartphone camera images could be displayed correctly:
    • Added ImageDecoder::orientation() and implemented orientation metadata extraction for JPEG, WebP and TIFF formats
    • Added DynamicImage::apply_orientation() to apply the orientation to an image
  • Added support for extracting Exif metadata from images via ImageDecoder::exif_metadata(), and implemented it for JPEG and WebP formats
  • Added ImageEncoder::set_icc_profile() and implemented it for WebP format. Pull requests with implementations for other formats are welcome.
  • Added DynamicImage::fast_blur() for a linear-time approximation of Gaussian blur, which is much faster at larger blur radii

Bug fixes:

  • Fixed some APNG images being decoded incorrectly
  • Fixed the iterator over animated WebP frames to return None instead of an error when the end of the animation is reached

Version 0.25.3

Yanked! This version accidentally missed a commit that should have been included with the release. The Orientation struct should be in the appropriate module instead of the top-level. This release won't be supported.

Version 0.25.2

Features:

  • Added the HDR encoder to supported formats in generic write methods with the hdr feature enabled. Supports 32-bit float RGB color only, for now.
  • When cloning ImageBuffer, DynamicImage and Frame the existing buffer

... (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

Bumps the minor group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` |
| [syn](https://github.com/dtolnay/syn) | `2.0.100` | `2.0.101` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.98` |
| [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.37` |
| [cxx](https://github.com/dtolnay/cxx) | `1.0.153` | `1.0.158` |
| [data-encoding](https://github.com/ia0/data-encoding) | `2.8.0` | `2.9.0` |
| [parse-display](https://github.com/frozenlib/parse-display) | `0.9.1` | `0.10.0` |
| [parse-display-derive](https://github.com/frozenlib/parse-display) | `0.9.1` | `0.10.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.140` |
| [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.19.0` |
| [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.24.0` | `0.26.2` |
| [image](https://github.com/image-rs/image) | `0.25.1` | `0.25.6` |



Updates `proc-macro2` from 1.0.94 to 1.0.95
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.94...1.0.95)

Updates `syn` from 2.0.100 to 2.0.101
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.100...2.0.101)

Updates `anyhow` from 1.0.97 to 1.0.98
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.97...1.0.98)

Updates `clap` from 4.5.35 to 4.5.37
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.35...clap_complete-v4.5.37)

Updates `cxx` from 1.0.153 to 1.0.158
- [Release notes](https://github.com/dtolnay/cxx/releases)
- [Commits](dtolnay/cxx@1.0.153...1.0.158)

Updates `data-encoding` from 2.8.0 to 2.9.0
- [Commits](ia0/data-encoding@v2.8.0...v2.9.0)

Updates `parse-display` from 0.9.1 to 0.10.0
- [Changelog](https://github.com/frozenlib/parse-display/blob/master/CHANGELOG.md)
- [Commits](frozenlib/parse-display@v0.9.1...v0.10.0)

Updates `parse-display-derive` from 0.9.1 to 0.10.0
- [Changelog](https://github.com/frozenlib/parse-display/blob/master/CHANGELOG.md)
- [Commits](frozenlib/parse-display@v0.9.1...v0.10.0)

Updates `serde_json` from 1.0.139 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.139...v1.0.140)

Updates `tabled` from 0.18.0 to 0.19.0
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zhiburt/tabled/commits)

Updates `tokio-tungstenite` from 0.24.0 to 0.26.2
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.24.0...v0.26.2)

Updates `image` from 0.25.1 to 0.25.6
- [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md)
- [Commits](image-rs/image@v0.25.1...v0.25.6)

---
updated-dependencies:
- dependency-name: proc-macro2
  dependency-version: 1.0.95
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: syn
  dependency-version: 2.0.101
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: anyhow
  dependency-version: 1.0.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: clap
  dependency-version: 4.5.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: cxx
  dependency-version: 1.0.158
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: data-encoding
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: parse-display
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: parse-display-derive
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: serde_json
  dependency-version: 1.0.140
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tabled
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio-tungstenite
  dependency-version: 0.26.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: image
  dependency-version: 0.25.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from adamchalmers and jessfraz April 28, 2025 11:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file minor rust Pull requests that update Rust code labels Apr 28, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

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

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/cargo/minor-477ed8fde5 branch May 1, 2025 15:26
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 minor rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants