-
-
Notifications
You must be signed in to change notification settings - Fork 739
chore(deps): update rust crates #16575
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
Conversation
|
CodSpeed Performance ReportMerging #16575 will degrade performances by 4.41%Comparing Summary
Benchmarks breakdown
Footnotes
|
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
|
@Boshen I fixed the lsp issues, but I'm assigning to you as |
Merge activity
|
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [hashbrown](https://redirect.github.com/rust-lang/hashbrown) | workspace.dependencies | patch | `0.16.0` -> `0.16.1` | | [indexmap](https://redirect.github.com/indexmap-rs/indexmap) | workspace.dependencies | patch | `2.12.0` -> `2.12.1` | | [insta](https://insta.rs/) ([source](https://redirect.github.com/mitsuhiko/insta)) | workspace.dependencies | minor | `1.43.2` -> `1.44.3` | | [log](https://redirect.github.com/rust-lang/log) | workspace.dependencies | patch | `0.4.28` -> `0.4.29` | | [syn](https://redirect.github.com/dtolnay/syn) | workspace.dependencies | patch | `2.0.110` -> `2.0.111` | | [tower-lsp-server](https://redirect.github.com/tower-lsp-community/tower-lsp-server) | workspace.dependencies | minor | `0.22.1` -> `0.23.0` | | [tracing-subscriber](https://tokio.rs) ([source](https://redirect.github.com/tokio-rs/tracing)) | workspace.dependencies | patch | `0.3.20` -> `0.3.22` | --- ### Release Notes <details> <summary>rust-lang/hashbrown (hashbrown)</summary> ### [`v0.16.1`](https://redirect.github.com/rust-lang/hashbrown/blob/HEAD/CHANGELOG.md#0161---2025-11-20) [Compare Source](https://redirect.github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) ##### Added - Added `HashTable` methods related to the raw bucket index ([#​657](https://redirect.github.com/rust-lang/hashbrown/issues/657)) - Added `VacantEntryRef::insert_with_key` ([#​579](https://redirect.github.com/rust-lang/hashbrown/issues/579)) ##### Changed - Removed specialization for `Copy` types ([#​662](https://redirect.github.com/rust-lang/hashbrown/issues/662)) - The `get_many_mut` family of methods have been renamed to `get_disjoint_mut` to match the standard library. The old names are still present for now, but deprecated. ([#​648](https://redirect.github.com/rust-lang/hashbrown/issues/648)) - Recognize and use over-sized allocations when using custom allocators. ([#​523](https://redirect.github.com/rust-lang/hashbrown/issues/523)) - Depend on `serde_core` instead of `serde`. ([#​649](https://redirect.github.com/rust-lang/hashbrown/issues/649)) - Optimized `collect` on rayon parallel iterators. ([#​652](https://redirect.github.com/rust-lang/hashbrown/issues/652)) </details> <details> <summary>indexmap-rs/indexmap (indexmap)</summary> ### [`v2.12.1`](https://redirect.github.com/indexmap-rs/indexmap/blob/HEAD/RELEASES.md#2121-2025-11-20) [Compare Source](https://redirect.github.com/indexmap-rs/indexmap/compare/2.12.0...2.12.1) - Simplified a lot of internals using `hashbrown`'s new bucket API. </details> <details> <summary>mitsuhiko/insta (insta)</summary> ### [`v1.44.3`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1443) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.2...1.44.3) - Fix a regression in 1.44.2 where merge conflict detection was too aggressive, incorrectly flagging snapshot content containing `======` or similar patterns as conflicts. [#​832](https://redirect.github.com/mitsuhiko/insta/issues/832) - Fix a regression in 1.42.2 where inline snapshot updates would corrupt the file when code preceded the macro (e.g., `let output = assert_snapshot!(...)`). [#​833](https://redirect.github.com/mitsuhiko/insta/issues/833) ### [`v1.44.2`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1442) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.1...1.44.2) - Fix a rare backward compatibility issue where inline snapshots using an uncommon legacy format (single-line content stored in multiline raw strings) could fail to match after 1.44.0. [#​830](https://redirect.github.com/mitsuhiko/insta/issues/830) - Handle merge conflicts in snapshot files gracefully. When a snapshot file contains git merge conflict markers, insta now detects them and treats the snapshot as missing, allowing tests to continue and create a new pending snapshot for review. [#​829](https://redirect.github.com/mitsuhiko/insta/issues/829) - Skip nextest\_doctest tests when cargo-nextest is not installed. [#​826](https://redirect.github.com/mitsuhiko/insta/issues/826) - Fix functional tests failing under nextest due to inherited `NEXTEST_RUN_ID` environment variable. [#​824](https://redirect.github.com/mitsuhiko/insta/issues/824) ### [`v1.44.1`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1441) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.0...1.44.1) - Add `--dnd` alias for `--disable-nextest-doctest` flag to make it easier to silence the deprecation warning. [#​822](https://redirect.github.com/mitsuhiko/insta/issues/822) - Update cargo-dist to 0.30.2 and fix Windows runner to use windows-2022. [#​821](https://redirect.github.com/mitsuhiko/insta/issues/821) ### [`v1.44.0`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1440) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.43.2...1.44.0) - Added non-interactive snapshot review and reject modes for use in non-TTY environments (LLMs, CI pipelines, scripts). `cargo insta review --snapshot <path>` and `cargo insta reject --snapshot <path>` now work without a terminal. Enhanced `pending-snapshots` output with usage instructions and workspace-relative paths. [#​815](https://redirect.github.com/mitsuhiko/insta/issues/815) - Add `--disable-nextest-doctest` flag to `cargo insta test` to disable running doctests with nextest. Shows a deprecation warning when nextest is used with doctests without this flag, to prepare `cargo insta` to no longer run a separate doctest process when using nextest in the future. [#​803](https://redirect.github.com/mitsuhiko/insta/issues/803) - Add ergonomic `--test-runner-fallback` / `--no-test-runner-fallback` flags to `cargo insta test`. [#​811](https://redirect.github.com/mitsuhiko/insta/issues/811) - Apply redactions to snapshot metadata. [#​813](https://redirect.github.com/mitsuhiko/insta/issues/813) - Remove confusing 'previously unseen snapshot' message. [#​812](https://redirect.github.com/mitsuhiko/insta/issues/812) - Speed up JSON float rendering. [#​806](https://redirect.github.com/mitsuhiko/insta/issues/806) ([@​nyurik](https://redirect.github.com/nyurik)) - Allow globset version up to 0.4.16. [#​810](https://redirect.github.com/mitsuhiko/insta/issues/810) ([@​g0hl1n](https://redirect.github.com/g0hl1n)) - Improve documentation. [#​814](https://redirect.github.com/mitsuhiko/insta/issues/814) ([@​tshepang](https://redirect.github.com/tshepang)) - We no longer trim starting newlines during assertions, which allows asserting the number of leading newlines match. Existing assertions with different leading newlines will pass and print a warning suggesting running with `--force-update-snapshots`. They may fail in the future. (Note that we still currently allow differing *trailing* newlines, though may adjust this in the future). [#​563](https://redirect.github.com/mitsuhiko/insta/issues/563) </details> <details> <summary>rust-lang/log (log)</summary> ### [`v0.4.29`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0429---2025-12-02) [Compare Source](https://redirect.github.com/rust-lang/log/compare/0.4.28...0.4.29) </details> <details> <summary>dtolnay/syn (syn)</summary> ### [`v2.0.111`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.111) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.110...2.0.111) - Allow first argument of `braced!`, `bracketed!`, `parenthesized!` to be an otherwise unused variable ([#​1946](https://redirect.github.com/dtolnay/syn/issues/1946)) </details> <details> <summary>tower-lsp-community/tower-lsp-server (tower-lsp-server)</summary> ### [`v0.23.0`](https://redirect.github.com/tower-lsp-community/tower-lsp-server/blob/HEAD/CHANGELOG.md#0230---2025-12-07) [Compare Source](https://redirect.github.com/tower-lsp-community/tower-lsp-server/compare/v0.22.1...v0.23.0) ##### Added - add Amber LSP to README Projects section ([#​66](https://redirect.github.com/tower-lsp-community/tower-lsp-server/issues/66)) - support `window/workDoneProgress/create` requests ##### Changed - Change the LSP specification types library from `gluon-lang/lsp-types` (which was unmaintained) to `tower-lsp-community/ls-types` (our fork). The initial release manually fixes typos that are blocking for some projects. In the long term, ls-types will take the approach of codegen based on the types model provided by the LSP specification. This should remove any kind of typos or documentation desync. See [tower-lsp-community/ls-types#22 (comment)](https://redirect.github.com/tower-lsp-community/ls-types/issues/22#issuecomment-3483189800). ##### Fixed - use `WorkspaceSymbolResponse` in `symbol()` return value </details> <details> <summary>tokio-rs/tracing (tracing-subscriber)</summary> ### [`v0.3.22`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.22): tracing-subscriber 0.3.22 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.21...tracing-subscriber-0.3.22) ##### Important The previous release [0.3.21] was yanked as it depended explicitly on [tracing-0.1.42], which was yanked due to a breaking change (see [#​3424] for details). This release contains all the changes from the previous release, plus an update to the newer version of `tracing`. ##### Changed - `tracing`: updated to 0.1.43 ([#​3427]) [#​3424]: https://redirect.github.com/tokio-rs/tracing/pull/3424 [#​3427]: https://redirect.github.com/tokio-rs/tracing/pull/3427 [0.3.21]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21 [tracing-0.1.42]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42 ### [`v0.3.21`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21): tracing-subscriber 0.3.21 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.20...tracing-subscriber-0.3.21) ##### Fixed - Change registry exit to decrement local span ref only ([#​3331]) - Make Layered propagate `on_register_dispatch` ([#​3379]) ##### Changed - `tracing`: updated to 0.1.42 ([#​3418]) ##### Performance - Remove `clone_span` on enter ([#​3289]) ##### Documented - Fix a few small things in the format module ([#​3339]) - Fix extra closing brace in layer docs ([#​3350]) - Fix link in `FmtSpan` docs ([#​3411]) [#​3289]: https://redirect.github.com/tokio-rs/tracing/pull/#​3289 [#​3331]: https://redirect.github.com/tokio-rs/tracing/pull/#​3331 [#​3339]: https://redirect.github.com/tokio-rs/tracing/pull/#​3339 [#​3350]: https://redirect.github.com/tokio-rs/tracing/pull/#​3350 [#​3379]: https://redirect.github.com/tokio-rs/tracing/pull/#​3379 [#​3411]: https://redirect.github.com/tokio-rs/tracing/pull/#​3411 [#​3418]: https://redirect.github.com/tokio-rs/tracing/pull/#​3418 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
7d84fd4 to
14d803a
Compare
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [hashbrown](https://redirect.github.com/rust-lang/hashbrown) | workspace.dependencies | patch | `0.16.0` -> `0.16.1` | | [indexmap](https://redirect.github.com/indexmap-rs/indexmap) | workspace.dependencies | patch | `2.12.0` -> `2.12.1` | | [insta](https://insta.rs/) ([source](https://redirect.github.com/mitsuhiko/insta)) | workspace.dependencies | minor | `1.43.2` -> `1.44.3` | | [log](https://redirect.github.com/rust-lang/log) | workspace.dependencies | patch | `0.4.28` -> `0.4.29` | | [syn](https://redirect.github.com/dtolnay/syn) | workspace.dependencies | patch | `2.0.110` -> `2.0.111` | | [tower-lsp-server](https://redirect.github.com/tower-lsp-community/tower-lsp-server) | workspace.dependencies | minor | `0.22.1` -> `0.23.0` | | [tracing-subscriber](https://tokio.rs) ([source](https://redirect.github.com/tokio-rs/tracing)) | workspace.dependencies | patch | `0.3.20` -> `0.3.22` | --- ### Release Notes <details> <summary>rust-lang/hashbrown (hashbrown)</summary> ### [`v0.16.1`](https://redirect.github.com/rust-lang/hashbrown/blob/HEAD/CHANGELOG.md#0161---2025-11-20) [Compare Source](https://redirect.github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) ##### Added - Added `HashTable` methods related to the raw bucket index ([#​657](https://redirect.github.com/rust-lang/hashbrown/issues/657)) - Added `VacantEntryRef::insert_with_key` ([#​579](https://redirect.github.com/rust-lang/hashbrown/issues/579)) ##### Changed - Removed specialization for `Copy` types ([#​662](https://redirect.github.com/rust-lang/hashbrown/issues/662)) - The `get_many_mut` family of methods have been renamed to `get_disjoint_mut` to match the standard library. The old names are still present for now, but deprecated. ([#​648](https://redirect.github.com/rust-lang/hashbrown/issues/648)) - Recognize and use over-sized allocations when using custom allocators. ([#​523](https://redirect.github.com/rust-lang/hashbrown/issues/523)) - Depend on `serde_core` instead of `serde`. ([#​649](https://redirect.github.com/rust-lang/hashbrown/issues/649)) - Optimized `collect` on rayon parallel iterators. ([#​652](https://redirect.github.com/rust-lang/hashbrown/issues/652)) </details> <details> <summary>indexmap-rs/indexmap (indexmap)</summary> ### [`v2.12.1`](https://redirect.github.com/indexmap-rs/indexmap/blob/HEAD/RELEASES.md#2121-2025-11-20) [Compare Source](https://redirect.github.com/indexmap-rs/indexmap/compare/2.12.0...2.12.1) - Simplified a lot of internals using `hashbrown`'s new bucket API. </details> <details> <summary>mitsuhiko/insta (insta)</summary> ### [`v1.44.3`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1443) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.2...1.44.3) - Fix a regression in 1.44.2 where merge conflict detection was too aggressive, incorrectly flagging snapshot content containing `======` or similar patterns as conflicts. [#​832](https://redirect.github.com/mitsuhiko/insta/issues/832) - Fix a regression in 1.42.2 where inline snapshot updates would corrupt the file when code preceded the macro (e.g., `let output = assert_snapshot!(...)`). [#​833](https://redirect.github.com/mitsuhiko/insta/issues/833) ### [`v1.44.2`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1442) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.1...1.44.2) - Fix a rare backward compatibility issue where inline snapshots using an uncommon legacy format (single-line content stored in multiline raw strings) could fail to match after 1.44.0. [#​830](https://redirect.github.com/mitsuhiko/insta/issues/830) - Handle merge conflicts in snapshot files gracefully. When a snapshot file contains git merge conflict markers, insta now detects them and treats the snapshot as missing, allowing tests to continue and create a new pending snapshot for review. [#​829](https://redirect.github.com/mitsuhiko/insta/issues/829) - Skip nextest\_doctest tests when cargo-nextest is not installed. [#​826](https://redirect.github.com/mitsuhiko/insta/issues/826) - Fix functional tests failing under nextest due to inherited `NEXTEST_RUN_ID` environment variable. [#​824](https://redirect.github.com/mitsuhiko/insta/issues/824) ### [`v1.44.1`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1441) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.0...1.44.1) - Add `--dnd` alias for `--disable-nextest-doctest` flag to make it easier to silence the deprecation warning. [#​822](https://redirect.github.com/mitsuhiko/insta/issues/822) - Update cargo-dist to 0.30.2 and fix Windows runner to use windows-2022. [#​821](https://redirect.github.com/mitsuhiko/insta/issues/821) ### [`v1.44.0`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1440) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.43.2...1.44.0) - Added non-interactive snapshot review and reject modes for use in non-TTY environments (LLMs, CI pipelines, scripts). `cargo insta review --snapshot <path>` and `cargo insta reject --snapshot <path>` now work without a terminal. Enhanced `pending-snapshots` output with usage instructions and workspace-relative paths. [#​815](https://redirect.github.com/mitsuhiko/insta/issues/815) - Add `--disable-nextest-doctest` flag to `cargo insta test` to disable running doctests with nextest. Shows a deprecation warning when nextest is used with doctests without this flag, to prepare `cargo insta` to no longer run a separate doctest process when using nextest in the future. [#​803](https://redirect.github.com/mitsuhiko/insta/issues/803) - Add ergonomic `--test-runner-fallback` / `--no-test-runner-fallback` flags to `cargo insta test`. [#​811](https://redirect.github.com/mitsuhiko/insta/issues/811) - Apply redactions to snapshot metadata. [#​813](https://redirect.github.com/mitsuhiko/insta/issues/813) - Remove confusing 'previously unseen snapshot' message. [#​812](https://redirect.github.com/mitsuhiko/insta/issues/812) - Speed up JSON float rendering. [#​806](https://redirect.github.com/mitsuhiko/insta/issues/806) ([@​nyurik](https://redirect.github.com/nyurik)) - Allow globset version up to 0.4.16. [#​810](https://redirect.github.com/mitsuhiko/insta/issues/810) ([@​g0hl1n](https://redirect.github.com/g0hl1n)) - Improve documentation. [#​814](https://redirect.github.com/mitsuhiko/insta/issues/814) ([@​tshepang](https://redirect.github.com/tshepang)) - We no longer trim starting newlines during assertions, which allows asserting the number of leading newlines match. Existing assertions with different leading newlines will pass and print a warning suggesting running with `--force-update-snapshots`. They may fail in the future. (Note that we still currently allow differing *trailing* newlines, though may adjust this in the future). [#​563](https://redirect.github.com/mitsuhiko/insta/issues/563) </details> <details> <summary>rust-lang/log (log)</summary> ### [`v0.4.29`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0429---2025-12-02) [Compare Source](https://redirect.github.com/rust-lang/log/compare/0.4.28...0.4.29) </details> <details> <summary>dtolnay/syn (syn)</summary> ### [`v2.0.111`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.111) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.110...2.0.111) - Allow first argument of `braced!`, `bracketed!`, `parenthesized!` to be an otherwise unused variable ([#​1946](https://redirect.github.com/dtolnay/syn/issues/1946)) </details> <details> <summary>tower-lsp-community/tower-lsp-server (tower-lsp-server)</summary> ### [`v0.23.0`](https://redirect.github.com/tower-lsp-community/tower-lsp-server/blob/HEAD/CHANGELOG.md#0230---2025-12-07) [Compare Source](https://redirect.github.com/tower-lsp-community/tower-lsp-server/compare/v0.22.1...v0.23.0) ##### Added - add Amber LSP to README Projects section ([#​66](https://redirect.github.com/tower-lsp-community/tower-lsp-server/issues/66)) - support `window/workDoneProgress/create` requests ##### Changed - Change the LSP specification types library from `gluon-lang/lsp-types` (which was unmaintained) to `tower-lsp-community/ls-types` (our fork). The initial release manually fixes typos that are blocking for some projects. In the long term, ls-types will take the approach of codegen based on the types model provided by the LSP specification. This should remove any kind of typos or documentation desync. See [tower-lsp-community/ls-types#22 (comment)](https://redirect.github.com/tower-lsp-community/ls-types/issues/22#issuecomment-3483189800). ##### Fixed - use `WorkspaceSymbolResponse` in `symbol()` return value </details> <details> <summary>tokio-rs/tracing (tracing-subscriber)</summary> ### [`v0.3.22`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.22): tracing-subscriber 0.3.22 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.21...tracing-subscriber-0.3.22) ##### Important The previous release [0.3.21] was yanked as it depended explicitly on [tracing-0.1.42], which was yanked due to a breaking change (see [#​3424] for details). This release contains all the changes from the previous release, plus an update to the newer version of `tracing`. ##### Changed - `tracing`: updated to 0.1.43 ([#​3427]) [#​3424]: https://redirect.github.com/tokio-rs/tracing/pull/3424 [#​3427]: https://redirect.github.com/tokio-rs/tracing/pull/3427 [0.3.21]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21 [tracing-0.1.42]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42 ### [`v0.3.21`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21): tracing-subscriber 0.3.21 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.20...tracing-subscriber-0.3.21) ##### Fixed - Change registry exit to decrement local span ref only ([#​3331]) - Make Layered propagate `on_register_dispatch` ([#​3379]) ##### Changed - `tracing`: updated to 0.1.42 ([#​3418]) ##### Performance - Remove `clone_span` on enter ([#​3289]) ##### Documented - Fix a few small things in the format module ([#​3339]) - Fix extra closing brace in layer docs ([#​3350]) - Fix link in `FmtSpan` docs ([#​3411]) [#​3289]: https://redirect.github.com/tokio-rs/tracing/pull/#​3289 [#​3331]: https://redirect.github.com/tokio-rs/tracing/pull/#​3331 [#​3339]: https://redirect.github.com/tokio-rs/tracing/pull/#​3339 [#​3350]: https://redirect.github.com/tokio-rs/tracing/pull/#​3350 [#​3379]: https://redirect.github.com/tokio-rs/tracing/pull/#​3379 [#​3411]: https://redirect.github.com/tokio-rs/tracing/pull/#​3411 [#​3418]: https://redirect.github.com/tokio-rs/tracing/pull/#​3418 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [hashbrown](https://redirect.github.com/rust-lang/hashbrown) | workspace.dependencies | patch | `0.16.0` -> `0.16.1` | | [indexmap](https://redirect.github.com/indexmap-rs/indexmap) | workspace.dependencies | patch | `2.12.0` -> `2.12.1` | | [insta](https://insta.rs/) ([source](https://redirect.github.com/mitsuhiko/insta)) | workspace.dependencies | minor | `1.43.2` -> `1.44.3` | | [log](https://redirect.github.com/rust-lang/log) | workspace.dependencies | patch | `0.4.28` -> `0.4.29` | | [syn](https://redirect.github.com/dtolnay/syn) | workspace.dependencies | patch | `2.0.110` -> `2.0.111` | | [tower-lsp-server](https://redirect.github.com/tower-lsp-community/tower-lsp-server) | workspace.dependencies | minor | `0.22.1` -> `0.23.0` | | [tracing-subscriber](https://tokio.rs) ([source](https://redirect.github.com/tokio-rs/tracing)) | workspace.dependencies | patch | `0.3.20` -> `0.3.22` | --- ### Release Notes <details> <summary>rust-lang/hashbrown (hashbrown)</summary> ### [`v0.16.1`](https://redirect.github.com/rust-lang/hashbrown/blob/HEAD/CHANGELOG.md#0161---2025-11-20) [Compare Source](https://redirect.github.com/rust-lang/hashbrown/compare/v0.16.0...v0.16.1) ##### Added - Added `HashTable` methods related to the raw bucket index ([#&oxc-project#8203;657](https://redirect.github.com/rust-lang/hashbrown/issues/657)) - Added `VacantEntryRef::insert_with_key` ([#&oxc-project#8203;579](https://redirect.github.com/rust-lang/hashbrown/issues/579)) ##### Changed - Removed specialization for `Copy` types ([#&oxc-project#8203;662](https://redirect.github.com/rust-lang/hashbrown/issues/662)) - The `get_many_mut` family of methods have been renamed to `get_disjoint_mut` to match the standard library. The old names are still present for now, but deprecated. ([#&oxc-project#8203;648](https://redirect.github.com/rust-lang/hashbrown/issues/648)) - Recognize and use over-sized allocations when using custom allocators. ([#&oxc-project#8203;523](https://redirect.github.com/rust-lang/hashbrown/issues/523)) - Depend on `serde_core` instead of `serde`. ([#&oxc-project#8203;649](https://redirect.github.com/rust-lang/hashbrown/issues/649)) - Optimized `collect` on rayon parallel iterators. ([#&oxc-project#8203;652](https://redirect.github.com/rust-lang/hashbrown/issues/652)) </details> <details> <summary>indexmap-rs/indexmap (indexmap)</summary> ### [`v2.12.1`](https://redirect.github.com/indexmap-rs/indexmap/blob/HEAD/RELEASES.md#2121-2025-11-20) [Compare Source](https://redirect.github.com/indexmap-rs/indexmap/compare/2.12.0...2.12.1) - Simplified a lot of internals using `hashbrown`'s new bucket API. </details> <details> <summary>mitsuhiko/insta (insta)</summary> ### [`v1.44.3`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1443) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.2...1.44.3) - Fix a regression in 1.44.2 where merge conflict detection was too aggressive, incorrectly flagging snapshot content containing `======` or similar patterns as conflicts. [#&oxc-project#8203;832](https://redirect.github.com/mitsuhiko/insta/issues/832) - Fix a regression in 1.42.2 where inline snapshot updates would corrupt the file when code preceded the macro (e.g., `let output = assert_snapshot!(...)`). [#&oxc-project#8203;833](https://redirect.github.com/mitsuhiko/insta/issues/833) ### [`v1.44.2`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1442) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.1...1.44.2) - Fix a rare backward compatibility issue where inline snapshots using an uncommon legacy format (single-line content stored in multiline raw strings) could fail to match after 1.44.0. [#&oxc-project#8203;830](https://redirect.github.com/mitsuhiko/insta/issues/830) - Handle merge conflicts in snapshot files gracefully. When a snapshot file contains git merge conflict markers, insta now detects them and treats the snapshot as missing, allowing tests to continue and create a new pending snapshot for review. [#&oxc-project#8203;829](https://redirect.github.com/mitsuhiko/insta/issues/829) - Skip nextest\_doctest tests when cargo-nextest is not installed. [#&oxc-project#8203;826](https://redirect.github.com/mitsuhiko/insta/issues/826) - Fix functional tests failing under nextest due to inherited `NEXTEST_RUN_ID` environment variable. [#&oxc-project#8203;824](https://redirect.github.com/mitsuhiko/insta/issues/824) ### [`v1.44.1`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1441) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.44.0...1.44.1) - Add `--dnd` alias for `--disable-nextest-doctest` flag to make it easier to silence the deprecation warning. [#&oxc-project#8203;822](https://redirect.github.com/mitsuhiko/insta/issues/822) - Update cargo-dist to 0.30.2 and fix Windows runner to use windows-2022. [#&oxc-project#8203;821](https://redirect.github.com/mitsuhiko/insta/issues/821) ### [`v1.44.0`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1440) [Compare Source](https://redirect.github.com/mitsuhiko/insta/compare/1.43.2...1.44.0) - Added non-interactive snapshot review and reject modes for use in non-TTY environments (LLMs, CI pipelines, scripts). `cargo insta review --snapshot <path>` and `cargo insta reject --snapshot <path>` now work without a terminal. Enhanced `pending-snapshots` output with usage instructions and workspace-relative paths. [#&oxc-project#8203;815](https://redirect.github.com/mitsuhiko/insta/issues/815) - Add `--disable-nextest-doctest` flag to `cargo insta test` to disable running doctests with nextest. Shows a deprecation warning when nextest is used with doctests without this flag, to prepare `cargo insta` to no longer run a separate doctest process when using nextest in the future. [#&oxc-project#8203;803](https://redirect.github.com/mitsuhiko/insta/issues/803) - Add ergonomic `--test-runner-fallback` / `--no-test-runner-fallback` flags to `cargo insta test`. [#&oxc-project#8203;811](https://redirect.github.com/mitsuhiko/insta/issues/811) - Apply redactions to snapshot metadata. [#&oxc-project#8203;813](https://redirect.github.com/mitsuhiko/insta/issues/813) - Remove confusing 'previously unseen snapshot' message. [#&oxc-project#8203;812](https://redirect.github.com/mitsuhiko/insta/issues/812) - Speed up JSON float rendering. [#&oxc-project#8203;806](https://redirect.github.com/mitsuhiko/insta/issues/806) ([@&oxc-project#8203;nyurik](https://redirect.github.com/nyurik)) - Allow globset version up to 0.4.16. [#&oxc-project#8203;810](https://redirect.github.com/mitsuhiko/insta/issues/810) ([@&oxc-project#8203;g0hl1n](https://redirect.github.com/g0hl1n)) - Improve documentation. [#&oxc-project#8203;814](https://redirect.github.com/mitsuhiko/insta/issues/814) ([@&oxc-project#8203;tshepang](https://redirect.github.com/tshepang)) - We no longer trim starting newlines during assertions, which allows asserting the number of leading newlines match. Existing assertions with different leading newlines will pass and print a warning suggesting running with `--force-update-snapshots`. They may fail in the future. (Note that we still currently allow differing *trailing* newlines, though may adjust this in the future). [#&oxc-project#8203;563](https://redirect.github.com/mitsuhiko/insta/issues/563) </details> <details> <summary>rust-lang/log (log)</summary> ### [`v0.4.29`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0429---2025-12-02) [Compare Source](https://redirect.github.com/rust-lang/log/compare/0.4.28...0.4.29) </details> <details> <summary>dtolnay/syn (syn)</summary> ### [`v2.0.111`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.111) [Compare Source](https://redirect.github.com/dtolnay/syn/compare/2.0.110...2.0.111) - Allow first argument of `braced!`, `bracketed!`, `parenthesized!` to be an otherwise unused variable ([#&oxc-project#8203;1946](https://redirect.github.com/dtolnay/syn/issues/1946)) </details> <details> <summary>tower-lsp-community/tower-lsp-server (tower-lsp-server)</summary> ### [`v0.23.0`](https://redirect.github.com/tower-lsp-community/tower-lsp-server/blob/HEAD/CHANGELOG.md#0230---2025-12-07) [Compare Source](https://redirect.github.com/tower-lsp-community/tower-lsp-server/compare/v0.22.1...v0.23.0) ##### Added - add Amber LSP to README Projects section ([#&oxc-project#8203;66](https://redirect.github.com/tower-lsp-community/tower-lsp-server/issues/66)) - support `window/workDoneProgress/create` requests ##### Changed - Change the LSP specification types library from `gluon-lang/lsp-types` (which was unmaintained) to `tower-lsp-community/ls-types` (our fork). The initial release manually fixes typos that are blocking for some projects. In the long term, ls-types will take the approach of codegen based on the types model provided by the LSP specification. This should remove any kind of typos or documentation desync. See [tower-lsp-community/ls-types#22 (comment)](https://redirect.github.com/tower-lsp-community/ls-types/issues/22#issuecomment-3483189800). ##### Fixed - use `WorkspaceSymbolResponse` in `symbol()` return value </details> <details> <summary>tokio-rs/tracing (tracing-subscriber)</summary> ### [`v0.3.22`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.22): tracing-subscriber 0.3.22 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.21...tracing-subscriber-0.3.22) ##### Important The previous release [0.3.21] was yanked as it depended explicitly on [tracing-0.1.42], which was yanked due to a breaking change (see [#&oxc-project#8203;3424] for details). This release contains all the changes from the previous release, plus an update to the newer version of `tracing`. ##### Changed - `tracing`: updated to 0.1.43 ([#&oxc-project#8203;3427]) [#&oxc-project#8203;3424]: https://redirect.github.com/tokio-rs/tracing/pull/3424 [#&oxc-project#8203;3427]: https://redirect.github.com/tokio-rs/tracing/pull/3427 [0.3.21]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21 [tracing-0.1.42]: https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42 ### [`v0.3.21`](https://redirect.github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21): tracing-subscriber 0.3.21 [Compare Source](https://redirect.github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.20...tracing-subscriber-0.3.21) ##### Fixed - Change registry exit to decrement local span ref only ([#&oxc-project#8203;3331]) - Make Layered propagate `on_register_dispatch` ([#&oxc-project#8203;3379]) ##### Changed - `tracing`: updated to 0.1.42 ([#&oxc-project#8203;3418]) ##### Performance - Remove `clone_span` on enter ([#&oxc-project#8203;3289]) ##### Documented - Fix a few small things in the format module ([#&oxc-project#8203;3339]) - Fix extra closing brace in layer docs ([#&oxc-project#8203;3350]) - Fix link in `FmtSpan` docs ([#&oxc-project#8203;3411]) [#&oxc-project#8203;3289]: https://redirect.github.com/tokio-rs/tracing/pull/#​3289 [#&oxc-project#8203;3331]: https://redirect.github.com/tokio-rs/tracing/pull/#​3331 [#&oxc-project#8203;3339]: https://redirect.github.com/tokio-rs/tracing/pull/#​3339 [#&oxc-project#8203;3350]: https://redirect.github.com/tokio-rs/tracing/pull/#​3350 [#&oxc-project#8203;3379]: https://redirect.github.com/tokio-rs/tracing/pull/#​3379 [#&oxc-project#8203;3411]: https://redirect.github.com/tokio-rs/tracing/pull/#​3411 [#&oxc-project#8203;3418]: https://redirect.github.com/tokio-rs/tracing/pull/#​3418 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zMi4yIiwidXBkYXRlZEluVmVyIjoiNDIuMzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
This PR contains the following updates:
0.16.0->0.16.12.12.0->2.12.11.43.2->1.44.30.4.28->0.4.292.0.110->2.0.1110.22.1->0.23.00.3.20->0.3.22Release Notes
rust-lang/hashbrown (hashbrown)
v0.16.1Compare Source
Added
HashTablemethods related to the raw bucket index (#657)VacantEntryRef::insert_with_key(#579)Changed
Copytypes (#662)get_many_mutfamily of methods have been renamed toget_disjoint_mutto match the standard library. The old names are still present for now, but
deprecated. (#648)
serde_coreinstead ofserde. (#649)collecton rayon parallel iterators. (#652)indexmap-rs/indexmap (indexmap)
v2.12.1Compare Source
hashbrown's new bucket API.mitsuhiko/insta (insta)
v1.44.3Compare Source
======or similar patterns as conflicts. #832let output = assert_snapshot!(...)). #833v1.44.2Compare Source
NEXTEST_RUN_IDenvironment variable. #824v1.44.1Compare Source
--dndalias for--disable-nextest-doctestflag to make it easier to silence the deprecation warning. #822v1.44.0Compare Source
(LLMs, CI pipelines, scripts).
cargo insta review --snapshot <path>andcargo insta reject --snapshot <path>now work without a terminal. Enhancedpending-snapshotsoutput with usage instructions and workspace-relative paths. #815--disable-nextest-doctestflag tocargo insta testto disable running doctests withnextest. Shows a deprecation warning when nextest is used with doctests without this flag, to prepare
cargo instato no longer runa separate doctest process when using nextest in the future. #803
--test-runner-fallback/--no-test-runner-fallbackflags tocargo insta test. #811the number of leading newlines match. Existing assertions with different
leading newlines will pass and print a warning suggesting running with
--force-update-snapshots. They may fail in the future. (Note that we stillcurrently allow differing trailing newlines, though may adjust this in the
future). #563
rust-lang/log (log)
v0.4.29Compare Source
dtolnay/syn (syn)
v2.0.111Compare Source
braced!,bracketed!,parenthesized!to be an otherwise unused variable (#1946)tower-lsp-community/tower-lsp-server (tower-lsp-server)
v0.23.0Compare Source
Added
window/workDoneProgress/createrequestsChanged
Change the LSP specification types library from
gluon-lang/lsp-types(which was unmaintained) totower-lsp-community/ls-types(our fork).The initial release manually fixes typos that are blocking for some projects.
In the long term, ls-types will take the approach of codegen based on the types model provided by the LSP specification. This should remove any kind of typos or documentation desync. See tower-lsp-community/ls-types#22 (comment).
Fixed
WorkspaceSymbolResponseinsymbol()return valuetokio-rs/tracing (tracing-subscriber)
v0.3.22: tracing-subscriber 0.3.22Compare Source
Important
The previous release 0.3.21 was yanked as it depended explicitly on
tracing-0.1.42, which was yanked due to a breaking change (see #3424 for
details). This release contains all the changes from the previous release, plus
an update to the newer version of
tracing.Changed
tracing: updated to 0.1.43 (#3427)v0.3.21: tracing-subscriber 0.3.21Compare Source
Fixed
on_register_dispatch(#3379)Changed
tracing: updated to 0.1.42 (#3418)Performance
clone_spanon enter (#3289)Documented
FmtSpandocs (#3411)Configuration
📅 Schedule: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.