Skip to content

Commit 64d9b53

Browse files
chore(release): 📦 version packages
1 parent fbc4063 commit 64d9b53

File tree

10 files changed

+71
-20
lines changed

10 files changed

+71
-20
lines changed

‎.changeset/healthy-windows-melt.md‎

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

‎packages/core/CHANGELOG.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @t3-oss/env-core
22

3+
## 0.14.0
4+
5+
### Minor Changes
6+
7+
- [#326](https://github.com/t3-oss/t3-env/pull/326) [`5987d5a`](https://github.com/t3-oss/t3-env/commit/5987d5a68fc445ed7ba3485e7a847dca5593607a) Thanks [@Abdalrhman-Almarakeby](https://github.com/Abdalrhman-Almarakeby)! - update skipValidation flag to skip validation for extended presets
8+
39
## 0.13.8
410

511
### Patch Changes
@@ -61,6 +67,7 @@
6167
Combination of schemas can now be customised using the `createFinalSchema` option. This allows further refinement or transformation of the environment variables.
6268

6369
For 99% of users, this is a non-breaking change. If you were relying on internal types, there's a type-only breaking change:
70+
6471
- `CreateEnv` now has the signature `CreateEnv<TFinalSchema, TExtends>`, instead of the previous `CreateEnv<TServer, TClient, TShared, TExtends>`.
6572
- Previous behaviour can be achieved by using `DefaultCombinedSchema<TServer, TClient, TShared>` as the type for `TFinalSchema`.
6673

@@ -78,6 +85,7 @@
7885
for example Zod & Valibot.
7986

8087
This feature comes with some breaking changes:
88+
8189
- If using Zod, the minimum required version is now 3.24.
8290
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
8391

@@ -86,6 +94,7 @@
8694
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
8795

8896
This feature comes with some breaking changes:
97+
8998
- Zod presets have now been moved to `/presets-zod`.
9099

91100
- [`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

‎packages/core/jsr.json‎

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"name": "@t3-oss/env-core",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"exports": {
55
".": "./src/index.ts",
66
"./presets-arktype": "./src/presets-arktype.ts",
77
"./presets-zod": "./src/presets-zod.ts",
88
"./presets-valibot": "./src/presets-valibot.ts"
99
},
10-
"include": ["src/**/*.ts", "README.md", "LICENSE", "package.json"],
11-
"exclude": ["node_modules", "dist", "test"]
12-
}
10+
"include": [
11+
"src/**/*.ts",
12+
"README.md",
13+
"LICENSE",
14+
"package.json"
15+
],
16+
"exclude": [
17+
"node_modules",
18+
"dist",
19+
"test"
20+
]
21+
}

‎packages/core/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-core",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"type": "module",
55
"keywords": [
66
"create-t3-app",

‎packages/nextjs/CHANGELOG.md‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @t3-oss/env-nextjs
22

3+
## 0.14.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`5987d5a`](https://github.com/t3-oss/t3-env/commit/5987d5a68fc445ed7ba3485e7a847dca5593607a)]:
8+
- @t3-oss/env-core@0.14.0
9+
310
## 0.13.8
411

512
### Patch Changes
@@ -79,6 +86,7 @@
7986
Combination of schemas can now be customised using the `createFinalSchema` option. This allows further refinement or transformation of the environment variables.
8087

8188
For 99% of users, this is a non-breaking change. If you were relying on internal types, there's a type-only breaking change:
89+
8290
- `CreateEnv` now has the signature `CreateEnv<TFinalSchema, TExtends>`, instead of the previous `CreateEnv<TServer, TClient, TShared, TExtends>`.
8391
- Previous behaviour can be achieved by using `DefaultCombinedSchema<TServer, TClient, TShared>` as the type for `TFinalSchema`.
8492

@@ -97,6 +105,7 @@
97105
for example Zod & Valibot.
98106

99107
This feature comes with some breaking changes:
108+
100109
- If using Zod, the minimum required version is now 3.24.
101110
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
102111

@@ -105,6 +114,7 @@
105114
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
106115

107116
This feature comes with some breaking changes:
117+
108118
- Zod presets have now been moved to `/presets-zod`.
109119

110120
### Patch Changes

‎packages/nextjs/jsr.json‎

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"name": "@t3-oss/env-nextjs",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"exports": {
55
".": "./src/index.ts",
66
"./presets-arktype": "./src/presets-arktype.ts",
77
"./presets-zod": "./src/presets-zod.ts",
88
"./presets-valibot": "./src/presets-valibot.ts"
99
},
10-
"include": ["src/**/*.ts", "README.md", "LICENSE", "package.json"],
11-
"exclude": ["node_modules", "dist", "test"]
12-
}
10+
"include": [
11+
"src/**/*.ts",
12+
"README.md",
13+
"LICENSE",
14+
"package.json"
15+
],
16+
"exclude": [
17+
"node_modules",
18+
"dist",
19+
"test"
20+
]
21+
}

‎packages/nextjs/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-nextjs",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"type": "module",
55
"keywords": [
66
"create-t3-app",

‎packages/nuxt/CHANGELOG.md‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @t3-oss/env-nuxt
22

3+
## 0.14.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`5987d5a`](https://github.com/t3-oss/t3-env/commit/5987d5a68fc445ed7ba3485e7a847dca5593607a)]:
8+
- @t3-oss/env-core@0.14.0
9+
310
## 0.13.8
411

512
### Patch Changes
@@ -79,6 +86,7 @@
7986
Combination of schemas can now be customised using the `createFinalSchema` option. This allows further refinement or transformation of the environment variables.
8087

8188
For 99% of users, this is a non-breaking change. If you were relying on internal types, there's a type-only breaking change:
89+
8290
- `CreateEnv` now has the signature `CreateEnv<TFinalSchema, TExtends>`, instead of the previous `CreateEnv<TServer, TClient, TShared, TExtends>`.
8391
- Previous behaviour can be achieved by using `DefaultCombinedSchema<TServer, TClient, TShared>` as the type for `TFinalSchema`.
8492

@@ -97,6 +105,7 @@
97105
for example Zod & Valibot.
98106

99107
This feature comes with some breaking changes:
108+
100109
- If using Zod, the minimum required version is now 3.24.
101110
- `onValidationError` now gets `StandardSchemaV1.Issue[]` instead of `ZodError`
102111

@@ -105,6 +114,7 @@
105114
Presets using Valibot are now available using the `/presets-valibot` entrypoint.
106115

107116
This feature comes with some breaking changes:
117+
108118
- Zod presets have now been moved to `/presets-zod`.
109119

110120
### Patch Changes

‎packages/nuxt/jsr.json‎

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"name": "@t3-oss/env-nuxt",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"exports": {
55
".": "./src/index.ts",
66
"./presets-arktype": "./src/presets-arktype.ts",
77
"./presets-zod": "./src/presets-zod.ts",
88
"./presets-valibot": "./src/presets-valibot.ts"
99
},
10-
"include": ["src/**/*.ts", "README.md", "LICENSE", "package.json"],
11-
"exclude": ["node_modules", "dist", "test"]
12-
}
10+
"include": [
11+
"src/**/*.ts",
12+
"README.md",
13+
"LICENSE",
14+
"package.json"
15+
],
16+
"exclude": [
17+
"node_modules",
18+
"dist",
19+
"test"
20+
]
21+
}

‎packages/nuxt/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@t3-oss/env-nuxt",
3-
"version": "0.13.8",
3+
"version": "0.14.0",
44
"type": "module",
55
"keywords": [
66
"create-t3-app",

0 commit comments

Comments
 (0)