rav1e
rav1e copied to clipboard
fix(deps): update all non-major dependencies
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| clap | dependencies | patch | 4.4.17 -> 4.4.18 |
| clap_complete (source) | dependencies | patch | 4.4.7 -> 4.4.10 |
| dav1d-sys | dependencies | minor | 0.6.0 -> 0.7.0 |
| image | dependencies | patch | 0.24.8 -> 0.24.9 |
| nasm-rs | build-dependencies | minor | 0.2 -> 0.3 |
| petarpetrovt/setup-sde | action | minor | v2.3 -> v2.4 |
| wasm-bindgen (source) | dependencies | patch | 0.2.90 -> 0.2.92 |
Release Notes
clap-rs/clap (clap)
v4.4.18
Fixes
- (error) When lacking
usagefeature, ensure the list of required arguments is unique
clap-rs/clap (clap_complete)
v4.4.10
Fixes
- (bash) Allow completing filenames with spaces
v4.4.9
Features
- (bash) Add support file
ValueHint::FilePath - (bash) Add support file
ValueHint::DirPath - (bash) Don't add space for
ValueHint::Other
v4.4.8
Fixes
- (bash) be consistent in identifiers when custom bin names are used
image-rs/image (image)
v0.24.9
Structural changes:
- Relicense to MIT OR Apache-2.0
- Increase MSRV 1.63.0
New features:
- Support limits in PNG animation decoding.
- Added offsets to SubImage to compensate for the now-deprecated bounds call from GenericImageView.
Bug fixes:
- Correct limit tests for TIFF.
- Avoid overflow in gif::Decoder::buffer_size.
- Return error instead of using asssertion for Avif decoder unsupported or invalid bit depth.
rustwasm/wasm-bindgen (wasm-bindgen)
v0.2.92
Released 2024-03-04
Added
-
Add bindings for
RTCPeerConnectionIceErrorEvent. #3835 -
Add bindings for
CanvasState.reset(), affectingCanvasRenderingContext2DandOffscreenCanvasRenderingContext2D. #3844 -
Add
TryFromimplementations forNumber, that allow losslessly converting from 64- and 128-bits numbers. #3847 -
Add support for
Option<*const T>,Option<*mut T>andNonNull<T>. #3852 #3857 -
Allow overriding the URL used for headless tests by setting
WASM_BINDGEN_TEST_ADDRESS. #3861
Fixed
-
Make .wasm output deterministic when using
--reference-types. #3851 -
Don't allow invalid Unicode scalar values in
char. #3866
v0.2.91
Released 2024-02-06
Added
-
Added bindings for the
RTCRtpTransceiver.setCodecPreferences()and unstable bindings for theRTCRtpEncodingParameters.scalabilityMode. #3828 -
Add unstable bindings for the FileSystemAccess API #3810
-
Added support for running tests in shared and service workers with
wasm_bindgen_test_configure!run_in_shared_workerandrun_in_service_worker. #3804 -
Accept the
--skipflag withwasm-bindgen-test-runner. #3803 -
Introduce environment variable
WASM_BINDGEN_TEST_NO_ORIGIN_ISOLATIONto disable origin isolation forwasm-bindgen-test-runner. #3807 -
Add bindings for
USBDevice.forget(). #3821
Changed
-
Stabilize
ClipboardEvent. #3791 -
Use immutable buffers in
SubtleCryptomethods. #3797 -
Deprecate
wasm_bindgen_test_configure!srun_in_workerin favor ofrun_in_dedicated_worker. #3804 -
Updated the WebGPU WebIDL to the current draft as of 2024-01-30. Note that this retains the previous update's workaround for
GPUPipelineError, and holds back an update to thebufferargument of theGPUQueue.{writeBuffer,writeTexture}methods. #3816 -
Depreate
--weak-refsandWASM_BINDGEN_WEAKREFin favor of automatic run-time detection. #3822
Fixed
-
Fixed UB when freeing strings received from JS if not using the default allocator. #3808
-
Fixed temporary folder detection by
wasm-bindgen-test-runneron MacOS. #3817 -
Fixed using
#[wasm_bindgen(js_name = default)]with#[wasm_bindgen(module = ...)]. #3823 -
Fixed nighly build of
wasm-bindgen-futures. #3827
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 88.52%. Comparing base (
3c3a26f) to head (bb00df3). Report is 23 commits behind head on master.
:exclamation: Current head bb00df3 differs from pull request most recent head c3c48e8
Please upload reports for the commit c3c48e8 to get more accurate results.
Additional details and impacted files
@@ Coverage Diff @@
## master #3342 +/- ##
=======================================
Coverage 88.52% 88.52%
=======================================
Files 89 89
Lines 28323 28323
=======================================
Hits 25074 25074
Misses 3249 3249
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Looks like clap 4.5 is wanting rustc 1.74. Didn't we talk about potentially bumping the rustc version in another PR? That may have been on another repo though, so I could be wrong. Rust 1.74 is currently 15 months old.
Looks like clap 4.5 is wanting rustc 1.74. [...] Rust 1.74 is currently 15 months old.
Rust 1.74 released in November 2023, so it's only ~3 months old at this point.
FYI: 1.70 (the current MSRV) is from June 2023
Oh, I can't read apparently. Somehow I thought it was 2022. Well, let me see if I can adjust this thing to exclude clap 4.5 for now.
This is cursed. It's still trying to pull clap_derive 4.5.0 even though we've told it not to. Weird.
Probably because Renovate only updates the Cargo.toml. Cargo.lock is now outdated and needs to be updated when building, leading to pulling the newest compatible version (4.5). Maybe --locked can help in CI builds? Not quite sure