Skip to content

Update all patch updates#8085

Merged
robert3005 merged 1 commit into
developfrom
renovate/all-patch-updates
May 26, 2026
Merged

Update all patch updates#8085
robert3005 merged 1 commit into
developfrom
renovate/all-patch-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 25, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
anthropics/claude-code-action action patch v1.0.123v1.0.133 age confidence
crate-ci/typos action patch v1.46.2v1.46.3 age confidence
jiff workspace.dependencies patch 0.2.240.2.27 age confidence
lance dependencies patch 6.0.06.0.1 age confidence
lance-encoding dependencies patch 6.0.06.0.1 age confidence
log workspace.dependencies patch 0.4.290.4.30 age confidence
mimalloc workspace.dependencies patch 0.1.500.1.52 age confidence
release-drafter/release-drafter action patch v7.3.0v7.3.1 age confidence
reqwest workspace.dependencies patch 0.13.30.13.4 age confidence
serde_json workspace.dependencies patch 1.0.1491.0.150 age confidence
similar workspace.dependencies patch 3.1.03.1.1 age confidence
tar workspace.dependencies patch 0.4.450.4.46 age confidence
tower-http dependencies patch 0.6.100.6.11 age confidence
vite (source) devDependencies patch 8.0.138.0.14 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

anthropics/claude-code-action (anthropics/claude-code-action)

v1.0.133

Compare Source

What's Changed

Full Changelog: anthropics/claude-code-action@v1...v1.0.133

v1.0.132

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.132

v1.0.131

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.131

v1.0.130

Compare Source

What's Changed

Full Changelog: anthropics/claude-code-action@v1...v1.0.130

v1.0.129

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.129

v1.0.128

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.128

v1.0.127

Compare Source

What's Changed

Full Changelog: anthropics/claude-code-action@v1...v1.0.127

v1.0.126

Compare Source

Full Changelog: anthropics/claude-code-action@v1...v1.0.126

v1.0.125

Compare Source

What's Changed

Full Changelog: anthropics/claude-code-action@v1...v1.0.125

v1.0.124

Compare Source

What's Changed
New Contributors

Full Changelog: anthropics/claude-code-action@v1...v1.0.124

crate-ci/typos (crate-ci/typos)

v1.46.3

Compare Source

[1.46.3] - 2026-05-23

Fixes
  • Don't correct to sequentials
  • Don't correct to subdolder
BurntSushi/jiff (jiff)

v0.2.27

===================
This is a small release with a bug fix for build errors on Windows for very old
versions of Rust.

Bug fixes:

  • #​566:
    Fix build error on Windows for very old versions of Rust (e.g., 1.71).

v0.2.26

Compare Source

===================
This release has a couple enhancements.

Firstly, Jiff now uses windows-link for calling FFI routines on Windows
instead of windows-sys. Using windows-link means less churn and fewer
duplicates in the dependency graph.

Secondly, a new jiff-sqlx 0.2.0 release has been put out to support
sqlx 0.9.0.

Enhancements:

  • #​538:
    Replace use of windows-sys with windows-link and inline bindings.
  • #​561:
    Update jiff-sqlx to use sqlx 0.9.0 and release jiff-sqlx 0.2.0.

Bug fixes:

  • #​548:
    Absolutetize incorrect relative size terms in the documentation of RoundMode.

v0.2.25

Compare Source

===================
This release updates Jiff's bundled copy of the [IANA Time Zone Database]
to 2026b. See the 2026b release announcement for more details.

lance-format/lance (lance)

v6.0.1

Compare Source

What's Changed
Bug Fixes 🐛

Full Changelog: lance-format/lance@v6.0.0...v6.0.1

rust-lang/log (log)

v0.4.30

Compare Source

What's Changed
New Contributors

Full Changelog: rust-lang/log@0.4.29...0.4.30

Notable Changes
  • MSRV is bumped to 1.71.0 in #​723
purpleprotocol/mimalloc_rust (mimalloc)

v0.1.52: Version 0.1.52

Compare Source

Changes
  • Expose mi_stats_get_json().
  • Fix ARM compilation.

v0.1.51: Version 0.1.51

Compare Source

Changes
  • Mimalloc bumped to v3.3.2 and v2.3.2.
  • Compile with msvc on windows.
release-drafter/release-drafter (release-drafter/release-drafter)

v7.3.1

Compare Source

What's Changed

Bug Fixes

Maintenance

Dependency Updates

8 changes

Full Changelog: release-drafter/release-drafter@v7.3.0...v7.3.1

seanmonstar/reqwest (reqwest)

v0.13.4

Compare Source

  • Add ClientBuilder::tls_sslkeylogfile(bool) option to allow using the related environment variable.
  • Add ClientBuilder::http2_keep_alive_* options for the blocking client.
  • Add TLS 1.3 support when using native-tls backend.
  • Fix redirect handling to strip sensitive headers when the scheme changes.
  • Fix HTTP/3 happy-eyeball connection creation.
  • Upgrade hickory-resolver to 0.26.
serde-rs/json (serde_json)

v1.0.150

Compare Source

mitsuhiko/similar (similar)

v3.1.1

Compare Source

  • Fixed DiffOp cursor positions when compacting adjacent inserts/deletes and
    in Algorithm::Histogram full-replacement output, ensuring operations form
    contiguous ranges. #​95
  • Renamed sample diff input files to a lexicographic
    caseNN.01.before_* / caseNN.02.after_* scheme.
composefs/tar-rs (tar)

v0.4.46

Compare Source

Security

See also GHSA-3cv2-h65g-fgmm

Other changes

New Contributors

Full Changelog: composefs/tar-rs@0.4.45...0.4.46

tower-rs/tower-http (tower-http)

v0.6.11

Compare Source

Added

  • set-header: add SetMultipleResponseHeadersLayer and
    SetMultipleResponseHeader for setting multiple response headers at once.
    Supports overriding, appending, and if_not_present modes. Header
    values can be fixed or computed dynamically via closures (#​672)

    use http::{Response, header::{self, HeaderValue}};
    use http_body::Body as _;
    use tower_http::set_header::response::SetMultipleResponseHeadersLayer;
    
    let layer = SetMultipleResponseHeadersLayer::overriding(vec![
        (header::X_FRAME_OPTIONS, HeaderValue::from_static("DENY")).into(),
        (header::CONTENT_LENGTH, |res: &Response<MyBody>| {
            res.body().size_hint().exact()
                .map(|size| HeaderValue::from_str(&size.to_string()).unwrap())
        }).into(),
    ]);
  • set-header: add SetMultipleRequestHeadersLayer and
    SetMultipleRequestHeaders for setting multiple request headers at once,
    mirroring the response-side API (#​677)

  • classify: add From<i32> and From<NonZeroI32> impls for GrpcCode.
    Unrecognized status codes map to GrpcCode::Unknown (#​506)

Changed

  • compression: compress application/grpc-web responses. Previously all
    application/grpc* content types were excluded from compression; now only
    application/grpc (non-web) is excluded (#​408)

Fixed

  • fs: fix ServeDir returning 500 instead of 405 for non-GET/HEAD requests
    when call_fallback_on_method_not_allowed is enabled but no fallback service
    is configured (#​587)
  • fs: remove duplicate cfg attribute on is_reserved_dos_name (#​675)

All PRs

New Contributors

Full Changelog: tower-rs/tower-http@tower-http-0.6.10...tower-http-0.6.11

vitejs/vite (vite)

v8.0.14

Compare Source

Features
Bug Fixes
Miscellaneous Chores
  • deps: update rolldown-related dependencies (#​22470) (7cb728e)
  • remove irrelevant commits from changelog (2c69495)
Code Refactoring
Tests

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • 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.

@renovate renovate Bot added the changelog/chore A trivial change label May 25, 2026
@codspeed-hq
Copy link
Copy Markdown

codspeed-hq Bot commented May 25, 2026

Merging this PR will degrade performance by 12.98%

⚠️ Unknown Walltime execution environment detected

Using the Walltime instrument on standard Hosted Runners will lead to inconsistent data.

For the most accurate results, we recommend using CodSpeed Macro Runners: bare-metal machines fine-tuned for performance measurement consistency.

❌ 5 regressed benchmarks
✅ 1246 untouched benchmarks

Warning

Please fix the performance issues or acknowledge them on CodSpeed.

Performance Changes

Mode Benchmark BASE HEAD Efficiency
Simulation new_alp_prim_test_between[f32, 16384] 103.7 µs 118.5 µs -12.48%
Simulation new_alp_prim_test_between[f32, 32768] 153.1 µs 182.3 µs -16%
Simulation true_count_arrow_buffer[1024] 911.4 ns 1,028.1 ns -11.35%
Simulation true_count_arrow_buffer[2048] 981.7 ns 1,098.3 ns -10.62%
Simulation true_count_arrow_buffer[128] 696.7 ns 813.3 ns -14.34%

Tip

Investigate this regression by commenting @codspeedbot fix this regression on this PR, or directly use the CodSpeed MCP with your agent.


Comparing renovate/all-patch-updates (3aebdaf) with develop (f900433)

Open in CodSpeed

@robert3005 robert3005 enabled auto-merge (squash) May 26, 2026 11:16
@renovate renovate Bot force-pushed the renovate/all-patch-updates branch from 5550327 to 3aebdaf Compare May 26, 2026 15:03
@robert3005 robert3005 merged commit 581e9dd into develop May 26, 2026
60 checks passed
@robert3005 robert3005 deleted the renovate/all-patch-updates branch May 26, 2026 15:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

changelog/chore A trivial change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant