Commit 1e7ad82
authored
Update all patch updates (#7862)
This PR contains the following updates:
| Package | Type | Update | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|---|---|
| [cc](https://redirect.github.com/rust-lang/cc-rs) |
workspace.dependencies | patch | `1.2.61` → `1.2.62` |

|

|
| [crate-ci/typos](https://redirect.github.com/crate-ci/typos) | action
| patch | `v1.46.0` → `v1.46.1` |

|

|
| [hashbrown](https://redirect.github.com/rust-lang/hashbrown) |
workspace.dependencies | patch | `0.17.0` → `0.17.1` |

|

|
| [pco](https://redirect.github.com/pcodec/pcodec) |
workspace.dependencies | patch | `1.0.1` → `1.0.2` |

|

|
| [tokio](https://tokio.rs)
([source](https://redirect.github.com/tokio-rs/tokio)) |
workspace.dependencies | patch | `1.52.2` → `1.52.3` |

|

|
| [tower-http](https://redirect.github.com/tower-rs/tower-http) |
dependencies | patch | `0.6.8` → `0.6.10` |

|

|
| [vite](https://vite.dev)
([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
| devDependencies | patch | [`8.0.10` →
`8.0.12`](https://renovatebot.com/diffs/npm/vite/8.0.10/8.0.12) |

|

|
---
> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/357) for more information.
---
### Release Notes
<details>
<summary>rust-lang/cc-rs (cc)</summary>
###
[`v1.2.62`](https://redirect.github.com/rust-lang/cc-rs/blob/HEAD/CHANGELOG.md#1262---2026-05-08)
[Compare
Source](https://redirect.github.com/rust-lang/cc-rs/compare/cc-v1.2.61...cc-v1.2.62)
##### Other
- Regenerate target info
([#​1721](https://redirect.github.com/rust-lang/cc-rs/pull/1721))
- Allow exceptions on wasm platforms
([#​1714](https://redirect.github.com/rust-lang/cc-rs/pull/1714))
- Add relibc env
([#​1710](https://redirect.github.com/rust-lang/cc-rs/pull/1710))
- recognize sh4 architecture in parse\_arch()
([#​1712](https://redirect.github.com/rust-lang/cc-rs/pull/1712))
</details>
<details>
<summary>crate-ci/typos (crate-ci/typos)</summary>
###
[`v1.46.1`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.46.1)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.46.0...v1.46.1)
#### \[1.46.1] - 2026-05-08
##### Fixes
- Don't correct to `confidentials`
</details>
<details>
<summary>rust-lang/hashbrown (hashbrown)</summary>
###
[`v0.17.1`](https://redirect.github.com/rust-lang/hashbrown/blob/HEAD/CHANGELOG.md#0171---2026-04-20)
[Compare
Source](https://redirect.github.com/rust-lang/hashbrown/compare/v0.17.0...v0.17.1)
##### Added
- Added `HashMap::rustc_try_insert`
([#​722](https://redirect.github.com/rust-lang/hashbrown/issues/722))
</details>
<details>
<summary>pcodec/pcodec (pco)</summary>
###
[`v1.0.2`](https://redirect.github.com/pcodec/pcodec/releases/tag/v1.0.2)
[Compare
Source](https://redirect.github.com/pcodec/pcodec/compare/v1.0.1...v1.0.2)
- Strengthened validation of dict mode and conv1 delta encoding
metadata.
- Improved numerical stability of conv1 configuration at compression
time.
- Added specialized conv1 decompression routine with better performance
for order 6. Note this is still substantially slower than other delta
encodings, so conv1 still isn't considered during auto delta
configuration.
</details>
<details>
<summary>tokio-rs/tokio (tokio)</summary>
###
[`v1.52.3`](https://redirect.github.com/tokio-rs/tokio/releases/tag/tokio-1.52.3):
Tokio v1.52.3
[Compare
Source](https://redirect.github.com/tokio-rs/tokio/compare/tokio-1.52.2...tokio-1.52.3)
### 1.52.3 (May 8th, 2026)
##### Fixed
- sync: fix underflow in mpsc channel `len()` ([#​8062])
- sync: notify receivers in mpsc `OwnedPermit::release()` method
([#​8075])
- sync: require that an `RwLock` has `max_readers != 0` ([#​8076])
- sync: return `Empty` from `try_recv()` when mpsc is closed with
outstanding permits ([#​8074])
[#​8062]: https://redirect.github.com/tokio-rs/tokio/pull/8062
[#​8074]: https://redirect.github.com/tokio-rs/tokio/pull/8074
[#​8075]: https://redirect.github.com/tokio-rs/tokio/pull/8075
[#​8076]: https://redirect.github.com/tokio-rs/tokio/pull/8076
</details>
<details>
<summary>tower-rs/tower-http (tower-http)</summary>
###
[`v0.6.10`](https://redirect.github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.10)
[Compare
Source](https://redirect.github.com/tower-rs/tower-http/compare/tower-http-0.6.9...tower-http-0.6.10)
#### Added
- `follow-redirect`: expose `Attempt::method()` and
`Attempt::previous_method()`
so redirect policies can react to method changes across redirects (e.g.
POST to GET on 301/303) ([#​559])
#### Fixed
- Restore `tokio` and `async-compression` as no-op features. These will
be
removed next breaking release ([#​667])
[#​559]: https://redirect.github.com/tower-rs/tower-http/pull/559
[#​667]: https://redirect.github.com/tower-rs/tower-http/pull/667
#### What's Changed
- fix: restore tokio and async-compression as no-op features by
[@​jlizen](https://redirect.github.com/jlizen) in
[#​667](https://redirect.github.com/tower-rs/tower-http/pull/667)
- fix gate-ing of atomic64 in tests by
[@​alexanderkjall](https://redirect.github.com/alexanderkjall) in
[#​607](https://redirect.github.com/tower-rs/tower-http/pull/607)
- follow\_redirect: expose previous and next request methods by
[@​lucab](https://redirect.github.com/lucab) in
[#​559](https://redirect.github.com/tower-rs/tower-http/pull/559)
- chore: release tower-http 0.6.10 by
[@​jlizen](https://redirect.github.com/jlizen) in
[#​669](https://redirect.github.com/tower-rs/tower-http/pull/669)
#### New Contributors
- [@​lucab](https://redirect.github.com/lucab) made their first
contribution in
[#​559](https://redirect.github.com/tower-rs/tower-http/pull/559)
**Full Changelog**:
<tower-rs/tower-http@tower-http-0.6.9...tower-http-0.6.10>
###
[`v0.6.9`](https://redirect.github.com/tower-rs/tower-http/releases/tag/tower-http-0.6.9)
[Compare
Source](https://redirect.github.com/tower-rs/tower-http/compare/tower-http-0.6.8...tower-http-0.6.9)
#### Added:
- `on-early-drop`: middleware that detects when a response future or
response
body is dropped before completion ([#​636])
Two events get hooks: the response future being dropped before
the inner service produces a response, and the response body being
dropped before reaching end-of-stream.
Install custom callbacks with `OnEarlyDropLayer::builder()`:
```rust
use http::Request;
use tower_http::on_early_drop::{OnBodyDropFn, OnEarlyDropLayer};
let layer = OnEarlyDropLayer::builder()
.on_future_drop(|req: &Request<()>| {
let uri = req.uri().clone();
move || eprintln!("future dropped for {}", uri)
})
.on_body_drop(OnBodyDropFn::new(|req: &Request<()>| {
let uri = req.uri().clone();
move |parts: &http::response::Parts| {
let status = parts.status;
move || eprintln!("body dropped for {} status {}", uri, status)
}
}));
```
Or route both events through a `trace::OnFailure` hook with
`EarlyDropsAsFailures`. Place this layer inside a `TraceLayer` so the
emitted events inherit the request span:
```rust
use tower::ServiceBuilder;
use tower_http::on_early_drop::{OnEarlyDropLayer, EarlyDropsAsFailures};
use tower_http::trace::{DefaultOnFailure, TraceLayer};
let stack = ServiceBuilder::new()
.layer(TraceLayer::new_for_http())
.layer(OnEarlyDropLayer::new(
EarlyDropsAsFailures::new(DefaultOnFailure::default()),
));
```
- `fs`: make `AsyncReadBody::with_capacity` public ([#​415])
#### Changed:
- The implicit `async-compression` feature is removed ([#​642])
- The implicit `tokio` feature is removed ([#​628])
- `fs`: no longer auto-enables the `tracing` crate feature; enable
`tracing`
explicitly to restore error logging on `ServeDir` IO failures
([#​614])
#### Fixed
- `trace`: restore failure classification at end-of-stream
([#​483])
- `follow-redirect`: support unicode URLs (swaps `iri-string` dep for
`url`) ([#​646])
- `fs`: reject reserved Windows DOS device names (`CON`, `COM1`, etc.)
in
`ServeDir` ([#​663])
[#​415]: https://redirect.github.com/tower-rs/tower-http/pull/415
[#​483]: https://redirect.github.com/tower-rs/tower-http/pull/483
[#​614]: https://redirect.github.com/tower-rs/tower-http/pull/614
[#​628]: https://redirect.github.com/tower-rs/tower-http/pull/628
[#​636]: https://redirect.github.com/tower-rs/tower-http/pull/636
[#​642]: https://redirect.github.com/tower-rs/tower-http/pull/642
[#​646]: https://redirect.github.com/tower-rs/tower-http/pull/646
[#​663]: https://redirect.github.com/tower-rs/tower-http/pull/663
#### All the PRs
- ci: update deny action to v2 by
[@​seanmonstar](https://redirect.github.com/seanmonstar) in
[#​627](https://redirect.github.com/tower-rs/tower-http/pull/627)
- chore: improve code comments clarity by
[@​xibeiyoumian](https://redirect.github.com/xibeiyoumian) in
[#​626](https://redirect.github.com/tower-rs/tower-http/pull/626)
- ci: Update to actions/checkout v6 by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​629](https://redirect.github.com/tower-rs/tower-http/pull/629)
- ci: msrv resolver by
[@​seanmonstar](https://redirect.github.com/seanmonstar) in
[#​635](https://redirect.github.com/tower-rs/tower-http/pull/635)
- chore: Remove resolved cargo-deny config by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​631](https://redirect.github.com/tower-rs/tower-http/pull/631)
- ci: Update to cargo-check-external-types 0.4.0 by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​633](https://redirect.github.com/tower-rs/tower-http/pull/633)
- examples: Use typed default value clap config by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​634](https://redirect.github.com/tower-rs/tower-http/pull/634)
- examples: Disable unused reqwest feature by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​632](https://redirect.github.com/tower-rs/tower-http/pull/632)
- examples: Update to reqwest 0.13 by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​640](https://redirect.github.com/tower-rs/tower-http/pull/640)
- Fix clippy warnings in warp-key-value-store example by
[@​jplatte](https://redirect.github.com/jplatte) in
[#​637](https://redirect.github.com/tower-rs/tower-http/pull/637)
- ci: Use Swatinem/rust-cache\@​v2 to cache by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​644](https://redirect.github.com/tower-rs/tower-http/pull/644)
- ci: Remove unused working-directory config by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​645](https://redirect.github.com/tower-rs/tower-http/pull/645)
- Use cargo-deny graph config by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​639](https://redirect.github.com/tower-rs/tower-http/pull/639)
- Fix: follow redirect unicode in
[#​646](https://redirect.github.com/tower-rs/tower-http/pull/646)
- doc: remove mention of deprecated bearer method in lib.rs comment by
[@​VojtaStanek](https://redirect.github.com/VojtaStanek) in
[#​641](https://redirect.github.com/tower-rs/tower-http/pull/641)
- Allow Unicode-3.0 license by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​648](https://redirect.github.com/tower-rs/tower-http/pull/648)
- fix(docs): typo by
[@​carlocorradini](https://redirect.github.com/carlocorradini) in
[#​649](https://redirect.github.com/tower-rs/tower-http/pull/649)
- fix: remove unused GzEncoder import in decompression in
[#​647](https://redirect.github.com/tower-rs/tower-http/pull/647)
- docs: update Example server in
[#​652](https://redirect.github.com/tower-rs/tower-http/pull/652)
- Don't automatically enable tracing for fs feature by
[@​ginnyTheCat](https://redirect.github.com/ginnyTheCat) in
[#​614](https://redirect.github.com/tower-rs/tower-http/pull/614)
- examples: Remove unnecessary trait bound by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​651](https://redirect.github.com/tower-rs/tower-http/pull/651)
- Remove implicit async-compression feature by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​642](https://redirect.github.com/tower-rs/tower-http/pull/642)
- fix clippy warnings by
[@​alexanderkjall](https://redirect.github.com/alexanderkjall) in
[#​659](https://redirect.github.com/tower-rs/tower-http/pull/659)
- Check for reserved DOS names by
[@​Darksonn](https://redirect.github.com/Darksonn) in
[#​663](https://redirect.github.com/tower-rs/tower-http/pull/663)
- enable clippy for tower-http and fix current issues by
[@​GlenDC](https://redirect.github.com/GlenDC) in
[#​407](https://redirect.github.com/tower-rs/tower-http/pull/407)
- chore: remove implicit tokio feature by
[@​WaterWhisperer](https://redirect.github.com/WaterWhisperer) in
[#​628](https://redirect.github.com/tower-rs/tower-http/pull/628)
- trace: adds back call to classify\_eos on trailers by
[@​markdingram](https://redirect.github.com/markdingram) in
[#​483](https://redirect.github.com/tower-rs/tower-http/pull/483)
- Make AsyncReadBody::with\_capacity public by
[@​bouk](https://redirect.github.com/bouk) in
[#​415](https://redirect.github.com/tower-rs/tower-http/pull/415)
- examples: Use axum::body::to\_bytes by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​650](https://redirect.github.com/tower-rs/tower-http/pull/650)
- ci: Remove unnecessary protoc setup by
[@​tottoto](https://redirect.github.com/tottoto) in
[#​665](https://redirect.github.com/tower-rs/tower-http/pull/665)
- feat(on-early-drop): Add middleware for client early drop detection by
[@​fbergero](https://redirect.github.com/fbergero) in
[#​636](https://redirect.github.com/tower-rs/tower-http/pull/636)
- chore: release tower-http 0.6.9 by
[@​jlizen](https://redirect.github.com/jlizen) in
[#​666](https://redirect.github.com/tower-rs/tower-http/pull/666)
#### New Contributors
- [@​xibeiyoumian](https://redirect.github.com/xibeiyoumian) made
their first contribution in
[#​626](https://redirect.github.com/tower-rs/tower-http/pull/626)
- [@​VojtaStanek](https://redirect.github.com/VojtaStanek) made
their first contribution in
[#​641](https://redirect.github.com/tower-rs/tower-http/pull/641)
- [@​carlocorradini](https://redirect.github.com/carlocorradini)
made their first contribution in
[#​649](https://redirect.github.com/tower-rs/tower-http/pull/649)
- [@​ginnyTheCat](https://redirect.github.com/ginnyTheCat) made
their first contribution in
[#​614](https://redirect.github.com/tower-rs/tower-http/pull/614)
- [@​alexanderkjall](https://redirect.github.com/alexanderkjall)
made their first contribution in
[#​659](https://redirect.github.com/tower-rs/tower-http/pull/659)
- [@​Darksonn](https://redirect.github.com/Darksonn) made their
first contribution in
[#​663](https://redirect.github.com/tower-rs/tower-http/pull/663)
- [@​WaterWhisperer](https://redirect.github.com/WaterWhisperer)
made their first contribution in
[#​628](https://redirect.github.com/tower-rs/tower-http/pull/628)
- [@​bouk](https://redirect.github.com/bouk) made their first
contribution in
[#​415](https://redirect.github.com/tower-rs/tower-http/pull/415)
- [@​fbergero](https://redirect.github.com/fbergero) made their
first contribution in
[#​636](https://redirect.github.com/tower-rs/tower-http/pull/636)
- [@​jlizen](https://redirect.github.com/jlizen) made their first
contribution in
[#​666](https://redirect.github.com/tower-rs/tower-http/pull/666)
**Full Changelog**:
<tower-rs/tower-http@tower-http-0.6.8...tower-http-0.6.9>
</details>
<details>
<summary>vitejs/vite (vite)</summary>
###
[`v8.0.12`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small-8012-2026-05-11-small)
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v8.0.11...v8.0.12)
##### Features
- update rolldown to 1.0.0
([#​22401](https://redirect.github.com/vitejs/vite/issues/22401))
([cf0ff41](https://redirect.github.com/vitejs/vite/commit/cf0ff4154b26cffbf18541ade1a50818842731d3))
##### Bug Fixes
- **create-vite:** pass react framework to TanStack CLI
([#​22397](https://redirect.github.com/vitejs/vite/issues/22397))
([18f0f90](https://redirect.github.com/vitejs/vite/commit/18f0f904442cc45bd4b1c83db2627fd5cb0c9937))
- **deps:** update all non-major dependencies
([#​22420](https://redirect.github.com/vitejs/vite/issues/22420))
([2be6000](https://redirect.github.com/vitejs/vite/commit/2be6000130e3ae2160acc301baa4f7913fbc1f6e))
- **module-runner:** prevent partial-exports race on concurrent imports
of in-flight invalidated re-export chains
([#​22369](https://redirect.github.com/vitejs/vite/issues/22369))
([f5a22e6](https://redirect.github.com/vitejs/vite/commit/f5a22e62ada75286138b7ceb3825e43958ef00e1))
- refer to `rolldownOptions` instead of deprecated `rollupOptions` in
messages
([#​22400](https://redirect.github.com/vitejs/vite/issues/22400))
([b675c7b](https://redirect.github.com/vitejs/vite/commit/b675c7b6697423275ad9dd521d3ce7c8679761a0))
- **worker:** apply `build.target` to worker bundle
([#​22404](https://redirect.github.com/vitejs/vite/issues/22404))
([3c93fde](https://redirect.github.com/vitejs/vite/commit/3c93fde21f07d44db7669ca7484f4e7a8767afe5))
- **worker:** forward define to worker bundle transform
([#​22408](https://redirect.github.com/vitejs/vite/issues/22408))
([d4838a0](https://redirect.github.com/vitejs/vite/commit/d4838a0358d9f04a980d4d2ac7263f21a6b28ee2))
##### Miscellaneous Chores
- **deps:** update dependency eslint-plugin-n to v18
([#​22423](https://redirect.github.com/vitejs/vite/issues/22423))
([2fe7bd2](https://redirect.github.com/vitejs/vite/commit/2fe7bd2d73beb697a3d149e943ac74b768c9d27f))
- **deps:** update rolldown-related dependencies
([#​22421](https://redirect.github.com/vitejs/vite/issues/22421))
([66b9eb3](https://redirect.github.com/vitejs/vite/commit/66b9eb35188007e0e9a1bd03b4be820016cad60b))
###
[`v8.0.11`](https://redirect.github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small-8011-2026-05-07-small)
[Compare
Source](https://redirect.github.com/vitejs/vite/compare/v8.0.10...v8.0.11)
##### Features
- update rolldown to 1.0.0-rc.18
([#​22360](https://redirect.github.com/vitejs/vite/issues/22360))
([3f80524](https://redirect.github.com/vitejs/vite/commit/3f80524aa1fa40bfa831f1a1bf2641c3979ba396))
##### Bug Fixes
- **deps:** update all non-major dependencies
([#​22334](https://redirect.github.com/vitejs/vite/issues/22334))
([672c962](https://redirect.github.com/vitejs/vite/commit/672c96288fd5440bbecddc65551e713edeb8d403))
- **deps:** update all non-major dependencies
([#​22382](https://redirect.github.com/vitejs/vite/issues/22382))
([5c0cfcb](https://redirect.github.com/vitejs/vite/commit/5c0cfcb83dde2c6e25b6c3215dd622956bf29631))
- **glob:** align hmr matcher options with glob enumeration
([#​22306](https://redirect.github.com/vitejs/vite/issues/22306))
([30028f9](https://redirect.github.com/vitejs/vite/commit/30028f94516fa06dd0212567373169b3b3f6e393))
- make separate object instance for each environment
([#​22276](https://redirect.github.com/vitejs/vite/issues/22276))
([7c2aa3b](https://redirect.github.com/vitejs/vite/commit/7c2aa3b40ba00ce1299e4f31932c7929f179a80a))
##### Documentation
- **create-vite:** list react-compiler templates in README
([#​22347](https://redirect.github.com/vitejs/vite/issues/22347))
([7c3a61f](https://redirect.github.com/vitejs/vite/commit/7c3a61f42da6445904e93f0e29e9a2a838fa684a))
- explain mergeConfig skips null/undefined
([#​22325](https://redirect.github.com/vitejs/vite/issues/22325))
([2151f70](https://redirect.github.com/vitejs/vite/commit/2151f701dc98270c905c540b209fb6d23d53d3ad))
- mention native config loader in CLI options
([#​22348](https://redirect.github.com/vitejs/vite/issues/22348))
([0420c5d](https://redirect.github.com/vitejs/vite/commit/0420c5d37b6049476b6e6c16662be372575dd683))
- update evan's x handle
([640202a](https://redirect.github.com/vitejs/vite/commit/640202a2167b0c19b94e4d3b8ff87309ae1f44d0))
##### Miscellaneous Chores
- **deps:** update dependency tsdown to ^0.21.10
([#​22333](https://redirect.github.com/vitejs/vite/issues/22333))
([3b51e05](https://redirect.github.com/vitejs/vite/commit/3b51e050214c5a817c163838ab8643fe34c7d0c3))
- **deps:** update rolldown-related dependencies
([#​22383](https://redirect.github.com/vitejs/vite/issues/22383))
([555ff36](https://redirect.github.com/vitejs/vite/commit/555ff36de70a43b3b3dc22f958bf78fe75e11d67))
- **deps:** update transitive packages to fix npm audit alerts
([#​22316](https://redirect.github.com/vitejs/vite/issues/22316))
([86aee62](https://redirect.github.com/vitejs/vite/commit/86aee6268aa879d74f68a890392c1dee973ebf05))
##### Code Refactoring
- devtools integration
([#​22312](https://redirect.github.com/vitejs/vite/issues/22312))
([3c8bf06](https://redirect.github.com/vitejs/vite/commit/3c8bf064ec76e311f2d8be3a37dcfdcdd4e4253c))
- remove unnecessary async
([#​22296](https://redirect.github.com/vitejs/vite/issues/22296))
([b31fd35](https://redirect.github.com/vitejs/vite/commit/b31fd355d93eb166573362bd09c07745b9f76755))
- show direct path type in bad character warning
([#​22339](https://redirect.github.com/vitejs/vite/issues/22339))
([0c162e9](https://redirect.github.com/vitejs/vite/commit/0c162e96a6545c93808e7338b9adeca2636596fa))
##### Tests
- **create-vite:** use short help alias
([#​22389](https://redirect.github.com/vitejs/vite/issues/22389))
([994ab66](https://redirect.github.com/vitejs/vite/commit/994ab66bc4dc872278d8353d710ffc4bbd881f8d))
</details>
---
### 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](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/vortex-data/vortex).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE1OS4yIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6WyJjaGFuZ2Vsb2cvY2hvcmUiXX0=-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 1fb891d commit 1e7ad82
3 files changed
Lines changed: 151 additions & 151 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments