Skip to content
Merged
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 .changeset/fix-patch-global-response-instanceof.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-telemetry-disable-message.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-chefs-write.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pink-monkeys-wait.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/integrations/vite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @varlock/vite-integration

## 0.2.4

### Patch Changes

- [#397](https://github.com/dmno-dev/varlock/pull/397) [`b62a7f7`](https://github.com/dmno-dev/varlock/commit/b62a7f71ba348abdb35677a6840f2d092c351b7f) - add file type guard on varlock injection

- Updated dependencies [[`5890ee6`](https://github.com/dmno-dev/varlock/commit/5890ee6864930ac4561589d86c87e749733e3755), [`0642185`](https://github.com/dmno-dev/varlock/commit/06421851813e838ea38a4730ab5dec55d8b625ed), [`64c8ba9`](https://github.com/dmno-dev/varlock/commit/64c8ba98be7f5616ac556b8e4bd6a66bd73767d4)]:
- varlock@0.4.2

## 0.2.3

### Patch Changes
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": "0.2.3",
"version": "0.2.4",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
Expand Down
10 changes: 10 additions & 0 deletions packages/varlock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# varlock

## 0.4.2

### Patch Changes

- [#385](https://github.com/dmno-dev/varlock/pull/385) [`5890ee6`](https://github.com/dmno-dev/varlock/commit/5890ee6864930ac4561589d86c87e749733e3755) - fix: `patchGlobalResponse` broke `fetch()` responses failing `instanceof Response` checks. After patching `globalThis.Response` with `VarlockPatchedResponse`, native `fetch()` still returned the original `Response` instances, causing SvelteKit SSR endpoints to throw "handler should return a Response object". Added `Symbol.hasInstance` to `VarlockPatchedResponse` so native responses pass the check.

- [#384](https://github.com/dmno-dev/varlock/pull/384) [`0642185`](https://github.com/dmno-dev/varlock/commit/06421851813e838ea38a4730ab5dec55d8b625ed) - Fix telemetry disable command showing incorrect success message

- [#387](https://github.com/dmno-dev/varlock/pull/387) [`64c8ba9`](https://github.com/dmno-dev/varlock/commit/64c8ba98be7f5616ac556b8e4bd6a66bd73767d4) - fix: auto trigger type generation in `varlock run` (unless auto=false flag is used)

## 0.4.1

### Patch Changes
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": "0.4.1",
"version": "0.4.2",
"description": "AI-safe .env files: Schemas for agents, Secrets for humans.",
"main": "index.js",
"type": "module",
Expand Down
Loading