Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "version=$VERSION" >> $GITHUB_OUTPUT

- name: Create Release
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe
with:
tag_name: ${{ github.ref }}
name: Release v${{ steps.extract-version.outputs.version }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Updated `lz4_flex` from 0.12.0 to 0.13.0 to address Dependabot alert #2 / CVE-2026-32829 and incorporate the upstream decompression fix.
- Updated `once_cell` from 1.21.3 to 1.21.4 and `clap` from 4.5.60 to 4.6.0 (supersedes open PRs #103 and #104).
- Updated `softprops/action-gh-release` from 2.5.0 to 2.6.1 in the release workflow (supersedes open PR #102).

## [0.5.4] - 2026-03-12

### Changed
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ required-features = ["hilbert"]

[dependencies]
# Compression (LZ4 is default)
lz4_flex = "0.12"
lz4_flex = "0.13"
zstd = { version = "0.13", optional = true }

# Serialization
Expand All @@ -56,7 +56,7 @@ rkyv = { version = "0.8", optional = true }
petgraph = { version = "0.8", optional = true }

# Synchronization
once_cell = "1.19"
once_cell = "1.21"
parking_lot = "0.12"

# Error handling
Expand All @@ -78,7 +78,7 @@ ahash = "0.8"
rustc-hash = "2.0"

# CLI
clap = { version = "4.5", features = ["derive"], optional = true }
clap = { version = "4.6", features = ["derive"], optional = true }
rand = { version = "0.10", optional = true }
crossterm = { version = "0.29", optional = true }
dirs = { version = "6.0", optional = true }
Expand Down
Loading