ace-git 0.18.5 → 0.19.0

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: 1c027540195a5081320ef9e440582480cd4b3682190e40c24d123b4a54dd41f9
4
- data.tar.gz: a2ae2188b33cb9762a9436c335da45903d8342f4531dd0a56a19522637bc3e81
3
+ metadata.gz: 20769f2cd0637983959bf770812eb746d5334f8b22a5466f8c4398b5a9a9a54a
4
+ data.tar.gz: 6225bf184de1971c3f180f23353938e9f4d48acd44f99438cfe1eeb53421d9c4
5
5
  SHA512:
6
- metadata.gz: a87fcd62b3731fdd3061621431b70ba3cb68c63fa17e8f353ddeef68f84dd603beb9e39e9a9d360a33e73b4160bd73097224995fcb8a4984372eca83751c3d17
7
- data.tar.gz: 73e2fc197ad8772004f7244e483434d1555e73cca95641a472900f007fc94a87ad9a044f294785e15003797915925d20e894842b70bc4f75bce2de2c89048392
6
+ metadata.gz: 5d707e9c9fedc65363f7fd8a9e9e8513e04b1978fc4b2b7fb7a4d1244ac0a59bcff4f9dd73f4de0e8261622d5ab253b73c7be194d2df0820ab0635701282e39b
7
+ data.tar.gz: 930bf870b7b7e4cd7b86081cec6ef8766356dfb2b8e91273b93e29fe7398ffe38343bf390b204de9172ccb655523747307d6bf854a78a3c609d5cf0e8a6686f4
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.19.0] - 2026-03-29
11
+
12
+ ### Changed
13
+ - Defaulted `github/release-publish` to package-grouped release notes, with `--group-by date` now opting into the legacy layout.
14
+ - Switched live GitHub release creation guidance to `--notes-file` so markdown release bodies with inline code do not break shell execution.
15
+
10
16
  ## [0.18.5] - 2026-03-29
11
17
 
12
18
  ### Added
@@ -56,5 +56,6 @@ None
56
56
  - Run `ace-bundle wfi://github/release-publish` in the current project to load the workflow instructions.
57
57
  - Read the loaded workflow and execute it end-to-end in this project.
58
58
  - Follow the workflow as the source of truth.
59
+ - Unless the caller explicitly passes `--group-by date`, treat release body grouping as `package` by default.
59
60
  - Do the work described by the workflow instead of only summarizing it.
60
61
  - When the workflow requires edits, tests, or commits, perform them in this project.
@@ -18,7 +18,7 @@ Create GitHub releases from root `CHANGELOG.md` entries that have no correspondi
18
18
  - `$version`: explicit version like `v0.9.846`, or range like `v0.9.840..v0.9.846`
19
19
  - `$since`: time filter like `"3 days"` or `"this week"`
20
20
  - `$dry_run`: if set, print what would be created without creating anything
21
- - `$group_by`: optional mode switch. `date` (default) keeps legacy daily grouping. `package` enables package-first grouping inside each date bucket.
21
+ - `$group_by`: optional mode switch. `package` (default) enables package-first grouping inside each date bucket. `date` keeps the legacy daily grouping.
22
22
  - `$category_order`: optional ordered category list, e.g. `fixed,added,changed,technical` (defaults to fixed → added → changed → technical)
23
23
 
24
24
  ## Instructions
@@ -116,8 +116,8 @@ No unpublished versions found matching the given criteria.
116
116
 
117
117
  Use `$group_by` to choose the release body layout. Release tags/titles still use date-bucket grouping (highest version per date).
118
118
 
119
- - `date` (default): preserve current behavior, one release body per date in descending version order separated by `---`.
120
- - `package`: within each date bucket, group entries as package blocks and then categories.
119
+ - `package` (default): within each date bucket, group entries as package blocks and then categories.
120
+ - `date`: preserve legacy behavior, one release body per date in descending version order separated by `---`.
121
121
 
122
122
  Date mode example:
123
123
 
@@ -205,7 +205,7 @@ Process each daily group from oldest date to newest:
205
205
  ```bash
206
206
  gh release create "v${VERSION}" \
207
207
  --title "v${VERSION}" \
208
- --notes "${COMBINED_BODY}" \
208
+ --notes-file ".ace-local/github-release/v${VERSION}-notes.md" \
209
209
  --target "${SHA}"
210
210
  ```
211
211
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module Git
5
- VERSION = '0.18.5'
5
+ VERSION = '0.19.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.5
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz