upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-03-09 09:14:03 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-03-09 10:02:25 +0000
commit3daf61e74c8969c91333bc92c4914c8c6077592c (patch)
tree896da35d6e47ca71b8b9d9ca6153ad374f8ee710 /CHANGELOG.md
parent45b0f8c6b1dab2d51338d88b2a7caf4b1b571f4d (diff)
fix(push): gracefully handle errors identifying potential PR merges
Errors from get_merged_status_events no longer abort the push; the call site now uses if let Ok(...) so failures are silently skipped. Also replace an .unwrap() in create_merge_events with a safe .map().unwrap_or_default() to avoid any panic in that path.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bccb23f..324bcff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7 7
8## [Unreleased] 8## [Unreleased]
9 9
10### Fixed
11
12- gracefully handle errors identifying potential PR merges during push
13
10## [2.3.0] - 2026-03-05 14## [2.3.0] - 2026-03-05
11 15
12### Added 16### Added