Skip to content

chore(deps): bump the cargo group across 1 directory with 5 updates#15

Merged
ColinVaughn merged 1 commit into
masterfrom
dependabot/cargo/cargo-c230098c34
Jul 4, 2026
Merged

chore(deps): bump the cargo group across 1 directory with 5 updates#15
ColinVaughn merged 1 commit into
masterfrom
dependabot/cargo/cargo-c230098c34

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the cargo group with 5 updates in the / directory:

Package From To
tree-sitter 0.26.9 0.26.10
redis 1.2.4 1.3.0
rust_xlsxwriter 0.95.0 0.96.0
ignore 0.4.26 0.4.27
zip 7.2.0 8.6.0

Updates tree-sitter from 0.26.9 to 0.26.10

Release notes

Sourced from tree-sitter's releases.

v0.26.10

What's Changed

Full Changelog: tree-sitter/tree-sitter@v0.26.9...v0.26.10

Commits
  • 3fc4cd2 release v0.26.10
  • 568aee0 test(query): regression test for anchored siblings inside a parent
  • 2efce10 fix(query): skip passthrough steps when checking for fallible step splitting
  • e8b9639 fix(query): avoid overriding states not seeking immediate match with states s...
  • 576564d fix(query): take anchors between siblings into account for fallible step spli...
  • fbf3049 fix(dsl): forbid invalid field names
  • 99bc36b build(deps): bump wasmtime-c-api to v36.0.12
  • 1ef1048 fix(build): use std helper rather than passing -std=c11 flag
  • a61be4a fix(lib): address strict aliasing violations in TreeCursor type
  • be8f380 fix(cli): highlight test did not properly check for spans on later rows
  • Additional commits viewable in compare view

Updates redis from 1.2.4 to 1.3.0

Release notes

Sourced from redis's releases.

redis-1.3.0

Changes & Bug fixes

