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

chore(deps): update cargo (patch) #9405

Merged
merged 2 commits into from
Aug 14, 2024
Merged

chore(deps): update cargo (patch) #9405

merged 2 commits into from
Aug 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 9, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
js-sys (source) workspace.dependencies patch 0.3.69 -> 0.3.70
wasm-bindgen (source) dependencies patch 0.2.92 -> 0.2.93
wasm-bindgen (source) workspace.dependencies patch 0.2.92 -> 0.2.93
wasm-bindgen-futures (source) workspace.dependencies patch 0.4.42 -> 0.4.43

Release Notes

rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.93

Compare Source

Released 2024-08-13

Added
  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and
    an exported symbol is named default.
    #​3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)].
    #​3901

  • Implement From<NonNull<T>> for JsValue.
    #​3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array.
    #​3888

  • Added support for returning Vecs from async functions.
    #​3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities.
    #​3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method.
    #​3941

  • Add bindings for VisualViewport.
    #​3931

  • Add bindings for queueMicrotask.
    #​3981

  • Add experimental bindings for User Agent Client Hints API
    #​3989

  • Add bindings for FocusOptions.
    #​3996

  • Add bindings for RTCRtpReceiver.jitterBufferTarget.
    #​3968

  • Generate getters for all WebIDL dictionary types.
    #​3993

  • Support for iterable in WebIDL. Gives entries, keys, values methods for regular and asynchronous, as well as for_each for regular, iterables.
    #​3962

  • Add bindings for HTMLTableCellElement.abbr and scope properties.
    #​3972

  • Add WebIDL definitions relating to Popover API.
    #​3977

  • Added the thread_stack_size property to the object parameter of default() (init()) and initSync(), making it possible to set the stack size of spawned threads. __wbindgen_thread_destroy() now has a third optional parameter for the stack size, the default stack size is assumed when not passing it. When calling from the thread to be destroyed, by passing no parameters, the correct stack size is determined internally.
    #​3995

  • Added bindings to the Device Memory API.
    #​4011

  • Added support for WebIDL records. This added new methods to various APIs, notably ClipboardItem(), GPUDeviceDescriptor.requiredLimits and Header().
    #​4030

  • Added an official MSRV policy. Library MSRV changes will be accompanied by a minor version bump. CLI tool MSRV can change with any version bump.
    #​4038

  • Added bindings to NavigatorOptions.vibrate.
    #​4041

  • Added an experimental Node.JS ES module target, in comparison the current node target uses CommonJS, with --target experimental-nodejs-module or when testing with wasm_bindgen_test_configure!(run_in_node_experimental).
    #​4027

  • Added importing strings as JsString through #[wasm_bindgen(thread_local, static_string)] static STRING: JsString = "a string literal";.
    #​4055

  • Added experimental test coverage support for wasm-bindgen-test-runner, see the guide for more information.
    #​4060

