Skip to content

Commit fd59f69

Browse files
authored
Merge pull request #487 from traversable/changeset-release/main
chore: publish package(s)
2 parents c60c08f + 7c21735 commit fd59f69

File tree

21 files changed

+90
-55
lines changed

21 files changed

+90
-55
lines changed

.changeset/olive-comics-tease.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/olive-pens-happen.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/spicy-falcons-study.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/thick-sheep-do.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/yummy-geckos-allow.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ We do however have schemas, and schemas are basically ASTs.
5959
## Integrations
6060

6161
<ul>
62-
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/arktype"><code>@traversable/arktype@0.0.21</code></a>: Production-grade ArkType schema-rewriters</li>
63-
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/arktype-test"><code>@traversable/arktype-test@0.0.14</code></a>: Configurable ArkType schema-generator (for fuzz testing)</li>
62+
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/arktype"><code>@traversable/arktype@0.0.22</code></a>: Production-grade ArkType schema-rewriters</li>
63+
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/arktype-test"><code>@traversable/arktype-test@0.0.15</code></a>: Configurable ArkType schema-generator (for fuzz testing)</li>
6464
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/arktype-types"><code>@traversable/arktype-types@0.0.15</code></a>: ArkType Functor (for recursion schemes)</a></li>
65-
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema"><code>@traversable/json-schema@0.0.21</code></a>: Production-grade JSON Schema schema-rewriters</li>
66-
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema-test"><code>@traversable/json-schema-test@0.0.19</code></a>: Configurable JSON Schema generator (for fuzz testing)</li>
67-
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema-types"><code>@traversable/json-schema-types@0.0.19</code></a>: JSON Schema Functor (for recursion schemes)</a></li>
65+
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema"><code>@traversable/json-schema@0.0.22</code></a>: Production-grade JSON Schema schema-rewriters</li>
66+
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema-test"><code>@traversable/json-schema-test@0.0.20</code></a>: Configurable JSON Schema generator (for fuzz testing)</li>
67+
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/json-schema-types"><code>@traversable/json-schema-types@0.0.20</code></a>: JSON Schema Functor (for recursion schemes)</a></li>
6868
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/typebox"><code>@traversable/typebox@0.0.26</code></a>: Production-grade TypeBox schema-rewriters</li>
6969
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/typebox-test"><code>@traversable/typebox-test@0.0.15</code></a>: Configurable TypeBox schema-generator (for fuzz testing)</li>
7070
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/typebox-types"><code>@traversable/typebox-types@0.0.18</code></a>: ArkType Functor (for recursion schemes)</a></li>

packages/arktype-test/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @traversable/arktype-test
22

3+
## 0.0.15
4+
5+
### Patch Changes
6+
7+
- [#481](https://github.com/traversable/schema/pull/481) [`08a2e00`](https://github.com/traversable/schema/commit/08a2e00ce3b51e78da4096d6a661960b10491291) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - feat(json-schema,json-schema-types): adds `JsonSchema.deepClone` support for $ref nodes
8+
9+
- [#481](https://github.com/traversable/schema/pull/481) [`69212ec`](https://github.com/traversable/schema/commit/69212ec96a762d2fd5b0a57cbe8b2bb087a88687) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - break(json-schema,json-schema-test,json-schema-types): renames `JsonSchema.Union` to `JsonSchema.AnyOf` and `JsonSchema.Intersection` to `JsonSchema.AllOf`
10+
11+
feat(json-schema,json-schema-test,json-schema-types): adds `JsonSchema.OneOf`
12+
313
## 0.0.14
414

515
### Patch Changes

packages/arktype-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traversable/arktype-test",
33
"type": "module",
4-
"version": "0.0.14",
4+
"version": "0.0.15",
55
"private": false,
66
"description": "",
77
"license": "Hippocratic-2.1",

packages/arktype-test/src/__generated__/__manifest__.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/arktype/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @traversable/arktype
22

3+
## 0.0.22
4+
5+
### Patch Changes
6+
7+
- [#481](https://github.com/traversable/schema/pull/481) [`08a2e00`](https://github.com/traversable/schema/commit/08a2e00ce3b51e78da4096d6a661960b10491291) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - feat(json-schema,json-schema-types): adds `JsonSchema.deepClone` support for $ref nodes
8+
9+
- [#481](https://github.com/traversable/schema/pull/481) [`69212ec`](https://github.com/traversable/schema/commit/69212ec96a762d2fd5b0a57cbe8b2bb087a88687) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - break(json-schema,json-schema-test,json-schema-types): renames `JsonSchema.Union` to `JsonSchema.AnyOf` and `JsonSchema.Intersection` to `JsonSchema.AllOf`
10+
11+
feat(json-schema,json-schema-test,json-schema-types): adds `JsonSchema.OneOf`
12+
13+
- Updated dependencies [[`1df1e66`](https://github.com/traversable/schema/commit/1df1e6615641807ef81e08631e969d9ac467505f), [`fc1b24c`](https://github.com/traversable/schema/commit/fc1b24c194e395a41d49d76c9cfe429f88089b78), [`08a2e00`](https://github.com/traversable/schema/commit/08a2e00ce3b51e78da4096d6a661960b10491291), [`69212ec`](https://github.com/traversable/schema/commit/69212ec96a762d2fd5b0a57cbe8b2bb087a88687), [`65ea071`](https://github.com/traversable/schema/commit/65ea07149e99b631cd8a5874771c14dae5f555dc)]:
14+
- @traversable/json-schema@0.0.22
15+
316
## 0.0.21
417

518
### Patch Changes

0 commit comments

Comments
 (0)