Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 5, 2025

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

Package From To
proc-macro2 1.0.95 1.0.101
syn 1.0.107 2.0.104
thiserror 2.0.12 2.0.16
uuid 1.18.0 1.18.1
regex 1.11.1 1.11.2
tokio-util 0.7.15 0.7.16
tokio-metrics 0.4.2 0.4.4
regex-syntax 0.8.5 0.8.6
prettyplease 0.2.35 0.2.36
percent-encoding 2.3.1 2.3.2
regex-automata 0.4.9 0.4.10
zstd-safe 7.2.1 7.2.4

Updates proc-macro2 from 1.0.95 to 1.0.101

Release notes

Sourced from proc-macro2's releases.

1.0.101

  • Optimize Span location accessors (#519)

1.0.100

  • Stabilize Span methods on Rust 1.88+: start, end, line, column, file, local_file (#517, #518)

1.0.99

  • Prevent Span's unstable API becoming unavailable from a future new compiler lint (#515)

1.0.98

1.0.97

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#505, #512, thanks @​davvid)

1.0.96

  • Simplify how rustdoc flags are decided during docs.rs builds (#511)
Commits
  • d3188ea Release 1.0.101
  • cbd1286 Merge pull request #519 from dtolnay/binarysearch
  • fab4cb6 Convert SourceMap scan to binary search
  • f4708a8 Factor out SourceMap linear search to method
  • fdc853a Release 1.0.100
  • 848ed0b Merge pull request #518 from dtolnay/spanfile
  • 76ce1a3 Stabilize Span::file and Span::local_file
  • b5dd3c6 Merge pull request #517 from dtolnay/startend
  • 1d0ffc0 Use Span's start, end, line, column methods on stable 1.88+
  • 4f5845e Merge pull request #516 from dtolnay/probe
  • Additional commits viewable in compare view

Updates syn from 1.0.107 to 2.0.104

Release notes

Sourced from syn's releases.

2.0.104

  • Disallow attributes on range expression (#1872)

2.0.103

  • Insert parentheses around binary operation with attribute (#1871)

2.0.102

  • Fix printing of nested Expr::Index and Expr::Tuple in non-full mode (#1869)

2.0.101

  • Improve TypeGenerics::as_turbofish to return longer-lived return value (#1861)

2.0.100

  • Add Visit::visit_token_stream, VisitMut::visit_token_stream_mut, Fold::fold_token_stream for processing TokenStream during syntax tree traversals (#1852)

2.0.99

  • Documentation improvements

2.0.98

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#1847)

2.0.97

  • Documentation improvements

2.0.96

2.0.95

  • Fix parenthesization of struct literals in let-chains (#1832)

2.0.94

2.0.93

  • Fix expression parsing edge cases: x as T <<= y (#1804), break as T (#1805), match x { _ if .. => {} } (#1807)
  • Fix expression printing edge cases: || -> T 'a: {} (#1806), if break x {} (#1808, #1810)

2.0.92

  • Fix parenthesization of jumps inside ranges (#1798)

2.0.91

  • Support parsing Vec<Arm> using parse_quote! (#1796, #1797)

2.0.90

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#1786)

2.0.89

... (truncated)

Commits
  • 2283a98 Release 2.0.104
  • d745687 Merge pull request #1872 from dtolnay/attrrange
  • 350a4ab Disallow attributes on range expression
  • da96f95 Add test of attributes on range
  • 7a79818 Update test suite to nightly-2025-06-19
  • 85d4276 Release 2.0.103
  • 6f7b0f3 Merge pull request #1871 from dtolnay/binaryattr
  • 89f88fa Correctly track bailouts in parenthesized binary expressions
  • 0e07372 Add binary operator attribute bailout test
  • ca8d876 Insert parentheses around binary operation with attribute
  • Additional commits viewable in compare view

Updates thiserror from 2.0.12 to 2.0.16

Release notes

Sourced from thiserror's releases.

2.0.16

  • Add to "no-std" crates.io category (#429)

2.0.15

  • Prevent Error::provide API becoming unavailable from a future new compiler lint (#427)

2.0.14

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#426)

2.0.13

  • Documentation improvements
Commits
  • 40b5853 Release 2.0.16
  • 83dfb5f Merge pull request #429 from dtolnay/nostd
  • 9b4a99f Add to "no-std" crates.io category
  • f6145eb Release 2.0.15
  • 2717177 Merge pull request #427 from dtolnay/caplints
  • 2cd13e6 Make error_generic_member_access compatible with -Dwarnings
  • eea6799 Release 2.0.14
  • a2aa6d7 Merge pull request #426 from dtolnay/enotempty
  • f00ebc5 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
  • 61f28da Release 2.0.13
  • Additional commits viewable in compare view

Updates uuid from 1.18.0 to 1.18.1

Release notes

Sourced from uuid's releases.

v1.18.1

What's Changed

Full Changelog: uuid-rs/uuid@v1.18.0...v1.18.1

Commits
  • 50d8e79 Merge pull request #842 from uuid-rs/cargo/v1.18.1
  • 7948592 prepare for 1.18.1 release
  • 6d847c7 Merge pull request #841 from uuid-rs/chore/unsafe-cleanup
  • 675cccc re-gate zerocopy behind unstable feature flag
  • 4dd5828 Remove some unsafe; stabilize zerocopy
  • See full diff in compare view

Updates regex from 1.11.1 to 1.11.2

Changelog

Sourced from regex's changelog.

1.11.2 (2025-08-24)

This is a new patch release of regex with some minor fixes. A larger number of typo or lint fix patches were merged. Also, we now finally recommend using std::sync::LazyLock.

Improvements:

Bug fixes:

Commits

Updates tokio-util from 0.7.15 to 0.7.16

Commits

Updates tokio-metrics from 0.4.2 to 0.4.4

Release notes

Sourced from tokio-metrics's releases.

tokio-metrics v0.4.3

0.4.3 (July 3rd, 2025)

Added

  • rt: partially stabilize RuntimeMonitor and related metrics (#87)

#87: tokio-rs/tokio-metrics#87

Changelog

Sourced from tokio-metrics's changelog.

0.4.4 (August 5th, 2025)

Added

  • fix: Add TaskIntervals struct (#91)
  • chore: update dev-dependencies (#92)

#91: tokio-rs/tokio-metrics#91 #92: tokio-rs/tokio-metrics#92

0.4.3 (July 3rd, 2025)

Added

  • rt: partially stabilize RuntimeMonitor and related metrics (#87)

#87: tokio-rs/tokio-metrics#87

Commits

Updates regex-syntax from 0.8.5 to 0.8.6

Commits
  • ea834f8 regex-syntax-0.8.6
  • 86836fb changelog: 1.11.2
  • 63a26c1 cargo: ensure that 'perf' doesn't enable 'std' implicitly (#1150)
  • dd96592 doc: clarify CRLF mode effect
  • 931dae0 cargo: point repository metadata to clonable URLs
  • a66fde6 doc: remove references to non-existent parameters
  • 1873e96 automata: add DFA::set_prefilter method to the DFA types
  • 89ff153 doc: fix misspelling typo
  • cb823b0 doc: fix another repeated word
  • 9f0a372 doc: fix Its -> It's
  • Additional commits viewable in compare view

Updates prettyplease from 0.2.35 to 0.2.36

Release notes

Sourced from prettyplease's releases.

0.2.36

Commits

Updates percent-encoding from 2.3.1 to 2.3.2

Commits

Updates regex-automata from 0.4.9 to 0.4.10

Commits
  • 873ed80 regex-automata-0.4.10
  • ea834f8 regex-syntax-0.8.6
  • 86836fb changelog: 1.11.2
  • 63a26c1 cargo: ensure that 'perf' doesn't enable 'std' implicitly (#1150)
  • dd96592 doc: clarify CRLF mode effect
  • 931dae0 cargo: point repository metadata to clonable URLs
  • a66fde6 doc: remove references to non-existent parameters
  • 1873e96 automata: add DFA::set_prefilter method to the DFA types
  • 89ff153 doc: fix misspelling typo
  • cb823b0 doc: fix another repeated word
  • Additional commits viewable in compare view

Updates zstd-safe from 7.2.1 to 7.2.4

Commits

Updates zstd-sys from 2.0.13+zstd.1.5.6 to 2.0.16+zstd.1.5.7

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
syn [>= 2.a, < 3]

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 the A-dependencies Area: dependency upgrades label Sep 5, 2025
@dependabot dependabot bot requested review from a team, aljoscha, ggevay, SangJunBak and DAlperin as code owners September 5, 2025 03:05
@dependabot dependabot bot force-pushed the dependabot/cargo/simple2-bd12634b9e branch 5 times, most recently from fce64f2 to 92bb91d Compare September 12, 2025 03:03
Bumps the simple2 group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.95` | `1.0.101` |
| [syn](https://github.com/dtolnay/syn) | `1.0.107` | `2.0.104` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `2.0.16` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.18.0` | `1.18.1` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.15` | `0.7.16` |
| [tokio-metrics](https://github.com/tokio-rs/tokio-metrics) | `0.4.2` | `0.4.4` |
| [regex-syntax](https://github.com/rust-lang/regex) | `0.8.5` | `0.8.6` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.35` | `0.2.36` |
| [percent-encoding](https://github.com/servo/rust-url) | `2.3.1` | `2.3.2` |
| [regex-automata](https://github.com/rust-lang/regex) | `0.4.9` | `0.4.10` |
| [zstd-safe](https://github.com/gyscos/zstd-rs) | `7.2.1` | `7.2.4` |



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

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

Updates `thiserror` from 2.0.12 to 2.0.16
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.12...2.0.16)

Updates `uuid` from 1.18.0 to 1.18.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.18.0...v1.18.1)

Updates `regex` from 1.11.1 to 1.11.2
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.1...1.11.2)

Updates `tokio-util` from 0.7.15 to 0.7.16
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-util-0.7.15...tokio-util-0.7.16)

Updates `tokio-metrics` from 0.4.2 to 0.4.4
- [Release notes](https://github.com/tokio-rs/tokio-metrics/releases)
- [Changelog](https://github.com/tokio-rs/tokio-metrics/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/tokio-metrics/commits)

Updates `regex-syntax` from 0.8.5 to 0.8.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@regex-syntax-0.8.5...regex-syntax-0.8.6)

Updates `prettyplease` from 0.2.35 to 0.2.36
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.35...0.2.36)

Updates `percent-encoding` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](https://github.com/servo/rust-url/commits)

Updates `regex-automata` from 0.4.9 to 0.4.10
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@regex-automata-0.4.9...regex-automata-0.4.10)

Updates `zstd-safe` from 7.2.1 to 7.2.4
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/commits/zstd-safe-7.2.4)

Updates `zstd-sys` from 2.0.13+zstd.1.5.6 to 2.0.16+zstd.1.5.7
- [Release notes](https://github.com/gyscos/zstd-rs/releases)
- [Commits](https://github.com/gyscos/zstd-rs/commits)

---
updated-dependencies:
- dependency-name: proc-macro2
  dependency-version: 1.0.101
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: syn
  dependency-version: 2.0.104
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: simple2
- dependency-name: thiserror
  dependency-version: 2.0.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: uuid
  dependency-version: 1.18.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: regex
  dependency-version: 1.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: tokio-util
  dependency-version: 0.7.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: tokio-metrics
  dependency-version: 0.4.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: regex-syntax
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: prettyplease
  dependency-version: 0.2.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: percent-encoding
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: regex-automata
  dependency-version: 0.4.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: zstd-safe
  dependency-version: 7.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
- dependency-name: zstd-sys
  dependency-version: 2.0.16+zstd.1.5.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: simple2
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/simple2-bd12634b9e branch from 92bb91d to 2ee3f97 Compare September 12, 2025 03:31
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 14, 2025

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

@dependabot dependabot bot closed this Sep 14, 2025
@dependabot dependabot bot deleted the dependabot/cargo/simple2-bd12634b9e branch September 14, 2025 22:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: dependency upgrades
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants