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 all non-major dependencies #3385

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 10, 2024

This PR contains the following updates:

Package Type Update Change
bitstream-io dependencies minor ~2.3.0 -> ~2.6.0
cc build-dependencies patch 1.2.5 -> 1.2.9
itertools dependencies minor 0.13 -> 0.14
log dependencies patch 0.4.22 -> 0.4.25
petarpetrovt/setup-sde action minor v2.3 -> v2.4
serde (source) dependencies patch 1.0.216 -> 1.0.217
thiserror dependencies patch 2.0.9 -> 2.0.11
wasm-bindgen (source) dependencies patch 0.2.99 -> 0.2.100

Release Notes

tuffy/bitstream-io (bitstream-io)

v2.6.0

Compare Source

v2.5.3

Compare Source

v2.5.2

Compare Source

v2.5.1

Compare Source

v2.5.0

Compare Source

v2.4.2

Compare Source

v2.4.1

Compare Source

v2.4.0

Compare Source

rust-lang/cc-rs (cc)

v1.2.9

Compare Source

Other
  • Don't pass inherited PGO flags to GNU compilers (#​1363)
  • Adjusted zig cc judgment and avoided zigbuild errors(#​1360) (#​1361)
  • Fix compilation on macOS using clang and fix compilation using zig-cc (#​1364)

v1.2.8

Compare Source

Other
  • Add is_like_clang_cl() getter (#​1357)
  • Fix clippy error in lib.rs (#​1356)
  • Regenerate target info (#​1352)
  • Fix compiler family detection issue with clang-cl on macOS (#​1328)
  • Update windows-bindgen dependency (#​1347)
  • Fix clippy warnings (#​1346)

v1.2.7

Compare Source

Other
  • Regenerate target info (#​1342)
  • Document new supported architecture names in windows::find
  • Make is_flag_supported_inner take an &Tool (#​1337)
  • Fix is_flag_supported on msvc (#​1336)
  • Allow using Visual Studio target names in find_tool (#​1335)

v1.2.6

Compare Source

Other
  • Don't inherit the /Oy flag for 64-bit targets (#​1330)
rust-itertools/itertools (itertools)

v0.14.0

Compare Source

Breaking
  • Increased MSRV to 1.63.0 (#​960)
  • Removed generic parameter from cons_tuples (#​988)
Added
  • Added array_combinations (#​991)
  • Added k_smallest_relaxed and variants (#​925)
  • Added next_array and collect_array (#​560)
  • Implemented DoubleEndedIterator for FilterOk (#​948)
  • Implemented DoubleEndedIterator for FilterMapOk (#​950)
Changed
  • Allow Q: ?Sized in Itertools::contains (#​971)
  • Improved hygiene of chain! (#​943)
  • Improved into_group_map_by documentation (#​1000)
  • Improved tree_reduce documentation (#​955)
  • Improved discoverability of merge_join_by (#​966)
  • Improved discoverability of take_while_inclusive (#​972)
  • Improved documentation of find_or_last and find_or_first (#​984)
  • Prevented exponentially large type sizes in tuple_combinations (#​945)
  • Added track_caller attr for asser_equal (#​976)
Notable Internal Changes
  • Fixed clippy lints (#​956, #​987, #​1008)
  • Addressed warnings within doctests (#​964)
  • CI: Run most tests with miri (#​961)
  • CI: Speed up "cargo-semver-checks" action (#​938)
  • Changed an instance of default_features in Cargo.toml to default-features (#​985)
rust-lang/log (log)

v0.4.25

Compare Source

v0.4.24

Compare Source

v0.4.23

Compare Source

petarpetrovt/setup-sde (petarpetrovt/setup-sde)

v2.4

Compare Source

  • Add support for Intel SDE 9.33.0.
serde-rs/serde (serde)

v1.0.217

Compare Source

  • Support serializing externally tagged unit variant inside flattened field (#​2786, thanks @​Mingun)
dtolnay/thiserror (thiserror)

v2.0.11

Compare Source

v2.0.10

Compare Source

  • Support errors containing a generic type parameter's associated type in a field (#​408)
rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.100

Compare Source

Released 2025-01-12

Added
  • Add attributes to overwrite return (``unchecked_return_type) and parameter types (unchecked_param_type), descriptions (return_descriptionandparam_description) as well as parameter names (js_name`) for exported functions and methods. See the guide for more details.
    #​4394

  • Add a copy_to_uninit() method to all TypedArrays. It takes &mut [MaybeUninit<T>] and returns &mut [T].
    #​4340

  • Add test coverage support for Node.js.
    #​4348

  • Support importing memory and using wasm_bindgen::module() in Node.js.
    #​4349

  • Add --list, --ignored, --exact and --nocapture to wasm-bindgen-test-runner, analogous to cargo test.
    #​4356

  • Add bindings to Date.to_locale_time_string_with_options.
    #​4384

  • #[wasm_bindgen] now correctly applies #[cfg(...)]s in structs.
    #​4351

Changed
  • Optional parameters are now typed as T | undefined | null to reflect the actual JS behavior.
    #​4188

  • Adding getter, setter, and constructor methods to enums now results in a compiler error. This was previously erroneously allowed and resulted in invalid JS code gen.
    #​4278

  • Handle stuck and failed WebDriver processes when re-trying to start them.
    #​4340

  • Align test output closer to native cargo test.
    #​4358

  • Error if URL in <WEBDRIVER>_REMOTE can't be parsed instead of just ignoring it.
    #​4362

  • Remove WASM_BINDGEN_THREADS_MAX_MEMORY and WASM_BINDGEN_THREADS_STACK_SIZE. The maximum memory size can be set via -Clink-arg=--max-memory=<size>. The stack size of a thread can be set when initializing the thread via the default function.
    #​4363

  • console.*() calls in tests are now always intercepted by default. To show them use --nocapture. When shown they are always printed in-place instead of after test results, analogous to cargo test.
    #​4356

Fixed
  • Fixed using JavaScript keyword as identifiers not being handled correctly.
    #​4329

    • Using JS keywords as struct and enum names will now error at compile time, instead of causing invalid JS code gen.
    • Using JS keywords that are not valid to call or access properties on will now error at compile time, instead of causing invalid JS code gen if used as:
      1. The first part of a js_namespace on imports.
      2. The name of an imported type or constant if the type or constant does not have a js_namespace or module attribute.
      3. The name of an imported function if the function is not a method and does not have a js_namespace or module attribute.
    • Using JS keywords on imports in places other than the above will no longer cause the keywords to be escaped as _{keyword}.
  • Fixed passing large arrays into Rust failing because of internal memory allocations invalidating the memory buffer.
    #​4353

  • Pass along an ignore attribute to unsupported tests.
    #​4360

  • Use OS provided temporary directory for tests instead of Cargo's target directory.
    #​4361

  • Error if URL in <WEBDRIVER>_REMOTE can't be parsed.
    #​4362

  • Internal functions are now removed instead of invalidly imported if they are unused.
    #​4366

  • Fixed no_std support for all APIs in web-sys.
    #​4378

  • Prevent generating duplicate exports for closure conversions.
    #​4380



Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), 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 force-pushed the renovate/all-minor-patch branch from 0414e3f to b086379 Compare June 12, 2024 10:44
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jun 12, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 435d3ed to fab576a Compare June 20, 2024 13:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 378e2a2 to af1ccb7 Compare June 30, 2024 07:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d0cf432 to e0a5ac7 Compare July 7, 2024 18:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 5c0de41 to 861e0a5 Compare July 15, 2024 04:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 82776ca to f044489 Compare July 19, 2024 11:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from cb809d2 to 8f58a2e Compare November 30, 2024 11:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 440728b to 458ed39 Compare December 13, 2024 12:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4213078 to 59ef284 Compare December 19, 2024 13:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 20d5e43 to e378f5d Compare December 31, 2024 13:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from fc4431e to 566e066 Compare January 12, 2025 10:50
Copy link
Contributor Author

renovate bot commented Jan 12, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace
    Updating crates.io index
error: failed to select a version for `bitstream-io`.
    ... required by package `ivf v0.1.3 (/tmp/renovate/repos/github/xiph/rav1e/ivf)`
    ... which satisfies path dependency `ivf` (locked to 0.1.3) of package `rav1e v0.7.0 (/tmp/renovate/repos/github/xiph/rav1e)`
versions that meet the requirements `~2.3.0` are: 2.3.0

all possible versions conflict with previously selected packages.

  previously selected package `bitstream-io v2.6.0`
    ... which satisfies dependency `bitstream-io = "~2.6.0"` of package `rav1e v0.7.0 (/tmp/renovate/repos/github/xiph/rav1e)`

failed to select a version for `bitstream-io` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 566e066 to 5bb4663 Compare January 13, 2025 02:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5bb4663 to 9990446 Compare January 14, 2025 15:48
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.

0 participants