ace-task 0.31.5 → 0.31.6

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: 363a29e929b21931f9c9d6a712cd6f0b033e371d49ac3dab4be1b3a0dc838fb9
4
- data.tar.gz: 9537ce734de06d1e6196cb62f940e8a5d2cf6c34f027f2d88a83ed5ba27956ea
3
+ metadata.gz: 911b91460493816a3936af599bfd074c9e4bbfa62fa09704aadd27bfa276096e
4
+ data.tar.gz: be75ba2c8f40cd8f3999914688ce4eab99b844e88b510bd3bd2e36843bb1f1ff
5
5
  SHA512:
6
- metadata.gz: 8b564d7935b8fdeb5f297871e446e7fbf9f0a1d29753c7fb65803ad4b0d0b95ffe42367f645d822e2f47a914e359705962cc903bee40c7cefc869276ebc4daec
7
- data.tar.gz: cf705cf469cf4b3af69c01af7fcacbfe982e74b50a7d0c969d6532c337eda4eca2a4479ebc8a62d26d8ee3d3aee8fa9dbf1606689a88a1dbc954122443f6ba21
6
+ metadata.gz: 7dd8f6f2a16245332c5cb972f835b917663532f1002957bc113d7225ffa796ac1b66fcc786f458e1b488e8f019a289ff60d9cb631acf3b2288442430c0607e7a
7
+ data.tar.gz: 682b0bcb44391cdf8adc8ef67243c95adc695ebdcad57c5fe98666f259f6c5b264dcc1a425eb2cce8195eadb83029db70ca15f0d31f5b166b0cae54bd5b9d75e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.31.6] - 2026-03-29
11
+
12
+ ### Fixed
13
+ - `task/review` and `task/update`: replaced split same-task promotion examples with a combined `ace-task update <ref> --set status=pending,needs_review=false` pattern and explicitly banned parallel updates against the same task ref.
14
+
15
+ ### Technical
16
+ - Added command coverage for combined scalar updates including `needs_review=false`.
10
17
 
11
18
  ## [0.31.5] - 2026-03-29
12
19
 
@@ -139,19 +139,19 @@ Validate draft behavioral specifications and promote to pending when ready. This
139
139
 
140
140
  **If Ready (all readiness criteria met):**
141
141
  - **Orchestrator rule:** If the task is an orchestrator, only promote the parent after all draft child subtasks have been reviewed and promoted successfully.
142
+ - **Same-task mutation rule:** Do not run multiple `ace-task update` commands in parallel against the same task ref. Prefer one combined `--set` call when clearing or setting multiple scalar fields on the same task.
142
143
  - **Recursive promotion for orchestrators:**
143
144
  - Review each draft child subtask using the same checklist
144
145
  - Promote each child subtask that passes:
145
146
  ```bash
146
- ace-task update <child-ref> --set status=pending
147
- ace-task update <child-ref> --set needs_review=false
147
+ ace-task update <child-ref> --set status=pending,needs_review=false
148
148
  ```
149
149
  - For any child subtask that fails, keep it in `draft`, set `needs_review=true`, and do not promote the parent
150
150
  - Promote the task status and clear any existing `needs_review` flag:
151
151
  ```bash
152
- ace-task update <ref> --set status=pending
153
- ace-task update <ref> --set needs_review=false
152
+ ace-task update <ref> --set status=pending,needs_review=false
154
153
  ```
154
+ - Validate immediately after each promotion with `ace-task show <ref>` before proceeding to the next same-task mutation or parent promotion.
155
155
  - Report promotion:
156
156
  ```
157
157
  Task <ref> promoted from draft to pending.
@@ -348,4 +348,4 @@ This approach enables:
348
348
 
349
349
  ---
350
350
 
351
- This workflow ensures draft tasks are validated and promoted to pending when ready, or blocked with clear questions when not, serving as the quality gate between behavioral specification and implementation planning.
351
+ This workflow ensures draft tasks are validated and promoted to pending when ready, or blocked with clear questions when not, serving as the quality gate between behavioral specification and implementation planning.
@@ -46,10 +46,14 @@ Load and follow:
46
46
  ace-task update <ref> --set status=in-progress
47
47
  ace-task update <ref> --set status=done
48
48
  ace-task update <ref> --set status=done,priority=high
49
+ ace-task update <ref> --set status=pending,needs_review=false
49
50
  ace-task update <ref> --add tags=shipped
50
51
  ace-task update <ref> --remove tags=wip
51
52
  ```
52
53
 
54
+ - When multiple scalar fields on the same task must change together, prefer one combined `--set a=x,b=y` command.
55
+ - Do not run multiple `ace-task update` commands in parallel against the same task ref.
56
+
53
57
  3. **Apply hierarchy updates via `--move-as-child-of`**
54
58
 
55
59
  - Promote a subtask to standalone
@@ -90,6 +94,7 @@ Load and follow:
90
94
 
91
95
  - Re-open target task: `ace-task show <ref>`
92
96
  - Confirm metadata, location, parent/child relationship, and position
97
+ - If you combined multiple field updates, confirm all fields persisted before issuing another same-task mutation
93
98
  - Verify dry-run output before executing non-idempotent moves
94
99
 
95
100
  ## Error Handling
@@ -115,4 +120,4 @@ Load and follow:
115
120
  - Reparenting operations produce the intended hierarchy state
116
121
  - Sort position changes place the task at the requested location
117
122
  - Location moves place the task in the intended folder/release
118
- - Final `ace-task show <ref>` output matches expected target state
123
+ - Final `ace-task show <ref>` output matches expected target state
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module Task
5
- VERSION = '0.31.5'
5
+ VERSION = '0.31.6'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-task
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.5
4
+ version: 0.31.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz