Skip to content

Bump the non-critical group with 9 updates#2884

Merged
maciektr merged 2 commits intomainfrom
dependabot/cargo/non-critical-66f5d7aa2e
Dec 1, 2025
Merged

Bump the non-critical group with 9 updates#2884
maciektr merged 2 commits intomainfrom
dependabot/cargo/non-critical-66f5d7aa2e

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the non-critical group with 9 updates:

Package From To
mdbook 0.4.52 0.5.1
ra-ap-rustc_parse_format 0.139.0 0.140.0
ra_ap_toolchain 0.0.307 0.0.308
smol_str 0.3.2 0.3.4
tracing 0.1.41 0.1.43
tracing-core 0.1.34 0.1.35
tracing-subscriber 0.3.20 0.3.22
wasmtime 37.0.3 39.0.1
wasmtime-wasi 37.0.3 39.0.1

Updates mdbook from 0.4.52 to 0.5.1

Release notes

Sourced from mdbook's releases.

v0.5.1

See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-051 for a complete list of changes.

v0.5.0

The 0.5.0 release is the next major release of mdBook, containing over 130 PRs since 0.4.52! The primary focus for this release has been an evolution of the Rust APIs to make it easier to maintain, to evolve in a backwards-compatible fashion, to clean up some things that have accumulated over time, and to significantly improve the performance and compile-times.

This release also includes many new features described in the CHANGELOG.

We have prepared a 0.5 Migration Guide to help existing authors switch from 0.4.

v0.5.0-beta.2

See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-beta2 for a complete list of changes.

v0.5.0-beta.1

See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-beta1 for a complete list of changes.

v0.5.0-alpha.1

See https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md#mdbook-050-alpha1 for a complete list of changes.

Changelog

Sourced from mdbook's changelog.

mdBook 0.5.1

v0.5.0...v0.5.1

Changed

  • Changed the scrollbar background to be transparent. #2932
  • Ignore invalid top-level environment variable config keys. This allows setting things like MDBOOK_VERSION to not cause an error. #2952

Fixed

  • Fixed the sidebar heading nav to have the correct nesting levels. #2953
  • Various Font Awesome fixes and improvements. #2951

mdBook 0.5.0

v0.4.52...v0.5.0

The 0.5.0 release is the next major release of mdBook, containing over 130 PRs since 0.4.52! The primary focus for this release has been an evolution of the Rust APIs to make it easier to maintain, to evolve in a backwards-compatible fashion, to clean up some things that have accumulated over time, and to significantly improve the performance and compile-times.

This release also includes many new features described below.

We have prepared a 0.5 Migration Guide to help existing authors switch from 0.4.

The final 0.5.0 release only contains the following changes since 0.5.0-beta.2:

  • Added error handling to environment config handling. This checks that environment variables starting with MDBOOK_ are correctly specified instead of silently ignoring. This also fixed being able to replace entire top-level tables like MDBOOK_OUTPUT. #2942

0.5 Migration Guide

The 0.5 release contains several breaking changes from the 0.4 release. Preprocessors and renderers will need to be migrated to continue to work with this release. After updating your configuration, it is recommended to carefully compare and review how your book renders to ensure everything is working correctly.

If you have overridden any of the theme files, you will likely need to update them to match the current version.

See the entries below for mdBook 0.5.0-alpha.1, mdBook 0.5.0-beta.1, and mdBook 0.5.0-beta.2 for a more complete list of changes and fixes.

The following is a summary of the changes that may require your attention when updating to 0.5:

Major additions

  • Added sidebar heading navigation. This includes the output.html.sidebar-header-nav option to disable it. #2822
  • Added support for definition lists. These are enabled by default, with the option output.html.definition-lists to disable it. See docs for more. #2847
  • Added support for admonitions. These are enabled by default, with the option output.html.admonitions to disable it. See docs for more. #2851
  • Links on the print page now link to elements on the print page instead of linking out to the individual chapters. #2844

... (truncated)

Commits
  • d63aeb6 Merge pull request #2955 from ehuss/bump-version
  • eb83d08 Update to 0.5.1
  • 710ec27 Merge pull request #2932 from vitorfloriano/scrollbar-bg-transparent
  • 5d64d0e Merge pull request #2953 from ehuss/fix-heading-nav-level
  • 718ceec Fix heading nav depth
  • 09616e3 Add a test to validate the structure of the heading nav
  • 7e7a3b4 Merge pull request #2952 from ehuss/ignore-top-env-keys
  • d39deca Ignore invalid top-level environment variable config keys
  • 8385e75 Merge pull request #2951 from ehuss/fa-improvements
  • 8571d70 Update the documentation for Font Awesome
  • Additional commits viewable in compare view

Updates ra-ap-rustc_parse_format from 0.139.0 to 0.140.0

Commits

Updates ra_ap_toolchain from 0.0.307 to 0.0.308

Commits

Updates smol_str from 0.3.2 to 0.3.4

Changelog

Sourced from smol_str's changelog.

0.3.4 - 2025-10-23

  • Added rust-version field to Cargo.toml

0.3.3 - 2025-10-23

  • Optimise StrExt::to_ascii_lowercase_smolstr, StrExt::to_ascii_uppercase_smolstr ~2x speedup inline, ~4-22x for heap.
  • Optimise StrExt::to_lowercase_smolstr, StrExt::to_uppercase_smolstr ~2x speedup inline, ~5-50x for heap.
  • Optimise StrExt::replace_smolstr, StrExt::replacen_smolstr for single ascii replace, ~3x speedup inline & heap.
Commits
  • 02336c5 Publish 0.3.4
  • bf2e3d7 Publish 0.3.3
  • 8f4deab Update changelog
  • 97ef5f3 Mark replacen_1_ascii as unsafe
  • 026103b Optimise replacen 1-ascii when count >= len
  • 104784a Optimise replacen_smolstr for single ascii replace
  • 08a9dc8 Add test from_buf_and_chars_size_hinted_heap & fix
  • 22feb5f Update changelog
  • 3122a9a Optimise to_{lower,upper}case_smolstr
  • 81c8790 CI: Add TEST_BENCHES
  • Additional commits viewable in compare view

Updates tracing from 0.1.41 to 0.1.43

Release notes

Sourced from tracing's releases.

tracing 0.1.43

Important

The previous release [0.1.42] was yanked because #3382 was a breaking change. See further details in #3424. This release contains all the changes from that version, plus a revert for the problematic part of the breaking PR.

Fixed

  • Revert "make valueset macro sanitary" (#3425)

#3382: tokio-rs/tracing#3382 #3424: tokio-rs/tracing#3424 #3425: tokio-rs/tracing#3425 [0.1.42]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42

tracing 0.1.42

Important

The [Span::record_all] method has been removed from the documented API. It was always unsuable via the documented API as it requried a ValueSet which has no publically documented constructors. The method remains, but should not be used outside of tracing macros.

Added

  • attributes: Support constant expressions as instrument field names (#3158)
  • Add record_all! macro for recording multiple values in one call (#3227)
  • core: Improve code generation at trace points significantly (#3398)

Changed

  • tracing-core: updated to 0.1.35 (#3414)
  • tracing-attributes: updated to 0.1.31 (#3417)

Fixed

  • Fix "name / parent" variant of event! (#2983)
  • Remove 'r#' prefix from raw identifiers in field names (#3130)
  • Fix perf regression when release_max_level_* not set (#3373)
  • Use imported instead of fully qualified path (#3374)
  • Make valueset macro sanitary (#3382)

Documented

  • core: Add missing dyn keyword in Visit documentation code sample (#3387)

#2983: tokio-rs/tracing#2983 #3130: tokio-rs/tracing#3130 #3158: tokio-rs/tracing#3158

... (truncated)

Commits

Updates tracing-core from 0.1.34 to 0.1.35

Release notes

Sourced from tracing-core's releases.

tracing-core 0.1.35

Added

  • Switch to unconditional no_std (#3323)
  • Improve code generation at trace points significantly (#3398)

Fixed

  • Add missing dyn keyword in Visit documentation code sample (#3387)

Documented

  • Add favicon for extra pretty docs (#3351)

#3323: tokio-rs/tracing#3323 #3351: tokio-rs/tracing#3351 #3387: tokio-rs/tracing#3387 #3398: tokio-rs/tracing#3398

Commits
  • d92b4c0 chore: prepare tracing-core 0.1.35 (#3414)
  • 9751b6e chore: run tracing-subscriber tests with all features (#3412)
  • efa0169 mock: add doctests for on_register_dispatch negative cases (#3416)
  • a093858 docs: fix link in FmtSpan docs (#3411)
  • 976fa55 mock: add test case for layer not calling on_register_dispatch (#3415)
  • 8bc008c fix(subscriber): make Layered propagate on_register_dispatch (#3379)
  • adbd8a4 appender: fix max_files integer underflow when set to zero (#3348)
  • 2a8b040 chore: add Hayden (@​hds) to codeowners (#3410)
  • cf5c2bd subscriber: remove clone_span on enter (#3289)
  • c287c84 subscriber: change registry exit to decrement local span ref only (#3331)
  • Additional commits viewable in compare view

Updates tracing-subscriber from 0.3.20 to 0.3.22

Release notes

Sourced from tracing-subscriber's releases.

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: tokio-rs/tracing#3424 #3427: tokio-rs/tracing#3427 [0.3.21]: https://github.com/tokio-rs/tracing/releases/tag/tracing-subscriber-0.3.21 [tracing-0.1.42]: https://github.com/tokio-rs/tracing/releases/tag/tracing-0.1.42

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: tokio-rs/tracing#3289 #3331: tokio-rs/tracing#3331 #3339: tokio-rs/tracing#3339 #3350: tokio-rs/tracing#3350 #3379: tokio-rs/tracing#3379 #3411: tokio-rs/tracing#3411 #3418: tokio-rs/tracing#3418

Commits

Updates wasmtime from 37.0.3 to 39.0.1

Release notes

Sourced from wasmtime's releases.

v39.0.1

39.0.1

Released 2025-11-24.

Fixed

  • Compiling the debug feature without the gc feature enabled has been fixed. #12074

v39.0.0

39.0.0

Released 2025-11-20.

Added

  • Initial work has begun to support WebAssembly-level debugging natively in Wasmtime. This is intended to complement today's preexisting DWARF-level debugging, but this work will be portable and operate at the WebAssembly level of abstraction rather than the machine-level. Note that this work is not yet complete at this time but is expected to get filled out over the coming releases. #11768 #11769 #11873 #11892 #11895

  • The pooling allocator now exposes more metrics about unused slots. #11789

  • The [Wizer] and [component-init] projects have been merged into Wasmtime under a new wasmtime wizer CLI subcommand and wasmtime-wizer crate. This is mostly a drop-in replacement for both with a minor caveat that the initialization function is now called wizer-initialize instead of wizer.initialize to be compatible with components. #11805 #11851 #11853 #11855 #11857 #11863 #11866 #11867 #11877 #11876 #11878 #11891 #11897

... (truncated)

Changelog

Sourced from wasmtime's changelog.

39.0.1

Released 2025-11-24.

Fixed

  • Compiling the debug feature without the gc feature enabled has been fixed. #12074

39.0.0

Released 2025-11-20.

Added

  • Initial work has begun to support WebAssembly-level debugging natively in Wasmtime. This is intended to complement today's preexisting DWARF-level debugging, but this work will be portable and operate at the WebAssembly level of abstraction rather than the machine-level. Note that this work is not yet complete at this time but is expected to get filled out over the coming releases. #11768 #11769 #11873 #11892 #11895

  • The pooling allocator now exposes more metrics about unused slots. #11789

  • The [Wizer] and [component-init] projects have been merged into Wasmtime under a new wasmtime wizer CLI subcommand and wasmtime-wizer crate. This is mostly a drop-in replacement for both with a minor caveat that the initialization function is now called wizer-initialize instead of wizer.initialize to be compatible with components. #11805 #11851 #11853 #11855 #11857 #11863 #11866 #11867 #11877 #11876 #11878 #11891 #11897

... (truncated)

Commits

Updates wasmtime-wasi from 37.0.3 to 39.0.1

Release notes

Sourced from wasmtime-wasi's releases.

v39.0.1

39.0.1

Released 2025-11-24.

Fixed

  • Compiling the debug feature without the gc feature enabled has been fixed. #12074

v39.0.0

39.0.0

Released 2025-11-20.

Added

  • Initial work has begun to support WebAssembly-level debugging natively in Wasmtime. This is intended to complement today's preexisting DWARF-level debugging, but this work will be portable and operate at the WebAssembly level of abstraction rather than the machine-level. Note that this work is not yet complete at this time but is expected to get filled out over the coming releases. #11768 #11769 #11873 #11892 #11895

  • The pooling allocator now exposes more metrics about unused slots. #11789

  • The [Wizer] and [component-init] projects have been merged into Wasmtime under a new wasmtime wizer CLI subcommand and wasmtime-wizer crate. This is mostly a drop-in replacement for both with a minor caveat that the initialization function is now called wizer-initialize instead of wizer.initialize to be compatible with components. #11805 #11851 #11853 #11855 #11857 #11863 #11866 #11867 #11877 #11876 #11878 #11891 #11897

... (truncated)

Changelog

Sourced from wasmtime-wasi's changelog.

39.0.1

Released 2025-11-24.

Fixed

  • Compiling the debug feature without the gc feature enabled has been fixed. #12074

39.0.0

Released 2025-11-20.

Added

  • Initial work has begun to support WebAssembly-level debugging natively in Wasmtime. This is intended to complement today's preexisting DWARF-level debugging, but this work will be portable and operate at the WebAssembly level of abstraction rather than the machine-level. Note that this work is not yet complete at this time but is expected to get filled out over the coming releases. #11768 #11769 #11873 #11892 #11895

  • The pooling allocator now exposes more metrics about unused slots. #11789

  • The [Wizer] and [component-init] projects have been merged into Wasmtime under a new wasmtime wizer CLI subcommand and wasmtime-wizer crate. This is mostly a drop-in replacement for both with a minor caveat that the initialization function is now called wizer-initialize instead of wizer.initialize to be compatible with components. #11805 #11851 #11853 #11855 #11857 #11863 #11866 #11867 #11877 #11876 #11878 #11891 #11897

... (truncated)

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
wasmtime [>= 38.a, < 39]
wasmtime-wasi [>= 38.a, < 39]

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 non-critical group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [mdbook](https://github.com/rust-lang/mdBook) | `0.4.52` | `0.5.1` |
| [ra-ap-rustc_parse_format](https://github.com/rust-lang/rust) | `0.139.0` | `0.140.0` |
| [ra_ap_toolchain](https://github.com/rust-lang/rust-analyzer) | `0.0.307` | `0.0.308` |
| [smol_str](https://github.com/rust-analyzer/smol_str) | `0.3.2` | `0.3.4` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.41` | `0.1.43` |
| [tracing-core](https://github.com/tokio-rs/tracing) | `0.1.34` | `0.1.35` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.20` | `0.3.22` |
| [wasmtime](https://github.com/bytecodealliance/wasmtime) | `37.0.3` | `39.0.1` |
| [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime) | `37.0.3` | `39.0.1` |


Updates `mdbook` from 0.4.52 to 0.5.1
- [Release notes](https://github.com/rust-lang/mdBook/releases)
- [Changelog](https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md)
- [Commits](rust-lang/mdBook@v0.4.52...v0.5.1)

Updates `ra-ap-rustc_parse_format` from 0.139.0 to 0.140.0
- [Release notes](https://github.com/rust-lang/rust/releases)
- [Changelog](https://github.com/rust-lang/rust/blob/main/RELEASES.md)
- [Commits](https://github.com/rust-lang/rust/commits)

Updates `ra_ap_toolchain` from 0.0.307 to 0.0.308
- [Release notes](https://github.com/rust-lang/rust-analyzer/releases)
- [Commits](https://github.com/rust-lang/rust-analyzer/commits)

Updates `smol_str` from 0.3.2 to 0.3.4
- [Changelog](https://github.com/rust-analyzer/smol_str/blob/master/CHANGELOG.md)
- [Commits](rust-analyzer/smol_str@v0.3.2...v0.3.4)

Updates `tracing` from 0.1.41 to 0.1.43
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.41...tracing-0.1.43)

Updates `tracing-core` from 0.1.34 to 0.1.35
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.34...tracing-core-0.1.35)

Updates `tracing-subscriber` from 0.3.20 to 0.3.22
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.20...tracing-subscriber-0.3.22)

Updates `wasmtime` from 37.0.3 to 39.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v39.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v37.0.3...v39.0.1)

Updates `wasmtime-wasi` from 37.0.3 to 39.0.1
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v39.0.1/RELEASES.md)
- [Commits](bytecodealliance/wasmtime@v37.0.3...v39.0.1)

---
updated-dependencies:
- dependency-name: mdbook
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-critical
- dependency-name: ra-ap-rustc_parse_format
  dependency-version: 0.140.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-critical
- dependency-name: ra_ap_toolchain
  dependency-version: 0.0.308
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: smol_str
  dependency-version: 0.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: tracing
  dependency-version: 0.1.43
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: tracing-core
  dependency-version: 0.1.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: tracing-subscriber
  dependency-version: 0.3.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-critical
- dependency-name: wasmtime
  dependency-version: 39.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: non-critical
- dependency-name: wasmtime-wasi
  dependency-version: 39.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: non-critical
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 13:08
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 1, 2025
Signed-off-by: maciektr <maciej.tratnowiecki@swmansion.com>
@maciektr maciektr enabled auto-merge December 1, 2025 14:58
@maciektr maciektr added this pull request to the merge queue Dec 1, 2025
Merged via the queue into main with commit 816afee Dec 1, 2025
16 checks passed
@maciektr maciektr deleted the dependabot/cargo/non-critical-66f5d7aa2e branch December 1, 2025 15:34
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