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

Update dependencies #57

Merged
merged 1 commit into from
Dec 2, 2024
Merged

Update dependencies #57

merged 1 commit into from
Dec 2, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2024

This PR contains the following updates:

Package Type Update Change
deno patch 2.1.1 -> 2.1.2
miette workspace.dependencies minor 7.2.0 -> 7.4.0
rust minor 1.82.0 -> 1.83.0
syn workspace.dependencies patch 2.0.89 -> 2.0.90
wasm-bindgen (source) workspace.dependencies patch 0.2.95 -> 0.2.97
wasm-bindgen-test dev-dependencies patch 0.3.45 -> 0.3.47

Release Notes

denoland/deno (deno)

v2.1.2

Compare Source

  • feat(unstable): Instrument Deno.serve (#​26964)
  • feat(unstable): Instrument fetch (#​27057)
  • feat(unstable): repurpose --unstable-detect-cjs to attempt loading more
    modules as cjs (#​27094)
  • fix(check): support jsdoc @import tag (#​26991)
  • fix(compile): correct buffered reading of assets and files (#​27008)
  • fix(compile): do not error embedding same symlink via multiple methods
    (#​27015)
  • fix(compile): handle TypeScript file included as asset (#​27032)
  • fix(ext/fetch): don't throw when bodyUsed inspect after upgrade (#​27088)
  • fix(ext/node): tls.connect socket upgrades (#​27125)
  • fix(ext/node): add fs.promises.fstat and FileHandle#stat (#​26719)
  • fix(ext/webgpu): normalize limits to number (#​27072)
  • fix(ext/webgpu): use correct variable name (#​27108)
  • fix(ext/websocket): don't throw exception when sending to closed socket
    (#​26932)
  • fix(fmt): return None if sql fmt result is the same (#​27014)
  • fix(info): resolve bare specifier pointing to workspace member (#​27020)
  • fix(init): always force managed node modules (#​27047)
  • fix(init): support scoped npm packages (#​27128)
  • fix(install): don't re-set up node_modules if running lifecycle script
    (#​26984)
  • fix(lsp): remove stray debug output (#​27010)
  • fix(lsp): support task object notation for tasks request (#​27076)
  • fix(lsp): wasm file import completions (#​27018)
  • fix(node): correct resolution of dynamic import of esm from cjs (#​27071)
  • fix(node/fs): add missing stat path argument validation (#​27086)
  • fix(node/fs): missing uv error context for readFile (#​27011)
  • fix(node/http): casing ignored in ServerResponse.hasHeader() (#​27105)
  • fix(node/timers): error when passing id to clearTimeout/clearInterval (#​27130)
  • fix(runtime/ops): Fix watchfs remove event (#​27041)
  • fix(streams): reject string in ReadableStream.from type (#​25116)
  • fix(task): handle carriage return in task description (#​27099)
  • fix(task): handle multiline descriptions properly (#​27069)
  • fix(task): strip ansi codes and control chars when printing tasks (#​27100)
  • fix(tools/doc): HTML resolve main entrypoint from config file (#​27103)
  • fix: support bun specifiers in JSR publish (#​24588)
  • fix: support non-function exports in Wasm modules (#​26992)
  • perf(compile): read embedded files as static references when UTF-8 and reading
    as strings (#​27033)
  • perf(ext/webstorage): use object wrap for Storage (#​26931)
zkat/miette (miette)

v7.4.0

Compare Source

Features

v7.3.0

Compare Source

Features
Performance
Bug Fixes
Documentation
rust-lang/rust (rust)

v1.83.0

Compare Source

==========================

Language

Compiler

Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

dtolnay/syn (syn)

v2.0.90

Compare Source

  • 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)
rustwasm/wasm-bindgen (wasm-bindgen)

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 - "before 9am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@keithamus keithamus merged commit 17719bf into main Dec 2, 2024
1 of 3 checks passed
@keithamus keithamus deleted the renovate/dependencies branch December 2, 2024 08:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant