Skip to content

Commit d3e4c17

Browse files
committed
Release gix-fs v0.21.1
1 parent e26d378 commit d3e4c17

17 files changed

Lines changed: 19 additions & 18 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gix-diff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ gix-filter = { version = "^0.30.0", path = "../gix-filter", optional = true }
5454
gix-worktree = { version = "^0.52.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
5555
gix-command = { version = "^0.9.0", path = "../gix-command", optional = true }
5656
gix-path = { version = "^0.12.0", path = "../gix-path", optional = true }
57-
gix-fs = { version = "^0.21.0", path = "../gix-fs", optional = true }
57+
gix-fs = { version = "^0.21.1", path = "../gix-fs", optional = true }
5858
gix-tempfile = { version = "^23.0.0", path = "../gix-tempfile", optional = true }
5959
gix-trace = { version = "^0.1.19", path = "../gix-trace", optional = true }
6060
gix-traverse = { version = "^0.57.0", path = "../gix-traverse", optional = true }

gix-dir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sha1 = ["gix-discover/sha1", "gix-index/sha1", "gix-object/sha1", "gix-worktree/
2323
gix-trace = { version = "^0.1.19", path = "../gix-trace" }
2424
gix-index = { version = "^0.51.0", path = "../gix-index" }
2525
gix-discover = { version = "^0.51.0", path = "../gix-discover" }
26-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
26+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
2727
gix-path = { version = "^0.12.0", path = "../gix-path" }
2828
gix-pathspec = { version = "^0.18.0", path = "../gix-pathspec" }
2929
gix-worktree = { version = "^0.52.0", path = "../gix-worktree", default-features = false }

gix-discover/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sha1 = ["gix-ref/sha1"]
2222
gix-sec = { version = "^0.14.0", path = "../gix-sec" }
2323
gix-path = { version = "^0.12.0", path = "../gix-path" }
2424
gix-ref = { version = "^0.63.0", path = "../gix-ref" }
25-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
25+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
2626

2727
bstr = { version = "1.12.0", default-features = false, features = ["std", "unicode"] }
2828
thiserror = "2.0.18"

gix-fs/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.21.1 (2026-04-30)
99

1010
A security fix for https://github.com/GitoxideLabs/gitoxide/security/advisories/GHSA-f89h-2fjh-2r9q,
1111
which could allow attackers to trick `gix clone` into writing outside of the repository.
@@ -14,7 +14,7 @@ which could allow attackers to trick `gix clone` into writing outside of the rep
1414

1515
<csr-read-only-do-not-edit/>
1616

17-
- 2 commits contributed to the release over the course of 2 calendar days.
17+
- 3 commits contributed to the release over the course of 2 calendar days.
1818
- 2 days passed between releases.
1919
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
2020
- 0 issues like '(#ID)' were seen in commit messages
@@ -26,6 +26,7 @@ which could allow attackers to trick `gix clone` into writing outside of the rep
2626
<details><summary>view details</summary>
2727

2828
* **Uncategorized**
29+
- Update changelog of gix-fs prior to release ([`e26d378`](https://github.com/GitoxideLabs/gitoxide/commit/e26d37819e59556e018700cba9c414648d6939be))
2930
- Revalidate cached stack leaves before directory reuse ([`93d0ff6`](https://github.com/GitoxideLabs/gitoxide/commit/93d0ff6342f9fba5e30a6a893ad11347cf6cfcbc))
3031
- Merge pull request #2546 from GitoxideLabs/fix-2545 ([`adb8328`](https://github.com/GitoxideLabs/gitoxide/commit/adb8328952478c443ead5f5a8c6851928b377b37))
3132
</details>

gix-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lints.workspace = true
22

33
[package]
44
name = "gix-fs"
5-
version = "0.21.0"
5+
version = "0.21.1"
66
repository = "https://github.com/GitoxideLabs/gitoxide"
77
license = "MIT OR Apache-2.0"
88
description = "A crate providing file system specific utilities to `gitoxide`"

gix-index/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ gix-object = { version = "^0.60.0", path = "../gix-object" }
3838
gix-validate = { version = "^0.11.1", path = "../gix-validate" }
3939
gix-traverse = { version = "^0.57.0", path = "../gix-traverse" }
4040
gix-lock = { version = "^23.0.0", path = "../gix-lock" }
41-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
41+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
4242
gix-utils = { version = "^0.3.2", path = "../gix-utils" }
4343

4444
hashbrown = "0.16.0"

gix-merge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ gix-filter = { version = "^0.30.0", path = "../gix-filter" }
2828
gix-worktree = { version = "^0.52.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
2929
gix-command = { version = "^0.9.0", path = "../gix-command" }
3030
gix-path = { version = "^0.12.0", path = "../gix-path" }
31-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
31+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
3232
gix-tempfile = { version = "^23.0.0", path = "../gix-tempfile" }
3333
gix-trace = { version = "^0.1.19", path = "../gix-trace" }
3434
gix-quote = { version = "^0.7.1", path = "../gix-quote" }

gix-odb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ gix-path = { version = "^0.12.0", path = "../gix-path" }
2929
gix-quote = { version = "^0.7.1", path = "../gix-quote" }
3030
gix-object = { version = "^0.60.0", path = "../gix-object" }
3131
gix-pack = { version = "^0.70.0", path = "../gix-pack", default-features = false }
32-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
32+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
3333
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
3434

3535
tempfile = "3.26.0"

gix-ref/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ serde = ["dep:serde", "gix-hash/serde", "gix-actor/serde", "gix-object/serde"]
2626

2727
[dependencies]
2828
gix-features = { version = "^0.48.0", path = "../gix-features", features = ["walkdir"] }
29-
gix-fs = { version = "^0.21.0", path = "../gix-fs" }
29+
gix-fs = { version = "^0.21.1", path = "../gix-fs" }
3030
gix-path = { version = "^0.12.0", path = "../gix-path" }
3131
gix-hash = { version = "^0.25.0", path = "../gix-hash" }
3232
gix-object = { version = "^0.60.0", path = "../gix-object" }

0 commit comments

Comments
 (0)