ace-b36ts 0.13.2 → 0.14.8
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 +49 -0
- data/lib/ace/b36ts/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: d251aae76e75ebc39332ae9c44278c1f08add08b9cf003678540bb159680539d
|
|
4
|
+
data.tar.gz: ee7b9148b141df20ba9e33f97a092973b6271e457256b171060102f12f966dad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02f82ea1dc20daea92bb49a6eb7a9b1ba34085b72cb5cb115818954bc8fb87ee9ae427413e51d78adc54c5ce5502aec1f98a7bdd304c343c88483d40ed944a42
|
|
7
|
+
data.tar.gz: '083e0a974761f51bfd0222a5363fbfb491ae3ac27126e80f348ea4e4ada2725cec99356896a528bcca4c96541c73cfc248a7151453f99440e0577ce7493f6414'
|
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.14.8] - 2026-04-19
|
|
11
|
+
|
|
12
|
+
### Technical
|
|
13
|
+
- Hardened `TS-B36TS-001` decode roundtrip runner guidance so the encoded token is persisted before public decode commands execute.
|
|
14
|
+
|
|
15
|
+
## [0.14.7] - 2026-04-16
|
|
16
|
+
|
|
17
|
+
### Technical
|
|
18
|
+
- Captured explicit archive-tree, inbox-empty, and shared-token evidence in `TS-B36TS-001` so reorganization and decode roundtrip verification no longer depend on inferred sandbox state.
|
|
19
|
+
|
|
20
|
+
## [0.14.6] - 2026-04-15
|
|
21
|
+
|
|
22
|
+
### Technical
|
|
23
|
+
- Expanded `TS-B36TS-001` into a public-surface goal workflow with repaired TC-001 contract checks and new decode/split-json cases (`TC-002`, `TC-003`) verified through real CLI outputs.
|
|
24
|
+
|
|
25
|
+
## [0.14.5] - 2026-04-13
|
|
26
|
+
|
|
27
|
+
### Technical
|
|
28
|
+
- Rewrote `TS-B36TS-001` to follow the goal-based E2E contract by judging note reorganization from sandbox end state and runner observations instead of runner-authored helper artifacts.
|
|
29
|
+
|
|
30
|
+
## [0.14.4] - 2026-04-11
|
|
31
|
+
|
|
32
|
+
### Technical
|
|
33
|
+
- Renamed the package-local `ace-test` config surface from `groups:` to `targets:` so `ace-b36ts` matches the shared `fast` / `feat` target contract.
|
|
34
|
+
|
|
35
|
+
### Technical
|
|
36
|
+
- Piloted the new `test/fast`, `test/feat`, and `test/e2e` layout in `ace-b36ts`, added package-local `ace-test` aliases (`unit -> fast`, `integration/int -> feat`), and refreshed the layout demo tape to use the new test surface.
|
|
37
|
+
|
|
38
|
+
## [0.14.2] - 2026-04-10
|
|
39
|
+
|
|
40
|
+
### Technical
|
|
41
|
+
- Moved deterministic restarted-E2E coverage to `test/integration`, relocated the pilot agent scenario to `test/e2e`, and refreshed the layout demo tape to match the restarted contract.
|
|
42
|
+
|
|
43
|
+
## [0.14.1] - 2026-04-10
|
|
44
|
+
|
|
45
|
+
### Technical
|
|
46
|
+
- Restored deterministic CLI contract coverage for shell command-substitution roundtrips and lexical ordering across out-of-order timestamps.
|
|
47
|
+
|
|
48
|
+
## [0.14.0] - 2026-04-10
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
- Replaced the pilot deterministic runner suite with `test/integration` Minitest coverage for the restarted two-phase E2E architecture.
|
|
52
|
+
- Added a real note-reorganization agent scenario under `test/e2e` to validate the agent-runtime phase of the two-phase contract against `ace-b36ts`.
|
|
53
|
+
|
|
54
|
+
## [0.13.3] - 2026-03-29
|
|
55
|
+
|
|
56
|
+
### Technical
|
|
57
|
+
- Normalized published gem metadata so RubyGems and Ruby Toolbox use current release information instead of the 1980 fallback date.
|
|
58
|
+
|
|
10
59
|
|
|
11
60
|
## [0.13.2] - 2026-03-29
|
|
12
61
|
|
data/lib/ace/b36ts/version.rb
CHANGED
|
@@ -6,6 +6,6 @@ module Ace
|
|
|
6
6
|
# Namespace changed from Ace::Timestamp to Ace::Support::Timestamp
|
|
7
7
|
# Version 0.6.0: Gem renamed from ace-support-timestamp to ace-b36ts
|
|
8
8
|
# Namespace changed from Ace::Support::Timestamp to Ace::B36ts
|
|
9
|
-
VERSION = '0.
|
|
9
|
+
VERSION = '0.14.8'
|
|
10
10
|
end
|
|
11
11
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-b36ts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: ace-support-config
|