Skip to content

Commit 1e9b6d1

Browse files
[Changesets] Create versioned packages for publishing (#532)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 004e181 commit 1e9b6d1

10 files changed

Lines changed: 41 additions & 30 deletions

File tree

.changeset/bright-astro-tests.md

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

.changeset/fix-endswith-error-message.md

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

.changeset/fix-spaces-in-path.md

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

.changeset/ninety-birds-kick.md

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

packages/integrations/astro/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @varlock/astro-integration
22

3+
## 0.2.7
4+
5+
### Patch Changes
6+
7+
- [#526](https://github.com/dmno-dev/varlock/pull/526) [`17f665e`](https://github.com/dmno-dev/varlock/commit/17f665e105da9ea0afd1dced5532af5c437df2ef) - Add post-build leak detection for static HTML output via astro:build:done hook. Move Astro tests from smoke-tests to framework-tests with comprehensive coverage for both Astro v5 and v6.
8+
9+
- Updated dependencies [[`0d25aa5`](https://github.com/dmno-dev/varlock/commit/0d25aa5e6973e9fc0cf5054e444c0ded28a186f0), [`004e181`](https://github.com/dmno-dev/varlock/commit/004e181ec44251a75be45efafc85846bb3874467), [`e67ee2f`](https://github.com/dmno-dev/varlock/commit/e67ee2f5c6b09b91564eba3925de560c12ca80c3)]:
10+
- varlock@0.7.1
11+
312
## 0.2.6
413

514
### Patch Changes

packages/integrations/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/astro-integration",
33
"description": "Astro integration to use varlock for .env file loading - adds validation, type-safety, and extra security features",
4-
"version": "0.2.6",
4+
"version": "0.2.7",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

packages/integrations/vite/CHANGELOG.md

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

3+
## 0.2.9
4+
5+
### Patch Changes
6+
7+
- [#527](https://github.com/dmno-dev/varlock/pull/527) [`e67ee2f`](https://github.com/dmno-dev/varlock/commit/e67ee2f5c6b09b91564eba3925de560c12ca80c3) - Improve invalid config handling in CLI and Vite integration
8+
9+
- `varlock load --format json-full` now outputs partial JSON (with `errors` field) even when validation fails, enabling consumers to access sources and valid config items
10+
- Vite plugin gracefully handles invalid config in dev mode: shows error page and automatically recovers when the config is fixed
11+
- Vite build output now includes specific error details when config validation fails
12+
13+
- Updated dependencies [[`0d25aa5`](https://github.com/dmno-dev/varlock/commit/0d25aa5e6973e9fc0cf5054e444c0ded28a186f0), [`004e181`](https://github.com/dmno-dev/varlock/commit/004e181ec44251a75be45efafc85846bb3874467), [`e67ee2f`](https://github.com/dmno-dev/varlock/commit/e67ee2f5c6b09b91564eba3925de560c12ca80c3)]:
14+
- varlock@0.7.1
15+
316
## 0.2.8
417

518
### Patch Changes

packages/integrations/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@varlock/vite-integration",
33
"description": "Vite plugin to use varlock for .env file loading - adds validation, type-safety, and extra security features",
4-
"version": "0.2.8",
4+
"version": "0.2.9",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/dmno-dev/varlock.git",

packages/varlock/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# varlock
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- [#540](https://github.com/dmno-dev/varlock/pull/540) [`0d25aa5`](https://github.com/dmno-dev/varlock/commit/0d25aa5e6973e9fc0cf5054e444c0ded28a186f0) - Fix incorrect validation error message for `endsWith` string constraint - it was saying "Value must start with" instead of "Value must end with"
8+
9+
- [#543](https://github.com/dmno-dev/varlock/pull/543) [`004e181`](https://github.com/dmno-dev/varlock/commit/004e181ec44251a75be45efafc85846bb3874467) - Fix execSyncVarlock breaking when project path contains spaces
10+
11+
Use `execFileSync` instead of `execSync` for the fallback varlock path resolution to avoid shell interpretation of spaces in directory paths.
12+
13+
- [#527](https://github.com/dmno-dev/varlock/pull/527) [`e67ee2f`](https://github.com/dmno-dev/varlock/commit/e67ee2f5c6b09b91564eba3925de560c12ca80c3) - Improve invalid config handling in CLI and Vite integration
14+
15+
- `varlock load --format json-full` now outputs partial JSON (with `errors` field) even when validation fails, enabling consumers to access sources and valid config items
16+
- Vite plugin gracefully handles invalid config in dev mode: shows error page and automatically recovers when the config is fixed
17+
- Vite build output now includes specific error details when config validation fails
18+
319
## 0.7.0
420

521
### Minor Changes

packages/varlock/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "varlock",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "AI-safe .env files: Schemas for agents, Secrets for humans.",
55
"main": "index.js",
66
"type": "module",

0 commit comments

Comments
 (0)