ace-support-items 0.15.6 → 0.15.10
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 +25 -0
- data/README.md +12 -0
- data/lib/ace/support/items/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: aa3af68ac575a11d7885ba4c99f6fdf7ed17d0cdd756f38658754f8cb2e2589e
|
|
4
|
+
data.tar.gz: 07a3dac5bc922d15bd1ca8c35169d084de924ae927795190a038a99b944a35b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd68be4d98ac1cbeeb32941ff748702ace44b9c00bbfff7eb033c924647837b9382639896d72320514d0c1ccabbc72dbc9469d632be0db219402e6759304e8e8
|
|
7
|
+
data.tar.gz: 1d4c2641096024e1fa08c6957507d451166a6fd5d7ceeb03bf59719384f14df1fc1da071dcd3366b1db71bbd4849c4f4b3c12ff4f8243df324bc925a008275f9
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.15.10] - 2026-04-13
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- **ace-support-items v0.15.10**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [0.15.9] - 2026-04-11
|
|
17
|
+
|
|
18
|
+
### Technical
|
|
19
|
+
- Fixed the spawned field-updater lock test to load package code from the repository `lib/` path after the `test/fast/` migration.
|
|
20
|
+
|
|
21
|
+
## [0.15.8] - 2026-04-11
|
|
22
|
+
|
|
23
|
+
### Technical
|
|
24
|
+
- Migrated deterministic tests from `test/{atoms,models,molecules}` into `test/fast/{atoms,models,molecules}` for the fast/feat/e2e model.
|
|
25
|
+
- Documented `ace-support-items` as a fast-only package and kept deterministic verification on:
|
|
26
|
+
- `ace-test ace-support-items`
|
|
27
|
+
- `ace-test ace-support-items all`
|
|
28
|
+
- Confirmed this migration does not introduce `test/feat/` or `test/e2e/` layers.
|
|
29
|
+
|
|
30
|
+
## [0.15.7] - 2026-03-29
|
|
31
|
+
|
|
32
|
+
### Technical
|
|
33
|
+
- Normalized published gem metadata so RubyGems and Ruby Toolbox use current release information instead of the 1980 fallback date.
|
|
34
|
+
|
|
10
35
|
## [0.15.6] - 2026-03-29
|
|
11
36
|
|
|
12
37
|
### Fixed
|
data/README.md
CHANGED
|
@@ -24,6 +24,18 @@
|
|
|
24
24
|
|
|
25
25
|
**Normalize metadata safely** - sanitize slugs and arguments before persistence, preventing malformed entries in item stores.
|
|
26
26
|
|
|
27
|
+
## Testing Contract
|
|
28
|
+
|
|
29
|
+
This package is **fast-only** in the ACE testing model.
|
|
30
|
+
|
|
31
|
+
- Deterministic coverage lives under `test/fast/`.
|
|
32
|
+
- This migration does not introduce `test/feat/` or `test/e2e/` for this package.
|
|
33
|
+
|
|
34
|
+
Run:
|
|
35
|
+
|
|
36
|
+
- `ace-test ace-support-items`
|
|
37
|
+
- `ace-test ace-support-items all`
|
|
38
|
+
|
|
27
39
|
---
|
|
28
40
|
|
|
29
41
|
Part of [ACE](https://github.com/cs3b/ace)
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-support-items
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.15.
|
|
4
|
+
version: 0.15.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
8
8
|
bindir: bin
|
|
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-core
|