Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix(deps): update cargo (patch) #9733

Merged
merged 1 commit into from
Dec 29, 2024
Merged

fix(deps): update cargo (patch) #9733

merged 1 commit into from
Dec 29, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2024

This PR contains the following updates:

Package Type Update Change
allocator-api2 workspace.dependencies patch 0.2.19 -> 0.2.21
chrono workspace.dependencies patch 0.4.38 -> 0.4.39
crossbeam-queue (source) workspace.dependencies patch 0.3.11 -> 0.3.12
glob workspace.dependencies patch 0.3.1 -> 0.3.2
js-sys (source) workspace.dependencies patch 0.3.72 -> 0.3.76
pathdiff workspace.dependencies patch 0.2.2 -> 0.2.3
rkyv workspace.dependencies patch 0.8.8 -> 0.8.9
tracing (source) dependencies patch 0.1.40 -> 0.1.41
tracing (source) workspace.dependencies patch 0.1.40 -> 0.1.41
tracing-subscriber (source) dependencies patch 0.3.18 -> 0.3.19
tracing-subscriber (source) workspace.dependencies patch 0.3.18 -> 0.3.19
wasm-bindgen (source) dependencies patch 0.2.95 -> 0.2.99
wasm-bindgen (source) workspace.dependencies patch 0.2.95 -> 0.2.99
wasm-bindgen-futures (source) workspace.dependencies patch 0.4.45 -> 0.4.49

Release Notes

chronotope/chrono (chrono)

v0.4.39: 0.4.39

Compare Source

What's Changed
crossbeam-rs/crossbeam (crossbeam-queue)

v0.3.12: crossbeam-queue 0.3.12

Compare Source

rust-lang/glob (glob)

v0.3.2

Compare Source

tokio-rs/tracing (tracing)

v0.1.41: tracing 0.1.41

Compare Source

[ crates.io ] | [ docs.rs ]

This release updates the tracing-core dependency to v0.1.33 and
the tracing-attributes dependency to v0.1.28.

Added
  • core: Add index API for Field (#​2820)
  • core: Allow &[u8] to be recorded as event/span field (#​2954)
Changed
  • Bump MSRV to 1.63 (#​2793)
  • core: Use const thread_locals when possible (#​2838)
Fixed
  • Removed core imports in macros (#​2762)
  • attributes: Added missing RecordTypes for instrument (#​2781)
  • attributes: Change order of async and unsafe modifier (#​2864)
  • Fix missing field prefixes (#​2878)
  • attributes: Extract match scrutinee (#​2880)
  • Fix non-simple macro usage without message (#​2879)
  • Fix event macros with constant field names in the first position (#​2883)
  • Allow field path segments to be keywords (#​2925)
  • core: Fix missed register_callsite error (#​2938)
  • attributes: Support const values for target and name (#​2941)
  • Prefix macro calls with ::core to avoid clashing with local macros (#​3024)
rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.99

Compare Source

Released 2024-12-07

Fixed
  • Mark wasm-bindgen v0.2.98 only compatible with wasm-bindgen-cli of the same version.
    #​4331

v0.2.98

Compare Source

Released 2024-12-07

Added
  • Add support for compiling with atomics for Node.js.
    #​4318

  • Add WASM_BINDGEN_TEST_DRIVER_TIMEOUT environment variable to control the timeout to start and connect to the test driver.
    #​4320

  • Add support for number slices of type MaybeUninit<T>.
    #​4316

Changed
  • Remove once_cell/critical-section requirement for no_std with atomics.
    #​4322

  • static FOO: Option<T> now returns None if undeclared in JS instead of throwing an error in JS.
    #​4319

Fixed
  • Fix macro-hygiene for calls to std::thread_local!.
    #​4315

  • Fix feature resolver version 1 compatibility.
    #​4327


v0.2.97

Compare Source

Released 2024-11-30

Fixed
  • Fixed js-sys and wasm-bindgen-futures relying on internal paths of wasm-bindgen that are not crate feature additive.
    #​4305

v0.2.96

Compare Source

Released 2024-11-29

Added
  • Added support for the HTMLOrSVGElement mixin, which is used for all interfaces deriving from Element.
    #​4143

  • Added bindings for MathMLElement.
    #​4143

  • Added JSDoc type annotations to C-style enums.
    #​4192

  • Added support for C-style enums with negative discriminants.
    #​4204

  • Added bindings for MediaStreamTrack.getCapabilities.
    #​4236

  • Added WASM ABI support for u128 and i128
    #​4222

  • Added support for the wasm32v1-none target.
    #​4277

  • Added support for no_std to js-sys, web-sys, wasm-bindgen-futures and wasm-bindgen-test.
    #​4277

  • Added support for no_std to link_to!, static_string (via thread_local_v2) and throw.
    #​4277

  • Added environment variables to configure tests: WASM_BINDGEN_USE_BROWSER, WASM_BINDGEN_USE_DEDICATED_WORKER, WASM_BINDGEN_USE_SHARED_WORKER WASM_BINDGEN_USE_SERVICE_WORKER, WASM_BINDGEN_USE_DENO and WASM_BINDGEN_USE_NODE_EXPERIMENTAL. The use of wasm_bindgen_test_configure! will overwrite any environment variable.
    #​4295

Changed
  • String enums now generate private TypeScript types but only if used.
    #​4174

  • Remove unnecessary JSDoc type annotations from generated .d.ts files
    #​4187

  • Deprecate autofocus, tabIndex, focus() and blur() bindings in favor of bindings on the inherited Element class.
    #​4143

  • Optimized ABI performance for Option<{i32,u32,isize,usize,f32,*const T,*mut T}>.
    #​4183

  • Deprecate --reference-types in favor of automatic target feature detection.
    #​4237

  • wasm-bindgen-test-runner now tries to restart the WebDriver on failure, instead of spending its timeout period trying to connect to a non-existing WebDriver.
    #​4267

  • Deprecated #[wasm_bindgen(thread_local)] in favor of #[wasm_bindgen(thread_local_v2)], which creates a wasm_bindgen::JsThreadLocal. It is similar to std::thread::LocalKey but supports no_std.
    #​4277

  • Updated the WebGPU API to the current draft as of 2024-11-22.
    #​4290

  • Improved error messages for self arguments in invalid positions.
    #​4276

Fixed
  • Fixed methods with self: &Self consuming the object.
    #​4178

  • Fixed unused string enums generating JS values.
    #​4193

  • Fixed triggering lints in testing facilities.
    #​4195

  • Fixed #[should_panic] not working with #[wasm_bindgen_test(unsupported = ...)].
    #​4196

  • Fixed potential null error when using JsValue::as_debug_string().
    #​4192

  • Fixed generated types when the getter and setter of a property have different types.
    #​4202

  • Fixed generated types when a static getter/setter has the same name as an instance getter/setter.
    #​4202

  • Fixed invalid TypeScript return types for multivalue signatures.
    #​4210

  • Only emit table.fill instructions if the bulk-memory proposal is enabled.
    #​4237

  • Fixed calls to JsCast::instanceof() not respecting JavaScript namespaces.
    #​4241

  • Fixed imports for functions using this and late binding.
    #​4225

  • Don't expose non-functioning implicit constructors to classes when none are provided.
    #​4282



Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner November 11, 2024 12:29
Copy link

changeset-bot bot commented Nov 11, 2024

⚠️ No Changeset found

Latest commit: 4cd08bf

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@renovate renovate bot force-pushed the renovate/patch-cargo branch from 0222b5f to 6e3e1d0 Compare November 11, 2024 14:17
Copy link

codspeed-hq bot commented Nov 11, 2024

CodSpeed Performance Report

Merging #9733 will not alter performance

Comparing renovate/patch-cargo (de05497) with main (556d924)

Summary

✅ 194 untouched benchmarks

@renovate renovate bot force-pushed the renovate/patch-cargo branch 8 times, most recently from 6f39adb to 627234a Compare November 18, 2024 01:49
@renovate renovate bot force-pushed the renovate/patch-cargo branch 9 times, most recently from 697efa4 to a537a7e Compare November 25, 2024 12:18
@renovate renovate bot force-pushed the renovate/patch-cargo branch from a537a7e to a2e4326 Compare November 26, 2024 23:34
@renovate renovate bot changed the title chore(deps): update rust crate allocator-api2 to v0.2.20 chore(deps): update cargo (patch) Nov 26, 2024
@renovate renovate bot force-pushed the renovate/patch-cargo branch 6 times, most recently from 95e38ca to 818c8df Compare December 2, 2024 01:27
@renovate renovate bot force-pushed the renovate/patch-cargo branch 7 times, most recently from e6c532d to 730f115 Compare December 9, 2024 07:44
@renovate renovate bot force-pushed the renovate/patch-cargo branch from 730f115 to 1e90bc9 Compare December 11, 2024 17:34
@renovate renovate bot changed the title chore(deps): update cargo (patch) fix(deps): update cargo (patch) Dec 11, 2024
@renovate renovate bot force-pushed the renovate/patch-cargo branch 7 times, most recently from bde03ab to afeb92b Compare December 18, 2024 20:33
@renovate renovate bot force-pushed the renovate/patch-cargo branch 7 times, most recently from c45edb5 to 4cd08bf Compare December 27, 2024 17:38
@renovate renovate bot force-pushed the renovate/patch-cargo branch from 4cd08bf to de05497 Compare December 29, 2024 02:32
@kdy1 kdy1 merged commit fb2f6e4 into main Dec 29, 2024
151 of 153 checks passed
@kdy1 kdy1 deleted the renovate/patch-cargo branch December 29, 2024 05:07
@kdy1 kdy1 modified the milestones: Planned, 1.10.4 Dec 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants