ace-task 0.31.4 → 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: 5e477e2c198c576ab07f7a50eb6756e04448bc1c42e5f5fc17beec674be15527
4
- data.tar.gz: ea40e22f1e761cc6fa7bc3ba9cba138af6047272c3941a39a325f36de5dd527e
3
+ metadata.gz: 911b91460493816a3936af599bfd074c9e4bbfa62fa09704aadd27bfa276096e
4
+ data.tar.gz: be75ba2c8f40cd8f3999914688ce4eab99b844e88b510bd3bd2e36843bb1f1ff
5
5
  SHA512:
6
- metadata.gz: 5dc208ea23a98741cda9b2a65230688dd5fd705e31979d517eb8fa5a9749f9ffa8fc19ca3efa3b52fe5bd4fbc66a915838141098f371ad9eb179c81ad40fc035
7
- data.tar.gz: e0f63752e0a24626c1ffdd27e0c371eee92ed68288f5904f7a7b9d094f035b7dab4b6f35d9c10076bc4c99faf04ff1bc028319f06a3ed0376e24355b9168c1ca
6
+ metadata.gz: 7dd8f6f2a16245332c5cb972f835b917663532f1002957bc113d7225ffa796ac1b66fcc786f458e1b488e8f019a289ff60d9cb631acf3b2288442430c0607e7a
7
+ data.tar.gz: 682b0bcb44391cdf8adc8ef67243c95adc695ebdcad57c5fe98666f259f6c5b264dcc1a425eb2cce8195eadb83029db70ca15f0d31f5b166b0cae54bd5b9d75e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,19 @@ 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`.
17
+
18
+ ## [0.31.5] - 2026-03-29
19
+
20
+ ### Fixed
21
+ - **ace-task v0.31.5**: Bumped dependency constraints to currently available `~>` ranges on RubyGems and updated release metadata after dependency synchronization.
22
+
10
23
  ## [0.31.4] - 2026-03-26
11
24
 
12
25
  ### Added
@@ -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.4"
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.4
4
+ version: 0.31.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
@@ -15,84 +15,84 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '0.25'
18
+ version: '0.29'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '0.25'
25
+ version: '0.29'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: ace-support-fs
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '0.2'
32
+ version: '0.3'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '0.2'
39
+ version: '0.3'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: ace-support-items
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '0.3'
46
+ version: '0.15'
47
47
  type: :runtime
48
48
  prerelease: false
49
49
  version_requirements: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0.3'
53
+ version: '0.15'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: ace-support-markdown
56
56
  requirement: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0.2'
60
+ version: '0.3'
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '0.2'
67
+ version: '0.3'
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: ace-b36ts
70
70
  requirement: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '0.7'
74
+ version: '0.13'
75
75
  type: :runtime
76
76
  prerelease: false
77
77
  version_requirements: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '0.7'
81
+ version: '0.13'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: ace-support-cli
84
84
  requirement: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '0.3'
88
+ version: '0.6'
89
89
  type: :runtime
90
90
  prerelease: false
91
91
  version_requirements: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '0.3'
95
+ version: '0.6'
96
96
  description: Behavioral spec-based task management with compact IDs, subtask trees,
97
97
  AI-powered implementation plans, and automated health checks. Same CLI for developers
98
98
  and coding agents.