diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-04-28 10:48:50 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-04-28 10:48:50 +0000 |
| commit | 59e467b423e0ba66c30c7f1b7d41d47d938615de (patch) | |
| tree | f1ef6608b09639914bea85db1d4210cb62655776 | |
| parent | b9b0108972cbe532d41519850245adbcf6b4fd93 (diff) | |
chore: release v2.4.2v2.4.2
Fix GRASP server push path for PR proposals: URL normalisation
mismatch meant repo GRASP servers were never tried, causing every
PR submission to fall through to the fork-creation fallback.
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6147439..af340fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
| @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 7 | 7 | ||
| 8 | ## [Unreleased] | 8 | ## [Unreleased] |
| 9 | 9 | ||
| 10 | ## [2.4.2] - 2026-04-28 | ||
| 11 | |||
| 10 | ### Fixed | 12 | ### Fixed |
| 11 | 13 | ||
| 12 | - when submitting a PR (via `--force-pr` or when the existing proposal is already a PR kind), repository GRASP servers were never tried when pushing proposal refs; a URL normalisation mismatch (`repo_grasps` holds normalised hostnames but the comparison was made against full clone URLs) meant the candidate server list was always empty, so every submission fell through to the fork-creation / personal GRASP server fallback path instead of pushing directly to the repository's own GRASP servers | 14 | - when submitting a PR (via `--force-pr` or when the existing proposal is already a PR kind), repository GRASP servers were never tried when pushing proposal refs; a URL normalisation mismatch (`repo_grasps` holds normalised hostnames but the comparison was made against full clone URLs) meant the candidate server list was always empty, so every submission fell through to the fork-creation / personal GRASP server fallback path instead of pushing directly to the repository's own GRASP servers |
| @@ -1548,7 +1548,7 @@ checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d" | |||
| 1548 | 1548 | ||
| 1549 | [[package]] | 1549 | [[package]] |
| 1550 | name = "ngit" | 1550 | name = "ngit" |
| 1551 | version = "2.4.1" | 1551 | version = "2.4.2" |
| 1552 | dependencies = [ | 1552 | dependencies = [ |
| 1553 | "anyhow", | 1553 | "anyhow", |
| 1554 | "assert_cmd", | 1554 | "assert_cmd", |
| @@ -1,6 +1,6 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "ngit" | 2 | name = "ngit" |
| 3 | version = "2.4.1" | 3 | version = "2.4.2" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "nostr plugin for git" | 5 | description = "nostr plugin for git" |
| 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] | 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] |