Skip to content

Update crates#5078

Merged
hurl-bot merged 1 commit into
masterfrom
bot/update-crates
Jun 9, 2026
Merged

Update crates#5078
hurl-bot merged 1 commit into
masterfrom
bot/update-crates

Conversation

@hurl-bot

@hurl-bot hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator

No description provided.

@hurl-bot

hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

Crates updates for packages/hurl/Cargo.toml


Crates updates for packages/hurlfmt/Cargo.toml


Crates updates for packages/hurl_core/Cargo.toml


Crates updated for Cargo.lock

  • bitflags 2.12.1 updated to 2.13.0

    https://github.com/bitflags/bitflags

    ## What's Changed
    * add MyFlags::Abc::iter_equal_names() method by @ssrlive in https://github.com/bitflags/bitflags/pull/489
    
    
    **Full Changelog**: https://github.com/bitflags/bitflags/compare/2.12.1...2.13.0
    
  • js-sys 0.3.99 updated to 0.3.100

    https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys

  • wasm-bindgen 0.2.122 updated to 0.2.123

    https://github.com/wasm-bindgen/wasm-bindgen

    ### Added
    
    * Added the `maxAge` attribute to the `CookieInit` dictionary in `web-sys`,
      matching the current Cookie Store API specification.
      [#5169](https://github.com/wasm-bindgen/wasm-bindgen/pull/5169)
    
    * The js-sys futures codegen opt-in can now also be enabled via the
      `WASM_BINDGEN_USE_JS_SYS=1` environment variable, in addition to
      `--cfg=wasm_bindgen_use_js_sys`. This works on stable when `--target`
      is in use, where Cargo does not propagate the cfg to host proc-macros.
      [#5164](https://github.com/wasm-bindgen/wasm-bindgen/pull/5164)
    
    ### Changed
    
    * `JsOption<T>` now treats only `undefined` as empty, aligning it with
      TypeScript's strict `T | undefined` semantics and with `Option<T>`'s wire
      shape (`None` ↔ `undefined`). Previously `is_empty`, `as_option`,
      `into_option`, `unwrap`, `expect`, `unwrap_or_default`, and
      `unwrap_or_else` treated both `null` and `undefined` as absent; JS `null`
      is now a distinct present value. The `impl<T> UpcastFrom<Null> for
      JsOption<T>` is removed (`Undefined` still models absence), and the
      `Debug`/`Display` absent placeholder changed from `"null"` to
      `"undefined"`. Code relying on `null → None` should return `undefined`
      from the JS side, or check explicitly with
      `val.as_option().filter(|v| !v.is_null())`.
      [#5170](https://github.com/wasm-bindgen/wasm-bindgen/pull/5170)
    
    ### Fixed
    
    * Removed invalid `js_sys::Array<T>` to `js_sys::ArrayTuple<(...)>` upcasts.
      `ArrayTuple` encodes a fixed tuple arity, while a plain JavaScript array does
      not prove that arity statically.
    
    * Fixed incorrect variance in `&mut` reference upcasting. `&mut T` upcasts
      were covariant in the pointee, so a `&mut T` could be widened to a `&mut`
      of a supertype and used to write back a value the original type would not
      accept, leaving a reference whose static type no longer matches the value
      it points to. Mutable references are now *invariant* in their pointee:
      `&mut T` only upcasts to `&mut Target` when both `Target: UpcastFrom<T>`
      and `T: UpcastFrom<Target>` hold. This rejects the invalid widening but is
      a breaking change for callers that relied on widening `&mut` references.
      [#5176](https://github.com/wasm-bindgen/wasm-bindgen/issues/5176)
    
    * Fixed WASI targets (`wasm32-wasip1`/`wasm32-wasip2`) emitting unresolved
      `__wbindgen_placeholder__` imports, which broke component linking. The
      codegen and runtime gates now exclude `target_os = "wasi"` (restoring the
      pre-0.2.115 stub behavior), including the `panic = "unwind"` paths in
      `wasm-bindgen-futures`.
      [#5175](https://github.com/wasm-bindgen/wasm-bindgen/pull/5175)
    
    * Fixed a panic ("Unhandled load width 8") in the descriptor interpreter when
      processing `-Cinstrument-coverage`-instrumented modules, unblocking
      `cargo llvm-cov --target wasm32-unknown-unknown` for crates whose describe
      helpers get instrumented.
      [#5179](https://github.com/wasm-bindgen/wasm-bindgen/pull/5179)
    
    * Fixed `main` silently never running on wasm64 for bin crates.
      [#5181](https://github.com/wasm-bindgen/wasm-bindgen/pull/5181)
    
  • wasm-bindgen-macro 0.2.122 updated to 0.2.123

    https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro

  • wasm-bindgen-macro-support 0.2.122 updated to 0.2.123

    https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support

  • wasm-bindgen-shared 0.2.122 updated to 0.2.123

    https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared


Crates added for Cargo.lock


Crates removed for Cargo.lock

@hurl-bot hurl-bot added bot bot dependencies Pull requests that update a dependency file labels Jun 9, 2026
@jcamiel

jcamiel commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator

/accept

@hurl-bot

hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

🕗 /accept is running, please wait for completion.

@hurl-bot

hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

🔨 Auto rebase from Orange-OpenSource/hurl/master succeeds, Orange-OpenSource/hurl/bot/update-crates now embeds these commits:

  • bce3980 Update CHANGELOG.
  • 23ed61e Fix misleading error message for not-equal predicate

@hurl-bot

hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

🕗 /accept is still running, please wait for completion.

@hurl-bot hurl-bot force-pushed the bot/update-crates branch from c6026f0 to 2da3cd4 Compare June 9, 2026 11:54
@hurl-bot

hurl-bot commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

✅ Pull request merged with fast forward by jcamiel..

# List of commits merged from Orange-OpenSource/hurl/bot/update-crates branch into Orange-OpenSource/hurl/master branch:

@hurl-bot hurl-bot merged commit 2da3cd4 into master Jun 9, 2026
25 checks passed
@hurl-bot hurl-bot deleted the bot/update-crates branch June 9, 2026 12:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot bot dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants