Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .bumpy/fix-astro-cf-static-prerender.md

This file was deleted.

5 changes: 0 additions & 5 deletions .bumpy/fix-exec-expansion-nested-parens.md

This file was deleted.

16 changes: 8 additions & 8 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/env-spec-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@




## 0.4.2
<sub>2026-07-17</sub>

- [#889](https://github.com/dmno-dev/varlock/pull/889) *(patch)* - Fix $(...) truncation on nested parentheses and dropped spaces before $VAR/${VAR} inside unquoted exec expansion

## 0.4.1
<sub>2026-06-17</sub>

Expand Down
2 changes: 1 addition & 1 deletion packages/env-spec-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@env-spec/parser",
"version": "0.4.1",
"version": "0.4.2",
"description": "Parser for @env-spec enabled dotenv files",
"homepage": "https://varlock.dev",
"bugs": "https://github.com/dmno-dev/varlock/issues",
Expand Down
6 changes: 6 additions & 0 deletions packages/integrations/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@




## 1.2.1
<sub>2026-07-17</sub>

- *(patch)* Version bump from `@varlock/vite-integration` v1.3.1

## 1.2.0
<sub>2026-07-15</sub>

Expand Down
4 changes: 2 additions & 2 deletions packages/integrations/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@varlock/astro-integration",
"description": "Astro integration to use varlock for .env file loading - adds validation, type-safety, and extra security features",
"version": "1.2.0",
"version": "1.2.1",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
Expand Down Expand Up @@ -41,7 +41,7 @@
"peerDependencies": {
"varlock": "workspace:^",
"astro": ">=4",
"@varlock/cloudflare-integration": "^1.3.0"
"@varlock/cloudflare-integration": "^1.3.1"
},
"peerDependenciesMeta": {
"@varlock/cloudflare-integration": {
Expand Down
6 changes: 6 additions & 0 deletions packages/integrations/cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@




## 1.3.1
<sub>2026-07-17</sub>

- *(patch)* Version bump from `@varlock/vite-integration` v1.3.1

## 1.3.0
<sub>2026-07-15</sub>

Expand Down
6 changes: 3 additions & 3 deletions packages/integrations/cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@varlock/cloudflare-integration",
"description": "Cloudflare Workers integration for varlock - deploy secrets via wrangler and auto-configure Vite",
"version": "1.3.0",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
Expand Down Expand Up @@ -57,7 +57,7 @@
"node": ">=22"
},
"peerDependencies": {
"varlock": "workspace:^1.11.0",
"varlock": "workspace:^1.11.1",
"vite": ">=5",
"wrangler": ">=3",
"@cloudflare/vite-plugin": ">=1"
Expand All @@ -77,7 +77,7 @@
"@types/node": "catalog:",
"@varlock/vite-integration": "workspace:^",
"tsup": "catalog:",
"varlock": "workspace:^1.11.0",
"varlock": "workspace:^1.11.1",
"vite": "^7.1.0",
"vitest": "catalog:"
}
Expand Down
7 changes: 7 additions & 0 deletions packages/integrations/vite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@




## 1.3.1
<sub>2026-07-17</sub>

- [#894](https://github.com/dmno-dev/varlock/pull/894) *(patch)*
Fix Astro + Cloudflare static/prerendered builds: bake resolved env into the build-time prerender worker, and stop mis-injecting SSR init code into non-entry modules during builds (REQUIRE_TLA errors)

## 1.3.0
<sub>2026-07-15</sub>

Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@varlock/vite-integration",
"description": "Vite plugin to use varlock for .env file loading - adds validation, type-safety, and extra security features",
"version": "1.3.0",
"version": "1.3.1",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
Expand Down
6 changes: 6 additions & 0 deletions packages/varlock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@




## 1.11.1
<sub>2026-07-17</sub>

- *(patch)* Version bump from `@env-spec/parser` v0.4.2

## 1.11.0
<sub>2026-07-15</sub>

Expand Down
2 changes: 1 addition & 1 deletion packages/varlock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "varlock",
"version": "1.11.0",
"version": "1.11.1",
"description": "AI-safe .env files: Schemas for agents, Secrets for humans.",
"main": "index.js",
"type": "module",
Expand Down
Loading