ace-support-markdown 0.3.2 → 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: 1b8143e74bd568a574d2552963c9ba3cf81b453ee8f46356c4160f4ce068dab2
4
- data.tar.gz: 3247b9753affd36f63232473a2a1b5bd33f28ac7858884e1e7b29a930c937790
3
+ metadata.gz: 12f7f18b2479df6ff99939f469b3b533c419068c8fc1ccca1e0867238a75cb15
4
+ data.tar.gz: c7d47ba40ad73cd8f3f641b41b0c2f41058424eeeedd449b3bb2bf2703598f2a
5
5
  SHA512:
6
- metadata.gz: 792f428b0988b4d16c007545258b7156252eb409527bf7309691033c196607cd2b342b4b31485f3a326cc4a4cfbaa5e100376113507df2fd75ebb209763d2b36
7
- data.tar.gz: 58bcf790e777ed9991814cde3097071a443febcb2dedec433a5763842073db3a177887448ca884b931845e710c05887a9d607b2bb9909d52c9085097b4bd53d6
6
+ metadata.gz: e7eeb0b049a13467a010a7d97d9299766477a2911f9f4d9355493e3ece06f6c443641ce4cb8008a91e88443c5541508346224d9aa21440915272033562b7f67b
7
+ data.tar.gz: e1e0a3f089d16336b94f5415dcdb1faaceb3dc6c00145ea1ea906a01ef68589edaa59a0aea1ff5f5e2ce41c8a2945053c0280bed0038e6a17ac80e3512e107d9
data/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.4] - 2026-04-13
11
+
12
+ ### Changed
13
+ - **ace-support-markdown v0.3.4**: Standardized shared package tests to the fast-only layout and updated testing flow defaults.
14
+
15
+
16
+ ## [0.3.3] - 2026-04-11
17
+
18
+ ### Changed
19
+ - Migrated deterministic package tests to the batch-2 layer layout:
20
+ - moved smoke and atom suites to `test/fast/`
21
+ - moved deterministic integration suites to `test/feat/`
22
+ - Updated package testing contract docs to use `fast`/`feat` naming and commands.
23
+
10
24
  ## [0.3.2] - 2026-03-29
11
25
 
12
26
  ### Technical
@@ -123,7 +137,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123
137
  - Performance: <10ms frontmatter updates, <50ms section edits
124
138
  - Zero-corruption design with validation and rollback
125
139
 
126
- [Unreleased]: https://github.com/cs3b/ace/compare/v0.2.2...HEAD
140
+ [Unreleased]: https://github.com/cs3b/ace/compare/v0.3.3...HEAD
141
+ [0.3.3]: https://github.com/cs3b/ace/compare/v0.3.2...v0.3.3
142
+ [0.3.2]: https://github.com/cs3b/ace/compare/v0.3.1...v0.3.2
143
+ [0.3.1]: https://github.com/cs3b/ace/compare/v0.3.0...v0.3.1
144
+ [0.3.0]: https://github.com/cs3b/ace/compare/v0.2.2...v0.3.0
145
+ [0.1.3]: https://github.com/cs3b/ace/compare/v0.1.2...v0.1.3
127
146
  [0.2.2]: https://github.com/cs3b/ace/compare/v0.2.1...v0.2.2
128
147
  [0.2.1]: https://github.com/cs3b/ace/compare/v0.2.0...v0.2.1
129
148
  [0.2.0]: https://github.com/cs3b/ace/compare/v0.1.2...v0.2.0
data/CONTRIBUTING.md CHANGED
@@ -38,7 +38,7 @@ When adding new functionality:
38
38
  2. **Write tests first**: Add test cases before implementation
39
39
  3. **Implement the feature**: Follow existing patterns and conventions
40
40
  4. **Update documentation**: Add examples to README.md
41
- 5. **Add README tests**: Create tests in `test/integration/readme_examples_test.rb`
41
+ 5. **Add README tests**: Create tests in `test/feat/readme_examples_test.rb`
42
42
  6. **Run full test suite**: `bundle exec rake test`
43
43
  7. **Update CHANGELOG.md**: Document the new feature
44
44
 
@@ -61,7 +61,7 @@ When modifying the public API:
61
61
  1. **Update implementation** in `lib/`
62
62
  2. **Update corresponding tests** in `test/`
63
63
  3. **Update README examples** - this is critical!
64
- 4. **Update README example tests** in `test/integration/readme_examples_test.rb`
64
+ 4. **Update README example tests** in `test/feat/readme_examples_test.rb`
65
65
  5. **Run test suite** - README tests will catch doc/code mismatches
66
66
  6. **Update CHANGELOG.md**
67
67
  7. **Consider semver implications**:
@@ -75,7 +75,7 @@ When modifying the public API:
75
75
 
76
76
  **Our Solution**: Automated validation of README examples.
77
77
 
78
- The test file `test/integration/readme_examples_test.rb` validates that:
78
+ The test file `test/feat/readme_examples_test.rb` validates that:
79
79
  - Code examples in README.md are syntactically correct
80
80
  - Examples work against the current API
81
81
  - API behavior matches what's documented
@@ -98,10 +98,10 @@ The test file `test/integration/readme_examples_test.rb` validates that:
98
98
  ```
99
99
  test/
100
100
  ├── atoms/ # Unit tests for pure functions
101
- ├── molecules/ # Integration tests for operations
101
+ ├── molecules/ # Operation-focused tests
102
102
  ├── organisms/ # End-to-end tests for orchestration
103
103
  ├── models/ # Tests for data structures
104
- └── integration/ # Full workflow tests + README validation
104
+ └── feat/ # Full workflow tests + README validation
105
105
  ```
106
106
 
107
107
  ### Writing Tests
data/README.md CHANGED
@@ -24,6 +24,16 @@
24
24
 
25
25
  **Preserve history during edits** - maintain backup and rollback safety for write-heavy operations so that tools like [`ace-task`](../ace-task) can update specs confidently in batch workflows.
26
26
 
27
+ ## Testing Contract
28
+
29
+ This package now follows the batch-2 deterministic `fast` + `feat` model.
30
+
31
+ - `ace-test ace-support-markdown` runs the default deterministic fast loop (`test/fast/`).
32
+ - `ace-test ace-support-markdown feat` runs deterministic feature coverage (`test/feat/`).
33
+ - `ace-test ace-support-markdown all` runs the package contract end-to-end for deterministic layers.
34
+
35
+ The package does not own a `test/e2e/` surface in this migration slice.
36
+
27
37
  ---
28
38
 
29
39
  Part of [ACE](https://github.com/cs3b/ace)
@@ -3,7 +3,7 @@
3
3
  module Ace
4
4
  module Support
5
5
  module Markdown
6
- VERSION = '0.3.2'
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-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
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-04-20 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: kramdown