Changed
  • Stabilize Web Share API.
    #​3882

  • Generate JS bindings for WebIDL dictionary setters instead of using Reflect. This increases the size of the Web API bindings but should be more performant. Also, importing getters/setters from JS now supports specifying the JS attribute name as a string, e.g. #[wasm_bindgen(method, setter = "x-cdm-codecs")].
    #​3898

  • Greatly improve the performance of sending WebIDL 'string enums' across the JavaScript boundary by converting the enum variant string to/from an int.
    #​3915

  • Use table.fill when appropriate.
    #​3446

  • Annotated methods in WebCodecs that throw.
    #​3970

  • Update and stabilize the Clipboard API.
    #​3992

  • Deprecate builder-pattern type setters for WebIDL dictionary types and introduce non-mutable setters instead.
    #​3993

  • Allow imported async functions to return any type that can be converted from a JsValue.
    #​3919

  • Update Web Authentication API to level 3.
    #​4000

  • Deprecate AudioBufferSourceNode.onended and AudioBufferSourceNode.stop().
    #​4020

  • Increase default stack size for spawned threads from 1 to 2 MB.
    #​3995

  • Deprecated parameters to default (init) and initSync in favor of an object.
    #​3995

  • Update AbortSignal and AbortController according to the WHATWG specification.
    #​4026

  • Update the Indexed DB API.
    #​4027

  • UnwrapThrowExt for Result now makes use of the required Debug bound to display the error as well.
    #​4035
    #​4049

  • MSRV of CLI tools bumped to v1.76. This does not affect libraries like wasm-bindgen, js-sys and web-sys!
    #​4037

  • Filtered files in published crates, significantly reducing the package size and notably excluding any bash files.
    #​4046

  • Deprecated JsStatic in favor of #[wasm_bindgen(thread_local)], which creates a std::thread::LocalKey. The syntax is otherwise the same.
    #​4057

  • Removed impl Deref for JsStatic when compiling with cfg(target_feature = "atomics"), which was unsound.
    #​4057

  • Updated the WebGPU WebIDL to the current draft as of 2024-08-05.
    #​4062

  • Use object URLs for linked modules without --split-linked-modules.
    #​4067

Fixed
  • Copy port from headless test server when using WASM_BINDGEN_TEST_ADDRESS.
    #​3873

  • Fix catch not being thread-safe.
    #​3879

  • Fix MSRV compilation.
    #​3927

  • Fix clippy::empty_docs lint.
    #​3946

  • Fix missing target features in module when enabling reference types or multi-value transformation.
    #​3967

  • Fixed Rust values getting GC'd while still borrowed.
    #​3940

  • Fixed Rust values not getting GC'd if they were created via. a constructor.
    #​3940

  • Fix triggering clippy::mem_forget lint in exported structs.
    #​3985

  • Fix MDN links to static interface methods.
    #​4010

  • Fixed Deno support.
    #​3990

  • Fix __wbindgen_thread_destroy() ignoring parameters.
    #​3995

  • Fix no_std support and therefor compiling with default-features = false.
    #​4005

  • Fix byte order for big-endian platforms.
    #​4015

  • Allow ex/importing structs, functions and parameters named with raw identifiers.
    #​4025

  • Implement a more reliable way to detect the stack pointer.
    #​4036

  • #[track_caller] is now always applied on UnwrapThrowExt methods when not targetting wasm32-unknown-unknown.
    #​4042



Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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 August 9, 2024 04:42
@CLAassistant
Copy link

CLAassistant commented Aug 9, 2024

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.

✅ kdy1
❌ renovate[bot]
You have signed the CLA already but the status is still pending? Let us recheck it.

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

Copy link

changeset-bot bot commented Aug 9, 2024

⚠️ No Changeset found

Latest commit: 91f96c8

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

Copy link

codspeed-hq bot commented Aug 9, 2024

CodSpeed Performance Report

Merging #9405 will not alter performance

Comparing renovate/patch-cargo (91f96c8) with main (d2929d1)

Summary

✅ 178 untouched benchmarks

@renovate renovate bot changed the title chore(deps): update rust crate swc_fast_ts_strip to v0.5.1 chore(deps): update cargo (patch) Aug 13, 2024
@kdy1 kdy1 enabled auto-merge (squash) August 14, 2024 00:11
@kdy1 kdy1 added this to the Planned milestone Aug 14, 2024
Copy link
Contributor Author

renovate bot commented Aug 14, 2024

Edited/Blocked Notification

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

⚠️ Warning: custom changes will be lost.

@kdy1 kdy1 merged commit baf4928 into main Aug 14, 2024
153 of 154 checks passed
@kdy1 kdy1 deleted the renovate/patch-cargo branch August 14, 2024 00:39
@kdy1 kdy1 modified the milestones: Planned, v1.7.11 Aug 14, 2024
@swc-project swc-project locked as resolved and limited conversation to collaborators Sep 13, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants