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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f08d9caa1ad2c88dad863836f1a6bacfc6146d6d4470be14bba933ba64e3be7
4
- data.tar.gz: d01ed1faae5c5cfc1c972dbc37b9512c33ffd7a1276058dd6dd681a0d7099483
3
+ metadata.gz: ec1bcd720b385fc4a7b4ee0ef635d143e6390ed2e5ead9c11b7101648277263f
4
+ data.tar.gz: 5c8ba418790813a599ae0f9f96249e69bb146f23883c0369082c6a954f9491f8
5
5
  SHA512:
6
- metadata.gz: 89ba27a236b9bbd3ac28c677d98f7cb8bc37d74a1e6b41e4ad7f2d4c39c3b1a905b0c5f0a9c76ba9dfc8239257c6465f40137a9f99ecaa51740e4a7ecdd52f3b
7
- data.tar.gz: 18c127dfc3f50dce363bf1346673ea54d734cc6d8fdedd30dcb72a6e49198a4ce582e5106da33f2bfee60f4c988faff78bd036324c264db454e8d73dd633496a
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.8] - 2025-12-19
9
-
10
- ## [0.4.7] - 2025-12-10
8
+ ## [0.4.9] - 2026-01-15
11
9
 
12
10
  ### Fixed
13
11
 
14
- - Git command failures now raise detailed errors with full output (d87ffd3)
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
- - Error messages include command, exit status, stdout, and stderr (d87ffd3)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Reissue
4
- VERSION = "0.4.8"
4
+ VERSION = "0.4.9"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reissue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Gay