Skip to content

Commit c2aad55

Browse files
chore(release): 📦 version packages (#302)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent eb37304 commit c2aad55

12 files changed

+87
-46
lines changed

‎.changeset/fair-rats-hammer.md

-15
This file was deleted.

‎.changeset/good-rabbits-exercise.md

-5
This file was deleted.

‎.changeset/quick-elephants-confess.md

-13
This file was deleted.

‎.changeset/tough-schools-drum.md

-5
This file was deleted.

‎.changeset/yellow-carrots-joke.md

-5
This file was deleted.

‎bun.lockb

495 KB
Binary file not shown.

‎packages/core/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @t3-oss/env-core
22

3+
## 0.12.0
4+
5+
### Minor Changes
6+
7+
- [#299](https://github.com/t3-oss/t3-env/pull/299) [`b13d46b`](https://github.com/t3-oss/t3-env/commit/b13d46b84cdeed816b0b7b28a1c50b953064f7d6) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: support standard schema
8+
9+
Validators can now be any validator that supports [Standard Schema](https://github.com/standard-schema/standard-schema),
10+
for example Zod & Valibot.
11+
12+
This feature comes with some breaking changes:
13+
14+
- If using Zod, the minimum required version is now 3.24.
15+
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
16+
17+
- [#310](https://github.com/t3-oss/t3-env/pull/310) [`eb37304`](https://github.com/t3-oss/t3-env/commit/eb373046ed9f11f71df8acf3ddc2b8671faee95a) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: add valibot presets
18+
19+
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
20+
21+
This feature comes with some breaking changes:
22+
23+
- Zod presets have now been moved to `/presets-zod`.
24+
25+
- [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - update uploadthing preset to v7. add `uploadthingV6` for legacy config
26+
27+
### Patch Changes
28+
29+
- [#279](https://github.com/t3-oss/t3-env/pull/279) [`7c09bc3`](https://github.com/t3-oss/t3-env/commit/7c09bc36592c79cf2776fb57d04884b61de8ab89) Thanks [@thevisioner](https://github.com/thevisioner)! - add netlify preset
30+
31+
- [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30) Thanks [@juliusmarminge](https://github.com/juliusmarminge)! - add neonVercel preset
32+
333
## 0.11.1
434

535
### Patch Changes

‎packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-core",
3-
"version": "0.11.1",
3+
"version": "0.12.0",
44
"type": "module",
55
"keywords": ["create-t3-app", "environment variables", "zod"],
66
"author": "Julius Marminge",

‎packages/nextjs/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @t3-oss/env-nextjs
22

3+
## 0.12.0
4+
5+
### Minor Changes
6+
7+
- [#299](https://github.com/t3-oss/t3-env/pull/299) [`b13d46b`](https://github.com/t3-oss/t3-env/commit/b13d46b84cdeed816b0b7b28a1c50b953064f7d6) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: support standard schema
8+
9+
Validators can now be any validator that supports [Standard Schema](https://github.com/standard-schema/standard-schema),
10+
for example Zod & Valibot.
11+
12+
This feature comes with some breaking changes:
13+
14+
- If using Zod, the minimum required version is now 3.24.
15+
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
16+
17+
- [#310](https://github.com/t3-oss/t3-env/pull/310) [`eb37304`](https://github.com/t3-oss/t3-env/commit/eb373046ed9f11f71df8acf3ddc2b8671faee95a) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: add valibot presets
18+
19+
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
20+
21+
This feature comes with some breaking changes:
22+
23+
- Zod presets have now been moved to `/presets-zod`.
24+
25+
### Patch Changes
26+
27+
- Updated dependencies [[`b13d46b`](https://github.com/t3-oss/t3-env/commit/b13d46b84cdeed816b0b7b28a1c50b953064f7d6), [`7c09bc3`](https://github.com/t3-oss/t3-env/commit/7c09bc36592c79cf2776fb57d04884b61de8ab89), [`eb37304`](https://github.com/t3-oss/t3-env/commit/eb373046ed9f11f71df8acf3ddc2b8671faee95a), [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30), [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30)]:
28+
- @t3-oss/env-core@0.12.0
29+
330
## 0.11.1
431

532
### Patch Changes

‎packages/nextjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-nextjs",
3-
"version": "0.11.1",
3+
"version": "0.12.0",
44
"type": "module",
55
"keywords": ["create-t3-app", "environment variables", "zod", "nextjs"],
66
"author": "Julius Marminge",

‎packages/nuxt/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @t3-oss/env-nuxt
22

3+
## 0.12.0
4+
5+
### Minor Changes
6+
7+
- [#299](https://github.com/t3-oss/t3-env/pull/299) [`b13d46b`](https://github.com/t3-oss/t3-env/commit/b13d46b84cdeed816b0b7b28a1c50b953064f7d6) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: support standard schema
8+
9+
Validators can now be any validator that supports [Standard Schema](https://github.com/standard-schema/standard-schema),
10+
for example Zod & Valibot.
11+
12+
This feature comes with some breaking changes:
13+
14+
- If using Zod, the minimum required version is now 3.24.
15+
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
16+
17+
- [#310](https://github.com/t3-oss/t3-env/pull/310) [`eb37304`](https://github.com/t3-oss/t3-env/commit/eb373046ed9f11f71df8acf3ddc2b8671faee95a) Thanks [@EskiMojo14](https://github.com/EskiMojo14)! - feat!: add valibot presets
18+
19+
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
20+
21+
This feature comes with some breaking changes:
22+
23+
- Zod presets have now been moved to `/presets-zod`.
24+
25+
### Patch Changes
26+
27+
- Updated dependencies [[`b13d46b`](https://github.com/t3-oss/t3-env/commit/b13d46b84cdeed816b0b7b28a1c50b953064f7d6), [`7c09bc3`](https://github.com/t3-oss/t3-env/commit/7c09bc36592c79cf2776fb57d04884b61de8ab89), [`eb37304`](https://github.com/t3-oss/t3-env/commit/eb373046ed9f11f71df8acf3ddc2b8671faee95a), [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30), [`bb80923`](https://github.com/t3-oss/t3-env/commit/bb809231d07a089391ed2949e5f1161caf1b3a30)]:
28+
- @t3-oss/env-core@0.12.0
29+
330
## 0.11.1
431

532
### Patch Changes

‎packages/nuxt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-nuxt",
3-
"version": "0.11.1",
3+
"version": "0.12.0",
44
"type": "module",
55
"keywords": ["create-t3-app", "environment variables", "zod", "nuxt", "vue"],
66
"author": "Julius Marminge",

0 commit comments

Comments
 (0)