Skip to content

chore(deps): bump the cargo group across 1 directory with 2 updates - #1068

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/src/sliceview/jxl/cargo-cec5368467
Open

chore(deps): bump the cargo group across 1 directory with 2 updates#1068
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/src/sliceview/jxl/cargo-cec5368467

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 7, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo group with 1 update in the /src/sliceview/jxl directory: jxl-oxide.

Updates jxl-oxide from 0.11.4 to 0.12.6

Release notes

Sourced from jxl-oxide's releases.

jxl-oxide v0.12.6

Version 0.12.6 of jxl-oxide has a few security bugfixes, one of which fixes buffer overflow vulnerability in 32-bit platforms. Users are recommended to upgrade, especially if targeting 32-bit platforms.

Fixed


New Contributors

Full Changelog: tirr-c/jxl-oxide@0.12.5...0.12.6

jxl-oxide v0.12.5

Version 0.12.5 of jxl-oxide adds support for image decode hook registration.

Added

  • jxl-oxide: Add image crate decoding hook (#480).

Full Changelog: tirr-c/jxl-oxide@0.12.4...0.12.5

jxl-oxide v0.12.4

Version 0.12.4 of jxl-oxide fixes a bug that some images encoded with newer libjxl don't decode correctly.

Fixed

  • jxl-coding: Disable single token fast path if LZ77 is enabled (#477).

Full Changelog: tirr-c/jxl-oxide@0.12.3...0.12.4

jxl-oxide v0.12.3

Version 0.12.3 of jxl-oxide is mainly a bugfix release.

Added

  • jxl-oxide: Add JxlImageBuilder::force_wide_buffers() (#469).

Fixed

  • jxl-oxide: Fix image crate integration failing to load image with reference frame (#474).
  • jxl-render: Better partial rendering of LF frame with alpha (#466).

New Contributors

... (truncated)

Changelog

Sourced from jxl-oxide's changelog.

[0.12.6] - 2026-05-29

Fixed

  • jxl-grid: Fix multiple integer overflows in jxl-grid (GHSA-5pmv-rx8r-wmv5).
  • jxl-modular: Fix integer overflow while decoding Modular image with MA table node (GHSA-2v8p-fqpx-2q3w).
  • jxl-oxide: Fix a soundness issue in jxl-oxide framebuffer (GHSA-66m8-c62j-h6v5).
  • jxl-grid: Prevent downstream crates from implementing SimdVector (#494).
  • jxl-render: Fix f32::clamp panic with NaN's in upsampling (#485).

[0.12.5] - 2025-09-30

Added

  • jxl-oxide: Add image crate decoding hook (#480).

[0.12.4] - 2025-08-17

Fixed

  • jxl-coding: Disable single token fast path if LZ77 is enabled (#477).

[0.12.3] - 2025-08-02

Added

  • jxl-oxide: Add JxlImageBuilder::force_wide_buffers() (#469).

Fixed

  • jxl-oxide: Fix image crate integration failing to load image with reference frame (#474).
  • jxl-render: Better partial rendering of LF frame with alpha (#466).

[0.12.2] - 2025-05-13

Added

  • jxl-oxide: Add JxlImage::current_image_region (#462).
  • jxl-oxide-wasm: Add JxlImage#renderingRegion property (#462).

Fixed

  • jxl-oxide-wasm: Fix HDR images not being encoded to 16-bit PNG (#461).

[0.12.1] - 2025-05-10

Fixed

  • jxl-render: Fix blending of partial frames (#457).
  • jxl-frame: Allow partial GlobalModular in All group (#458).

[0.12.0] - 2025-04-27

Added

  • jxl-oxide: Add moxcms integration for external CMS (#435).
  • jxl-oxide-cli: Add --color option to control whether it formats console output (#452).

... (truncated)

Commits

Updates jxl-modular from 0.10.0 to 0.11.3

Release notes

Sourced from jxl-modular's releases.

jxl-oxide v0.11.3

Version 0.11.3 of jxl-oxide fixes subsampled JPEG reconstruction, and adds width and height property to WebAssembly interface.

Added

  • jxl-oxide-wasm: Add JxlImage#width and JxlImage#height (#426). (by @​printfn)

Fixed

  • jxl-jbr: Fix dimension aligning of subsampled JPEG (#427).

Full Changelog: tirr-c/jxl-oxide@0.11.2...0.11.3

jxl-oxide v0.11.2

Version 0.11.2 of jxl-oxide fixes stack overflows when using multiple Rayon thread pools, by adding an option to use global Rayon pool and making it default (which is desirable most of the time).

Technically, this is a breaking change behavior-wise. However, existing code will still compile (API itself doesn't have breaking changes) and I consider the original behavior a bug, so I'm making a patch release.

Added

  • jxl-threadpool: Add rayon_global (#420).

Changed

  • jxl-oxide: Default thread pool now uses global Rayon pool, instead of creating new pool (#420).

Full Changelog: tirr-c/jxl-oxide@0.11.1...0.11.2

jxl-oxide v0.11.1

Version 0.11.1 of jxl-oxide contains bugfixes around images with higher LF frame level (lf_level >= 2).

Fixed

  • jxl-render: Fix incorrect upsampling factor when using higher-level LF frame (#412).
  • jxl-render: Fix edge condition with higher-level LF frame (#413).

Full Changelog: tirr-c/jxl-oxide@0.11.0...0.11.1

jxl-oxide v0.11.0

Version 0.11.0 of jxl-oxide comes with some bugfixes, optimization around noise features, Exif and XMP metadata extraction, and most importantly, JPEG bitstream reconstruction.

JPEG bitstream reconstruction

jxl-oxide can now reconstruct original JPEG file from losslessly recompressed JPEG XL file. By default jxl-oxide-cli will try to reconstruct JPEG if output file path is given and its extension is jpg or jpeg.

$ jxl-oxide recompressed.jxl -o out.jpg
2024-12-28T07:08:08.758724Z  INFO jxl_oxide_cli::decode: Reconstructing to JPEG
2024-12-28T07:08:08.863044Z  INFO jxl_oxide_cli::decode: Took 104.27 ms (35.36 MP/s)
$ jxl-oxide recompressed.jxl -o out.png
2024-12-28T07:08:14.769000Z  INFO jxl_oxide_cli::decode: Image dimension: 2560x1440
2024-12-28T07:08:14.788709Z  INFO jxl_oxide_cli::decode: Took 19.62 ms (187.89 MP/s)

... (truncated)

Changelog

Sourced from jxl-modular's changelog.

[0.11.3] - 2025-03-08

Added

  • jxl-oxide-wasm: Add JxlImage#width and JxlImage#height (#426).

Fixed

  • jxl-jbr: Fix dimension aligning of subsampled JPEG (#427).

[0.11.2] - 2025-02-19

Added

  • jxl-threadpool: Add rayon_global (#420).

Changed

  • jxl-oxide: Default thread pool now uses global Rayon pool, instead of creating new pool (#420).

[0.11.1] - 2025-01-25

Fixed

  • jxl-render: Fix incorrect upsampling factor when using higher-level LF frame (#412).
  • jxl-render: Fix edge condition with higher-level LF frame (#413).

[0.11.0] - 2024-12-28

Added

  • Implement JPEG bitstream reconstruction (#390).
  • jxl-oxide: Extract (potentially Brotli-compressed) Exif metadata (#389).

Fixed

  • jxl-render: Fix panic in alpha blending without alpha channel (#403).

[0.10.2] - 2024-12-07

Fixed

  • jxl-modular: Check MA tree depth limit while decoding (#391).
  • jxl-frame: Track group buffer allocation (#393).

[0.10.1] - 2024-11-10

Changed

  • jxl-oxide: Enable image feature in Docs.rs (#382).
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the cargo group with 1 update in the /src/sliceview/jxl directory: [jxl-oxide](https://github.com/tirr-c/jxl-oxide).


Updates `jxl-oxide` from 0.11.4 to 0.12.6
- [Release notes](https://github.com/tirr-c/jxl-oxide/releases)
- [Changelog](https://github.com/tirr-c/jxl-oxide/blob/main/CHANGELOG.md)
- [Commits](tirr-c/jxl-oxide@0.11.4...0.12.6)

Updates `jxl-modular` from 0.10.0 to 0.11.3
- [Release notes](https://github.com/tirr-c/jxl-oxide/releases)
- [Changelog](https://github.com/tirr-c/jxl-oxide/blob/main/CHANGELOG.md)
- [Commits](tirr-c/jxl-oxide@0.10.0...0.11.3)

---
updated-dependencies:
- dependency-name: jxl-oxide
  dependency-version: 0.12.6
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: jxl-modular
  dependency-version: 0.11.3
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants