Skip to content

Commit 8c56358

Browse files
chore: publish package(s)
1 parent fc979de commit 8c56358

File tree

13 files changed

+74
-49
lines changed

13 files changed

+74
-49
lines changed

.changeset/dry-cars-know.md

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

.changeset/mean-cats-float.md

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

.changeset/tricky-eagles-fix.md

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ We do however have schemas, and schemas are basically ASTs.
7171
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/valibot"><code>@traversable/[email protected]</code></a>: Production-grade Valibot schema-rewriters</li>
7272
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/valibot-test"><code>@traversable/[email protected]</code></a>: Configurable Valibot schema-generator (for fuzz testing)</li>
7373
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/valibot-types"><code>@traversable/[email protected]</code></a>: Valibot Functor (for recursion schemes)</a></li>
74-
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/zod"><code>@traversable/[email protected].54</code></a>: Production-grade zod schema-rewriters</li>
75-
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/zod-test"><code>@traversable/[email protected].25</code></a>: Configurable zod schema-generator (for fuzz testing)</li>
76-
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/zod-types"><code>@traversable/[email protected].29</code></a>: zod Functor (for recursion schemes)</a></li>
74+
<li>📦 <a href="https://github.com/traversable/schema/tree/main/packages/zod"><code>@traversable/[email protected].55</code></a>: Production-grade zod schema-rewriters</li>
75+
<li>🔬 <a href="https://github.com/traversable/schema/tree/main/packages/zod-test"><code>@traversable/[email protected].26</code></a>: Configurable zod schema-generator (for fuzz testing)</li>
76+
<li>🌳 <a href="https://github.com/traversable/schema/tree/main/packages/zod-types"><code>@traversable/[email protected].30</code></a>: zod Functor (for recursion schemes)</a></li>
7777
</ul>
7878

7979
## Libraries

packages/zod-test/CHANGELOG.md

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

3+
## 0.0.26
4+
5+
### Patch Changes
6+
7+
- [#545](https://github.com/traversable/schema/pull/545) [`424f517`](https://github.com/traversable/schema/commit/424f517b087f3971f56b8b2854ab5b25064e49f9) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - feat(zod-test): adds `zxTest.fuzz` support for more string schema formats
8+
9+
### formats
10+
- `z.cidr`
11+
- `z.cidr2`
12+
- `z.cuid`
13+
- `z.cuid2`
14+
- `z.e164`
15+
- `z.email`
16+
- `z.emoji`
17+
- `z.ksuid`
18+
- `z.nanoid`
19+
- `z.ulid`
20+
- `z.xid`
21+
22+
- [#545](https://github.com/traversable/schema/pull/545) [`1767355`](https://github.com/traversable/schema/commit/17673554199b582f8460ca9cb2911caea6c8a359) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - feat(zod-test): adds `zxTest.fuzz` for generating configurable, overridable fast-check arbitraries from a Zod schema (#544)
23+
24+
- Updated dependencies [[`1767355`](https://github.com/traversable/schema/commit/17673554199b582f8460ca9cb2911caea6c8a359)]:
25+
- @traversable/zod-types@0.0.30
26+
327
## 0.0.25
428

529
### Patch Changes

packages/zod-test/package.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traversable/zod-test",
33
"type": "module",
4-
"version": "0.0.25",
4+
"version": "0.0.26",
55
"private": false,
66
"description": "",
77
"license": "MIT",
@@ -50,10 +50,18 @@
5050
"zod": "4"
5151
},
5252
"peerDependenciesMeta": {
53-
"@traversable/registry": { "optional": false },
54-
"@traversable/zod-types": { "optional": true },
55-
"fast-check": { "optional": false },
56-
"zod": { "optional": false }
53+
"@traversable/registry": {
54+
"optional": false
55+
},
56+
"@traversable/zod-types": {
57+
"optional": true
58+
},
59+
"fast-check": {
60+
"optional": false
61+
},
62+
"zod": {
63+
"optional": false
64+
}
5765
},
5866
"devDependencies": {
5967
"@traversable/registry": "workspace:^",

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

Lines changed: 13 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/zod-types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @traversable/zod-types
22

3+
## 0.0.30
4+
5+
### Patch Changes
6+
7+
- [#545](https://github.com/traversable/schema/pull/545) [`1767355`](https://github.com/traversable/schema/commit/17673554199b582f8460ca9cb2911caea6c8a359) Thanks [@ahrjarrett](https://github.com/ahrjarrett)! - feat(zod-test): adds `zxTest.fuzz` for generating configurable, overridable fast-check arbitraries from a Zod schema (#544)
8+
39
## 0.0.29
410

511
### Patch Changes

packages/zod-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@traversable/zod-types",
33
"type": "module",
4-
"version": "0.0.29",
4+
"version": "0.0.30",
55
"private": false,
66
"description": "",
77
"license": "MIT",

packages/zod-types/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.

0 commit comments

Comments
 (0)