Add numbered databases support for the cluster client (redis-rs/redis-rs#2146 by @​virratanasangpunth) fix(cluster): clamp retry backoff upper bound after min-wait floor (redis-rs/redis-rs#2158 by @​nihohit) docs/ci: add wasm32-wasip2 build support for tokio-comp (redis-rs/redis-rs#2153 by @​Prashantsinghchouhan) Add Bloom filter support (redis-rs/redis-rs#2117 by @​somechris)

CI & operational improvements

tests/version: Parse all available versions (Valkey, modules, ...) (Version refactor 6/10) (redis-rs/redis-rs#2143 by @​somechris) tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (Version refactor 7/10) (redis-rs/redis-rs#2144 by @​somechris) tests/version: Drop Redis binary version parsing (Version refactor 8/10) (redis-rs/redis-rs#2145 by @​somechris) tests: Drop VERSION from version constants (version refactor 9/10) (redis-rs/redis-rs#2147 by @​somechris) Fix flakey object tests (redis-rs/redis-rs#2160 by @​nihohit) tests: Add test guards for Valkey servers (Version refactor 10/10) (redis-rs/redis-rs#2148 by @​somechris)

New Contributors

Full Changelog: redis-rs/redis-rs@redis-1.2.4...redis-1.3.0

Commits
  • 207cc89 Prepare version (#2166)
  • c34fb33 Add redisbloom's Bloom filter support (#2117)
  • 5c6ca0a tests: Add test guards for Valkey servers (#2148)
  • e891f7f docs/ci: add wasm32-wasip2 build support for tokio-comp (#2153)
  • 7d066c6 Fix flakey object tests (#2160)
  • b571eb1 tests: Clean up version constants (#2147)
  • b9249f6 tests/version: Drop Redis binary version parsing (#2145)
  • 406ad76 tests/version: Add disjunctive (OR) and conjunctive (AND) matchers (#2144)
  • 1372807 feat(redis_test): add new commands after mock redis connection is instantiate...
  • 201d1be fix(cluster): clamp retry backoff upper bound after min-wait floor (#2158)
  • Additional commits viewable in compare view

Updates rust_xlsxwriter from 0.95.0 to 0.96.0

Changelog

Sourced from rust_xlsxwriter's changelog.

[0.96.0] - 2026-07-01

Added

  • Dropped the Seek trait requirement from the [Workbook::save_to_writer()] API which allows it to write to STDOUT, to buffers (without Cursor), and to other Write interfaces that don't support seek. This was achieved by moving to the [zip.rs] stream API internally. See the discussion at [Feature Request #179].

    [Feature Request #179]: jmcnamara/rust_xlsxwriter#179 [zip.rs]: https://crates.io/crates/zip

  • Updated optional polars dependency to v0.54 to allow a similar update in the [polars_excel_writer] crate.

Commits
  • 9134de2 release: 0.96.0
  • 30c30af tests: update test for save_to_writer() using a direct buffer
  • e98b49a polars: update dependency to v0.54
  • 15a5819 docs: update save_to_writer() example to remove Seek
  • 90aa6d2 packager: move to ZipWriter::new_stream() API
  • a109355 packager: refactor constant_memory write loop
  • 7ff61b5 ci: change config to run ci on all branches
  • 8eb9b7b benches: add benchmark tests
  • ce8ed18 serde: add warning for flatten
  • See full diff in compare view

Updates ignore from 0.4.26 to 0.4.27

Commits

Updates zip from 7.2.0 to 8.6.0

Release notes

Sourced from zip's releases.

v8.6.0

🚀 Features

  • add compression not supported as enum error (#774)

🐛 Bug Fixes

  • allow for [u8] as filename (#775)

🚜 Refactor

  • mark ZipFlags as non-exhaustive and add test for HasZipMetadata (#777)
  • use and simplify is_dir (#776)

v8.5.1

🚜 Refactor

  • change magic finder to stack buffer (#763)
  • simplify extra field parsing (#764)

v8.5.0

🐛 Bug Fixes

  • remove zip64 comment and add zip64 extensible data sector (#747)

🚜 Refactor

  • remove useless magic in struct (#730)
  • change extra_field from Arc<Vec> to Arc<[u8]> (#741)

⚙️ Miscellaneous Tasks

  • cleanup README (#758)

v8.4.0

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

  • skip BufReader for Stored files in make_reader (#739)

⚙️ Miscellaneous Tasks

... (truncated)

Changelog

Sourced from zip's changelog.

8.6.0 - 2026-04-25

🚀 Features

  • add compression not supported as enum error (#774)

🐛 Bug Fixes

  • allow for [u8] as filename (#775)

🚜 Refactor

  • mark ZipFlags as non-exhaustive and add test for HasZipMetadata (#777)
  • use and simplify is_dir (#776)

8.5.1 - 2026-04-06

🚜 Refactor

  • change magic finder to stack buffer (#763)
  • simplify extra field parsing (#764)

8.5.0 - 2026-04-01

🐛 Bug Fixes

  • remove zip64 comment and add zip64 extensible data sector (#747)

🚜 Refactor

  • remove useless magic in struct (#730)
  • change extra_field from Arc<Vec> to Arc<[u8]> (#741)

⚙️ Miscellaneous Tasks

  • cleanup README (#758)

8.4.0 - 2026-03-23

🚀 Features

  • add a check for building benches (#748)

🚜 Refactor

  • split part of read.rs for code readability (#744)
  • remove unused allow (#745)

⚡ Performance

... (truncated)

Commits
  • 771dfc5 chore: release v8.6.0 (#781)
  • 8e480cc chore(deps): update sha1 requirement from 0.10 to 0.11 (#767)
  • 2513bbe chore(deps): update aes requirement from 0.8 to 0.9 (#787)
  • 957e240 ci(deps): bump actions/cache from 5.0.4 to 5.0.5 (#786)
  • 0329d9d fix: allow for [u8] as filename (#775)
  • ddcf854 ci(deps): bump github/codeql-action from 4.35.1 to 4.35.2 (#788)
  • 42323a8 ci(deps): bump actions/create-github-app-token from 3.0.0 to 3.1.1 (#785)
  • 901014a ci(deps): bump crate-ci/typos from 1.45.0 to 1.45.1 (#784)
  • 07702d4 feat: add compression not supported as enum error (#774)
  • 2d0c46b ci(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 (#783)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 3, 2026
Bumps the cargo group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tree-sitter](https://github.com/tree-sitter/tree-sitter) | `0.26.9` | `0.26.10` |
| [redis](https://github.com/redis-rs/redis-rs) | `1.2.4` | `1.3.0` |
| [rust_xlsxwriter](https://github.com/jmcnamara/rust_xlsxwriter) | `0.95.0` | `0.96.0` |
| [ignore](https://github.com/BurntSushi/ripgrep) | `0.4.26` | `0.4.27` |
| [zip](https://github.com/zip-rs/zip2) | `7.2.0` | `8.6.0` |



Updates `tree-sitter` from 0.26.9 to 0.26.10
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.26.9...v0.26.10)

Updates `redis` from 1.2.4 to 1.3.0
- [Release notes](https://github.com/redis-rs/redis-rs/releases)
- [Commits](redis-rs/redis-rs@redis-1.2.4...redis-1.3.0)

Updates `rust_xlsxwriter` from 0.95.0 to 0.96.0
- [Changelog](https://github.com/jmcnamara/rust_xlsxwriter/blob/main/CHANGELOG.md)
- [Commits](jmcnamara/rust_xlsxwriter@v0.95.0...v0.96.0)

Updates `ignore` from 0.4.26 to 0.4.27
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/ripgrep@ignore-0.4.26...ignore-0.4.27)

Updates `zip` from 7.2.0 to 8.6.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v7.2.0...v8.6.0)

---
updated-dependencies:
- dependency-name: ignore
  dependency-version: 0.4.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: redis
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: rust_xlsxwriter
  dependency-version: 0.96.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: tree-sitter
  dependency-version: 0.26.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: zip
  dependency-version: 8.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/cargo/cargo-c230098c34 branch from eb7b48c to 17d9481 Compare July 4, 2026 03:41
@ColinVaughn
ColinVaughn merged commit 2861e18 into master Jul 4, 2026
88 checks passed
@dependabot
dependabot Bot deleted the dependabot/cargo/cargo-c230098c34 branch July 4, 2026 03:48
ColinVaughn added a commit that referenced this pull request Jul 5, 2026
Folds in the grouped Dependabot update (#15): zip 8.6, rust_xlsxwriter
0.96, tree-sitter 0.26.10, redis 1.3, ignore 0.4.27.
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.

1 participant