reissue 0.4.8 → 0.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -13
- data/lib/reissue/rake.rb +3 -1
- data/lib/reissue/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec1bcd720b385fc4a7b4ee0ef635d143e6390ed2e5ead9c11b7101648277263f
|
|
4
|
+
data.tar.gz: 5c8ba418790813a599ae0f9f96249e69bb146f23883c0369082c6a954f9491f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d386f5dfb8255426d831e405ed1f831134f0bdf653e40028f64731c6d72b15296cdad6014ed83417bd3e79aa50c016d0b4097450cbe388cbca49d4fa3b20984
|
|
7
|
+
data.tar.gz: f98faa91fd66fa1d3080257ff9ab31fbd32dc941e172ce2dbe7f397ef3206e6f04ed6f5463b9a750996c460d455d7b7a8213ad8b654151cf57592137e39ac84b
|
data/CHANGELOG.md
CHANGED
|
@@ -5,20 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
|
-
## [0.4.
|
|
9
|
-
|
|
10
|
-
## [0.4.7] - 2025-12-10
|
|
8
|
+
## [0.4.9] - 2026-01-15
|
|
11
9
|
|
|
12
10
|
### Fixed
|
|
13
11
|
|
|
14
|
-
-
|
|
15
|
-
- Bundle install skipped when no Gemfile exists in directory (d87ffd3)
|
|
16
|
-
- Changelog file configuration ignored in reissue task (35b5a30)
|
|
17
|
-
|
|
18
|
-
### Added
|
|
12
|
+
- Adding delete of remote branch after deling the local branch during the reissue:branch task to help with stale tracking reference. (3f6e1fb)
|
|
19
13
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Changed
|
|
23
|
-
|
|
24
|
-
- All critical git operations now use comprehensive error checking (d87ffd3)
|
|
14
|
+
## [0.4.8] - 2025-12-19
|
data/lib/reissue/rake.rb
CHANGED
|
@@ -245,8 +245,10 @@ module Reissue
|
|
|
245
245
|
version = branch_name.sub(/^reissue\//, "")
|
|
246
246
|
# Delete matching tag if it exists
|
|
247
247
|
system("git tag -d v#{version} 2>/dev/null || true")
|
|
248
|
-
# Delete the branch
|
|
248
|
+
# Delete the local branch
|
|
249
249
|
run_command("git branch -D #{branch_name}", "Failed to delete existing branch #{branch_name}")
|
|
250
|
+
# Delete the remote tracking ref to prevent --force-with-lease from comparing against stale data
|
|
251
|
+
system("git branch -d -r origin/#{branch_name} 2>/dev/null")
|
|
250
252
|
end
|
|
251
253
|
run_command("git checkout -b #{branch_name}", "Failed to create and checkout branch #{branch_name}")
|
|
252
254
|
end
|
data/lib/reissue/version.rb
CHANGED