ace-hitl 0.8.1 → 0.8.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: 023ac667ab1aeb2461bca17879624eea0f253da5ef0e6b9df7e9e36c5b7c56b1
4
- data.tar.gz: 0de42519e3c8517c133b5ff2a85f74a2a9145e2cd236f095be9756ae8319609a
3
+ metadata.gz: d3661968abbe2abf17fc1cf79fbe2a4d710805c134825dfa525661b64d27bd6d
4
+ data.tar.gz: 0c1b3ba003b4ce8020458d8f23909bbed8d2331a81cda9f83f33c23bcb6aaa28
5
5
  SHA512:
6
- metadata.gz: 679e788540f1312fa6d6a1639152a1429fc2aa54e5f9746e3d5a795390ab4de5a962333851e03525172c51780bfd55e17175697109c15edd6bd5ba275abc1cc1
7
- data.tar.gz: f011610b3261903a8a211c47c9600a87eef48e7bb6471a6007cbf617eb8ff89d58767c6606c1d4d676bbee60aef32c624172056c37d551aa225a1a806c4870af
6
+ metadata.gz: 4ad8b699ab12f9ba22283fb1259cd5a9c5cb5b1de13e579097c8b8d3f1926f9200affb2e30aa6569c37720127da2c5ecb2202d4ad01b9b2a6594eb4fd5032880
7
+ data.tar.gz: 84f7b019ef890ab2b5e0d77b2ce8f75ef9618ffe1f03dbf63bfc3fbf9b762809f7bf4a42dc9e1fc43ef2b8139d3aca3c5d54725c3aad844177ec9b32194de1c0
data/CHANGELOG.md CHANGED
@@ -7,6 +7,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.8.9] - 2026-08-12
11
+
12
+ ### Technical
13
+ - Raised the `ace-support-core` dependency floor to `~> 0.31` after the principles-first bootstrap guidance release.
14
+ ## [0.8.8] - 2026-08-12
15
+
16
+ ### Technical
17
+ - Aligned gemspec dependency floors with current ACE package minor release lines and safe external minor dependency bumps (no major version jumps).
18
+
19
+ ## [0.8.7] - 2026-04-13
20
+
21
+ ### Changed
22
+ - **ace-hitl v0.8.7**: Published handbook and HITL migration release changes for HitL package.
23
+
24
+
25
+
26
+ ### Technical
27
+ - Replaced the CLI library-contract version assertion with a semantic-version schema check so the fast test validates version shape instead of a pinned release line.
28
+ ## [0.8.6] - 2026-04-11
29
+
30
+ ### Technical
31
+
32
+ - Updated the CLI contract test assertion to `0.8.6` so it matches the current released line.
33
+
34
+ ## [0.8.5] - 2026-04-11
35
+
36
+ ### Technical
37
+
38
+ - Updated the CLI contract test version assertion to match the `Ace::Hitl::VERSION` release line (`0.8.5`) after fit-cycle feedback fixes.
39
+
40
+ ## [0.8.4] - 2026-04-11
41
+
42
+ ### Technical
43
+
44
+ - Updated the CLI contract test to assert `Ace::Hitl::VERSION` (`0.8.4`) after the follow-up review-cycle patch release.
45
+
46
+ ## [0.8.3] - 2026-04-11
47
+
48
+ ### Technical
49
+
50
+ - Updated the CLI contract test to assert the current released package version after the 0.8.2 batch migration release.
51
+
52
+ ## [0.8.2] - 2026-04-11
53
+
54
+ ### Technical
55
+
56
+ - Migrated deterministic CLI test coverage to `test/fast/commands/` for fast-only package alignment.
57
+ - Updated package docs and demo test references to document and use the fast-only test contract.
58
+
10
59
  ## [0.8.1] - 2026-04-05
11
60
 
12
61
  ### Changed
data/README.md CHANGED
@@ -35,6 +35,18 @@ ace-hitl wait abc123
35
35
  ace-hitl update abc123 --answer "Use JWT with server-side refresh tokens." --resume
36
36
  ```
37
37
 
38
+ ## Testing
39
+
40
+ This package is **fast-only** in the ACE testing model.
41
+
42
+ - Deterministic test coverage lives under `test/fast/`.
43
+ - This migration does not introduce `test/feat/` or `test/e2e/` for this package.
44
+
45
+ Verification commands:
46
+
47
+ - `ace-test ace-hitl`
48
+ - `ace-test ace-hitl all`
49
+
38
50
  ## Ownership Boundary
39
51
 
40
52
  `ace-hitl` owns HITL-specific event semantics and markdown contract.
@@ -29,9 +29,9 @@ scenes:
29
29
  commands:
30
30
  - type: clear
31
31
  sleep: 1s
32
- - type: ace-test test/commands/hitl_cli_test.rb --filter test_show_scope_all_errors_on_ambiguous_ref_with_candidates
32
+ - type: ace-test test/fast/commands/hitl_cli_test.rb --filter test_show_scope_all_errors_on_ambiguous_ref_with_candidates
33
33
  sleep: 5s
34
- - type: ace-test test/commands/hitl_cli_test.rb --filter test_update_answer_preserves_markdown_headings_in_answer_body
34
+ - type: ace-test test/fast/commands/hitl_cli_test.rb --filter test_update_answer_preserves_markdown_headings_in_answer_body
35
35
  sleep: 5s
36
36
  teardown:
37
37
  - cleanup
data/docs/usage.md CHANGED
@@ -17,6 +17,20 @@ Canonical handbook resources:
17
17
 
18
18
  Runtime store default: `.ace-local/hitl/` (legacy `.ace-hitl/` is no longer used as default).
19
19
 
20
+ ## Testing
21
+
22
+ `ace-hitl` is currently a **fast-only** package in the ACE testing model.
23
+
24
+ - Deterministic coverage lives under `test/fast/`.
25
+ - This package does not introduce `test/feat/` or `test/e2e/` in this migration.
26
+
27
+ Verification commands:
28
+
29
+ ```bash
30
+ ace-test ace-hitl
31
+ ace-test ace-hitl all
32
+ ```
33
+
20
34
  ## Create
21
35
 
22
36
  ```bash
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Ace
4
4
  module Hitl
5
- VERSION = "0.8.1"
5
+ VERSION = "0.8.9"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-hitl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-04-05 00:00:00.000000000 Z
10
+ date: 2026-08-12 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: ace-support-core
@@ -15,28 +15,28 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '0.29'
18
+ version: '0.31'
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.29'
25
+ version: '0.31'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: ace-support-config
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: '0.9'
32
+ version: '0.17'
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.9'
39
+ version: '0.17'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: ace-support-fs
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -71,14 +71,14 @@ dependencies:
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '0.13'
74
+ version: '0.14'
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.13'
81
+ version: '0.14'
82
82
  - !ruby/object:Gem::Dependency
83
83
  name: ace-support-cli
84
84
  requirement: !ruby/object:Gem::Requirement