ace-support-fs 0.3.1 → 0.3.4

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: d3daf3eb78ac2ae73b1f3a327074e1789dfbffc5097038d0498d9aadae8e2622
4
- data.tar.gz: ea25bdf5b06f18bdf7f0328517cd4b774fc3ef1c1b7f8d87ec4d225bd70bf708
3
+ metadata.gz: 85f1c0c0db5b52cc811b2f17d21b260f0dc8b87d3fc346a36674d1dcc742c677
4
+ data.tar.gz: 376402c582884e1c81fada0f2518bf52ad1709ad27b6eabfceec8c4e75de41d2
5
5
  SHA512:
6
- metadata.gz: 45ed00e32d5a2c68b8aa93bc233b07ffa9abfcfd916927d86fa28b9ec709744fcf08e26e8a4cf6876c6b2ca2e9e8355d25ec9ae00265addab7e5d8947f642453
7
- data.tar.gz: 33f603f392ebaae132fbabfc74e8faf239b28d44d25e910621c890162a04d866f415fed68c9b593820b4d119cae33da0bf90f080c81b15f49e45ced9703dbc9c
6
+ metadata.gz: 8ca3d320025245cae194189fc69bec09def2188c6db742d11960e17a5012b4412f377f95de7bff2ae324334731928394b0d3046f423fc42e134b43dc8cb00a0c
7
+ data.tar.gz: 213fb93884394bd7db89536183346a356aedb35517598bbc4de9698960cf84daa9dbbecd86877bc642ccfd4eb82c3e18bb95d3c11ccd5f5da6ed66320efaff9b
data/CHANGELOG.md CHANGED
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+
11
+ ## [0.3.4] - 2026-09-02
12
+
13
+ ### Technical
14
+ - Included in the coordinated all-package patch release preparation for ACE monorepo review.
15
+ ## [0.3.3] - 2026-04-13
16
+
17
+ ### Changed
18
+ - **ace-support-fs v0.3.3**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
19
+
20
+
21
+ ## [0.3.2] - 2026-04-11
22
+
23
+ ### Technical
24
+ - Moved deterministic tests from `test/atoms` and `test/molecules` into `test/fast/` to align with the fast-only package migration contract.
25
+ - Updated README testing guidance to document `ace-test ace-support-fs` / `ace-test ace-support-fs all` and explicitly avoid `test/feat` and `test/e2e` layers.
26
+
10
27
  ## [0.3.1] - 2026-03-29
11
28
 
12
29
  ### Technical
data/README.md CHANGED
@@ -24,6 +24,18 @@
24
24
 
25
25
  **Build config scans** - discover and rank candidate configuration directories during resolution, supporting the cascade logic in [ace-support-config](../ace-support-config).
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-fs`
37
+ - `ace-test ace-support-fs all`
38
+
27
39
  ---
28
40
 
29
41
  Part of [ACE](https://github.com/cs3b/ace)
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Fs
6
- VERSION = "0.3.1"
6
+ VERSION = "0.3.4"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ace-support-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Czyz
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-03-29 00:00:00.000000000 Z
10
+ date: 2026-09-05 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: Infrastructure gem providing unified path expansion, project root detection,
13
13
  and directory traversal functionality for ace-* gems. Library-only gem following