Skip to content

Commit 47a1241

Browse files
committed
Release gix-url v0.25.1
1 parent c2cf20c commit 47a1241

File tree

8 files changed

+37
-8
lines changed

8 files changed

+37
-8
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gitoxide-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ futures-io = { version = "0.3.16", optional = true }
6464
blocking = { version = "1.0.2", optional = true }
6565

6666
# for 'organize' functionality
67-
gix-url = { version = "^0.25.0", path = "../gix-url", optional = true }
67+
gix-url = { version = "^0.25.1", path = "../gix-url", optional = true }
6868
jwalk = { version = "0.8.0", optional = true }
6969

7070
# for 'hours'

gix-credentials/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ serde = ["dep:serde", "bstr/serde", "gix-sec/serde"]
1717

1818
[dependencies]
1919
gix-sec = { version = "^0.10.0", path = "../gix-sec" }
20-
gix-url = { version = "^0.25.0", path = "../gix-url" }
20+
gix-url = { version = "^0.25.1", path = "../gix-url" }
2121
gix-path = { version = "^0.10.0", path = "../gix-path" }
2222
gix-command = { version = "^0.2.10", path = "../gix-command" }
2323
gix-config-value = { version = "^0.14.0", path = "../gix-config-value" }

gix-submodule/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gix-pathspec = { version = "^0.4.0", path = "../gix-pathspec" }
1616
gix-refspec = { version = "^0.19.0", path = "../gix-refspec" }
1717
gix-config = { version = "^0.31.0", path = "../gix-config" }
1818
gix-path = { version = "^0.10.0", path = "../gix-path" }
19-
gix-url = { version = "^0.25.0", path = "../gix-url" }
19+
gix-url = { version = "^0.25.1", path = "../gix-url" }
2020

2121
bstr = { version = "1.5.0", default-features = false }
2222
thiserror = "1.0.44"

gix-transport/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ required-features = ["async-client"]
5555
[dependencies]
5656
gix-command = { version = "^0.2.10", path = "../gix-command" }
5757
gix-features = { version = "^0.36.0", path = "../gix-features" }
58-
gix-url = { version = "^0.25.0", path = "../gix-url" }
58+
gix-url = { version = "^0.25.1", path = "../gix-url" }
5959
gix-sec = { version = "^0.10.0", path = "../gix-sec" }
6060
gix-packetline = { version = "^0.16.7", path = "../gix-packetline" }
6161
gix-credentials = { version = "^0.21.0", path = "../gix-credentials", optional = true }

gix-url/CHANGELOG.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,34 @@ 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+
## 0.25.1 (2023-10-14)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-562b0c931db1d22b8e59903cb59afa9a36d5884c/> make file:// url parsing with full backslashed path more robust on windows.
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 3 commits contributed to the release.
19+
- 1 day passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 1 unique issue was worked on: [#1063](https://github.com/Byron/gitoxide/issues/1063)
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **[#1063](https://github.com/Byron/gitoxide/issues/1063)**
30+
- Make file:// url parsing with full backslashed path more robust on windows. ([`562b0c9`](https://github.com/Byron/gitoxide/commit/562b0c931db1d22b8e59903cb59afa9a36d5884c))
31+
* **Uncategorized**
32+
- Merge branch 'head-conversions' ([`c2cf20c`](https://github.com/Byron/gitoxide/commit/c2cf20cd2d685c2c24527729fff35fd0a7903742))
33+
- Fix yet another fuzzed test-case related to url::parse DoS ([`21729ed`](https://github.com/Byron/gitoxide/commit/21729edb0c12831eb9ea488cc3b66b5e79eacfae))
34+
</details>
35+
836
## 0.25.0 (2023-10-12)
937

1038
This release contains a complete rewrite of the internal url parsing logic, the public interface stays mostly the same however. Gitoxide will now be
@@ -32,7 +60,7 @@ open a new issue to help us making Gitoxide even more correct.
3260

3361
<csr-read-only-do-not-edit/>
3462

35-
- 18 commits contributed to the release over the course of 17 calendar days.
63+
- 19 commits contributed to the release over the course of 17 calendar days.
3664
- 17 days passed between releases.
3765
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
3866
- 0 issues like '(#ID)' were seen in commit messages
@@ -44,6 +72,7 @@ open a new issue to help us making Gitoxide even more correct.
4472
<details><summary>view details</summary>
4573

4674
* **Uncategorized**
75+
- Release gix-hash v0.13.1, gix-features v0.36.0, gix-actor v0.28.0, gix-object v0.38.0, gix-glob v0.14.0, gix-attributes v0.20.0, gix-command v0.2.10, gix-filter v0.6.0, gix-fs v0.8.0, gix-commitgraph v0.22.0, gix-revwalk v0.9.0, gix-traverse v0.34.0, gix-worktree-stream v0.6.0, gix-archive v0.6.0, gix-tempfile v11.0.0, gix-lock v11.0.0, gix-ref v0.38.0, gix-config v0.31.0, gix-url v0.25.0, gix-credentials v0.21.0, gix-diff v0.37.0, gix-discover v0.26.0, gix-ignore v0.9.0, gix-index v0.26.0, gix-mailmap v0.20.0, gix-negotiate v0.9.0, gix-pack v0.44.0, gix-odb v0.54.0, gix-pathspec v0.4.0, gix-packetline v0.16.7, gix-transport v0.37.0, gix-protocol v0.41.0, gix-revision v0.23.0, gix-refspec v0.19.0, gix-worktree v0.27.0, gix-status v0.2.0, gix-submodule v0.5.0, gix-worktree-state v0.4.0, gix v0.55.0, safety bump 37 crates ([`68e5432`](https://github.com/Byron/gitoxide/commit/68e54326e527a55dd5b5079921fc251615833040))
4776
- Prepare changelogs prior to release ([`1347a54`](https://github.com/Byron/gitoxide/commit/1347a54f84599d8f0aa935d6e64b16c2298d25cf))
4877
- Another fuzz-issue that could cause long parse times of URLs ([`ea0ea88`](https://github.com/Byron/gitoxide/commit/ea0ea88dfc232601b462fcf52fed4d34a17bc116))
4978
- Add yet another bypass attack that runs into the `url` DoS issue ([`6aa63b1`](https://github.com/Byron/gitoxide/commit/6aa63b19338d1b4d86906a1e16eeb7b48cbc83a4))

gix-url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gix-url"
3-
version = "0.25.0"
3+
version = "0.25.1"
44
repository = "https://github.com/Byron/gitoxide"
55
license = "MIT OR Apache-2.0"
66
description = "A crate of the gitoxide project implementing parsing and serialization of gix-url"

gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ gix-revwalk = { version = "^0.9.0", path = "../gix-revwalk" }
223223
gix-negotiate = { version = "^0.9.0", path = "../gix-negotiate", optional = true }
224224

225225
gix-path = { version = "^0.10.0", path = "../gix-path" }
226-
gix-url = { version = "^0.25.0", path = "../gix-url" }
226+
gix-url = { version = "^0.25.1", path = "../gix-url" }
227227
gix-traverse = { version = "^0.34.0", path = "../gix-traverse" }
228228
gix-diff = { version = "^0.37.0", path = "../gix-diff", default-features = false }
229229
gix-mailmap = { version = "^0.20.0", path = "../gix-mailmap", optional = true }

0 commit comments

Comments
 (0)