ace-git 0.19.2 → 0.19.3
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 +5 -0
- data/handbook/workflow-instructions/git/rebase.wf.md +9 -0
- data/lib/ace/git/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6de57ed11849e98fe1955d76111319dc711368343272b6b2d80dd58bc6f65bef
|
|
4
|
+
data.tar.gz: d05cb9bacf11ef83814bf2f763c3e3904ac527a2a8c6aa2164be413861cbe208
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb44c158096edc47a8d49b30fceb7f0cad852ff655f630ac6a585fa962ef4b81d3d749639778ef29bb98148f74be599dfcd4e1f698b63de4e9bce7932c944347
|
|
7
|
+
data.tar.gz: aff4d087154edc8ecc6dc8f90d9ee2db4a0f00933860a0b8331d7624b0d5f71d9276d33830b6cda07f1ce3021dd502bdb14f7db697396055cc4bbeef0e5a0bca
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.19.3] - 2026-03-31
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Added Gemfile.lock sync step to rebase workflow to prevent stale lockfiles after version conflict resolution.
|
|
14
|
+
|
|
10
15
|
## [0.19.2] - 2026-03-29
|
|
11
16
|
|
|
12
17
|
### Technical
|
|
@@ -311,6 +311,15 @@ fi
|
|
|
311
311
|
## Phase 5: Push Changes
|
|
312
312
|
|
|
313
313
|
```bash
|
|
314
|
+
# Sync lockfile after version changes (mono-repo: version.rb edits during rebase make lockfile stale)
|
|
315
|
+
if [ -f Gemfile.lock ]; then
|
|
316
|
+
bundle install
|
|
317
|
+
if ! git diff --quiet Gemfile.lock; then
|
|
318
|
+
git add Gemfile.lock
|
|
319
|
+
git commit -m "chore: sync Gemfile.lock after rebase"
|
|
320
|
+
fi
|
|
321
|
+
fi
|
|
322
|
+
|
|
314
323
|
# Run tests before pushing
|
|
315
324
|
if ! ace-test; then
|
|
316
325
|
echo "ERROR: Tests failed. Fix before pushing."
|
data/lib/ace/git/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-git
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.19.
|
|
4
|
+
version: 0.19.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-04-01 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-config
|