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 .changeset/fix-config-folder-write-crash.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/fix-preview-deps.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/fix-shell-format-escaping.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-paws-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/red-mirrors-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/throw-exit-error-load-path.md

This file was deleted.

10 changes: 9 additions & 1 deletion packages/plugins/proton-pass/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# @varlock/proton-pass-plugin

## 0.0.2

### Patch Changes

- [#487](https://github.com/dmno-dev/varlock/pull/487) [`1b466b6`](https://github.com/dmno-dev/varlock/commit/1b466b6e710aed5d926a9d25c854dfc51b66f7d8) - Add proton pass plugin

- Updated dependencies [[`2959826`](https://github.com/dmno-dev/varlock/commit/2959826c6c89c732a9318cfe037dd928813c50b7), [`0ca309d`](https://github.com/dmno-dev/varlock/commit/0ca309dea1ecabfc456d01679064f2862dd75809), [`583c2f8`](https://github.com/dmno-dev/varlock/commit/583c2f8405db8c60915767990d12f9469e34ffcb), [`80c0475`](https://github.com/dmno-dev/varlock/commit/80c04751e5cd58bb185ddac50386490ea20479cd)]:
- varlock@0.6.4

## 0.0.1

### Patch Changes

- Initial plugin scaffold: Proton Pass CLI wrapper

2 changes: 1 addition & 1 deletion packages/plugins/proton-pass/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@varlock/proton-pass-plugin",
"description": "Varlock plugin to load secrets from Proton Pass using the Proton Pass CLI",
"version": "0.0.1",
"version": "0.0.2",
"type": "module",
"homepage": "https://varlock.dev/plugins/proton-pass/",
"bugs": "https://github.com/dmno-dev/varlock/issues",
Expand Down
14 changes: 14 additions & 0 deletions packages/varlock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# varlock

## 0.6.4

### Patch Changes

- [#490](https://github.com/dmno-dev/varlock/pull/490) [`2959826`](https://github.com/dmno-dev/varlock/commit/2959826c6c89c732a9318cfe037dd928813c50b7) - Fix process crash when config folder is not writable (e.g., in Kubernetes containers). The anonymous ID write failure now logs at debug level and continues gracefully instead of calling `gracefulExit(1)`.

- [#472](https://github.com/dmno-dev/varlock/pull/472) [`0ca309d`](https://github.com/dmno-dev/varlock/commit/0ca309dea1ecabfc456d01679064f2862dd75809) - Fix: `varlock load --format shell` now properly escapes special characters in values.

Values are now wrapped in single quotes instead of double quotes, preventing shell injection via backticks, `$()` subshell syntax, and variable expansion (`$VAR`). Single quotes within values are safely escaped using the `'\''` sequence.

- [#475](https://github.com/dmno-dev/varlock/pull/475) [`583c2f8`](https://github.com/dmno-dev/varlock/commit/583c2f8405db8c60915767990d12f9469e34ffcb) Thanks [@developerzeke](https://github.com/developerzeke)! - Add ts-nocheck directive to ts type-generation output

- [#481](https://github.com/dmno-dev/varlock/pull/481) [`80c0475`](https://github.com/dmno-dev/varlock/commit/80c04751e5cd58bb185ddac50386490ea20479cd) - Fix: invalid load path errors now throw a `CliExitError` instead of logging and calling `gracefulExit`, for consistent error handling across the CLI.

## 0.6.3

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