From 3ac1f11012bdc47d1ddc8f7d790cf7009d5e049b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 06:52:43 +0000 Subject: [PATCH] [Changesets] Create versioned packages for publishing --- .changeset/bold-trees-relate.md | 5 ----- .changeset/fix-github-actions-pr-branch.md | 11 ----------- .changeset/fix-terminal-colors-with-redaction.md | 5 ----- packages/ci-env-info/CHANGELOG.md | 13 +++++++++++++ packages/ci-env-info/package.json | 2 +- packages/plugins/1password/CHANGELOG.md | 9 +++++++++ packages/plugins/1password/package.json | 2 +- packages/varlock/CHANGELOG.md | 6 ++++++ packages/varlock/package.json | 2 +- 9 files changed, 31 insertions(+), 24 deletions(-) delete mode 100644 .changeset/bold-trees-relate.md delete mode 100644 .changeset/fix-github-actions-pr-branch.md delete mode 100644 .changeset/fix-terminal-colors-with-redaction.md diff --git a/.changeset/bold-trees-relate.md b/.changeset/bold-trees-relate.md deleted file mode 100644 index 89c57f65..00000000 --- a/.changeset/bold-trees-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@varlock/1password-plugin": patch ---- - -pass through USER and HOME to op cli calls diff --git a/.changeset/fix-github-actions-pr-branch.md b/.changeset/fix-github-actions-pr-branch.md deleted file mode 100644 index b9246119..00000000 --- a/.changeset/fix-github-actions-pr-branch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@varlock/ci-env-info": patch ---- - -Fix `VARLOCK_BRANCH` returning `refs/pull/123/merge` in GitHub Actions PR workflows. - -In GitHub Actions pull request contexts, `GITHUB_REF` is set to the merge ref (e.g. `refs/pull/123/merge`) rather than the branch name. GitHub Actions also provides `GITHUB_HEAD_REF` which contains the actual PR head branch name (e.g. `feat-init-infra`). - -Changes: -- Updated GitHub Actions platform branch extractor to prefer `GITHUB_HEAD_REF` when available, falling back to `refToBranch(GITHUB_REF)` for non-PR contexts -- Fixed `refToBranch()` to return `undefined` for `refs/pull/` refs instead of returning the raw merge ref string diff --git a/.changeset/fix-terminal-colors-with-redaction.md b/.changeset/fix-terminal-colors-with-redaction.md deleted file mode 100644 index 9234a110..00000000 --- a/.changeset/fix-terminal-colors-with-redaction.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"varlock": patch ---- - -Fix terminal colors when running commands with redaction enabled. When `varlock run` pipes stdout/stderr for redaction, it now automatically injects `FORCE_COLOR` into the child process environment when the parent terminal is a TTY. This preserves color output for tools using color libraries (chalk, kleur, etc.) while keeping redaction active. diff --git a/packages/ci-env-info/CHANGELOG.md b/packages/ci-env-info/CHANGELOG.md index ce019359..3c311ea0 100644 --- a/packages/ci-env-info/CHANGELOG.md +++ b/packages/ci-env-info/CHANGELOG.md @@ -1,5 +1,18 @@ # @varlock/ci-env-info +## 0.0.2 + +### Patch Changes + +- [#566](https://github.com/dmno-dev/varlock/pull/566) [`012ed3f`](https://github.com/dmno-dev/varlock/commit/012ed3fd8a290572872200cb8d73a56616e9047d) - Fix `VARLOCK_BRANCH` returning `refs/pull/123/merge` in GitHub Actions PR workflows. + + In GitHub Actions pull request contexts, `GITHUB_REF` is set to the merge ref (e.g. `refs/pull/123/merge`) rather than the branch name. GitHub Actions also provides `GITHUB_HEAD_REF` which contains the actual PR head branch name (e.g. `feat-init-infra`). + + Changes: + + - Updated GitHub Actions platform branch extractor to prefer `GITHUB_HEAD_REF` when available, falling back to `refToBranch(GITHUB_REF)` for non-PR contexts + - Fixed `refToBranch()` to return `undefined` for `refs/pull/` refs instead of returning the raw merge ref string + ## 0.0.1 ### Patch Changes diff --git a/packages/ci-env-info/package.json b/packages/ci-env-info/package.json index 8687a43f..2eecf990 100644 --- a/packages/ci-env-info/package.json +++ b/packages/ci-env-info/package.json @@ -1,7 +1,7 @@ { "name": "@varlock/ci-env-info", "description": "Detect CI environment and normalize other data like environment, repo, branch, PR, commit, etc.", - "version": "0.0.1", + "version": "0.0.2", "type": "module", "repository": { "type": "git", diff --git a/packages/plugins/1password/CHANGELOG.md b/packages/plugins/1password/CHANGELOG.md index e081620b..89c43436 100644 --- a/packages/plugins/1password/CHANGELOG.md +++ b/packages/plugins/1password/CHANGELOG.md @@ -1,5 +1,14 @@ # @varlock/1password-plugin +## 0.3.4 + +### Patch Changes + +- [#564](https://github.com/dmno-dev/varlock/pull/564) [`2870d0a`](https://github.com/dmno-dev/varlock/commit/2870d0a15b3bfb4b11e4e9e9a59993c8fbec7e66) - pass through USER and HOME to op cli calls + +- Updated dependencies [[`349d517`](https://github.com/dmno-dev/varlock/commit/349d517ee9bd84e12c4e7715e23b7fa2074a6f28)]: + - varlock@0.7.3 + ## 0.3.3 ### Patch Changes diff --git a/packages/plugins/1password/package.json b/packages/plugins/1password/package.json index 3e0298ee..93b19944 100644 --- a/packages/plugins/1password/package.json +++ b/packages/plugins/1password/package.json @@ -1,7 +1,7 @@ { "name": "@varlock/1password-plugin", "description": "Varlock plugin to load data from 1Password vaults", - "version": "0.3.3", + "version": "0.3.4", "type": "module", "homepage": "https://varlock.dev/plugins/1password/", "bugs": "https://github.com/dmno-dev/varlock/issues", diff --git a/packages/varlock/CHANGELOG.md b/packages/varlock/CHANGELOG.md index 3ca92666..84b32fe4 100644 --- a/packages/varlock/CHANGELOG.md +++ b/packages/varlock/CHANGELOG.md @@ -1,5 +1,11 @@ # varlock +## 0.7.3 + +### Patch Changes + +- [#575](https://github.com/dmno-dev/varlock/pull/575) [`349d517`](https://github.com/dmno-dev/varlock/commit/349d517ee9bd84e12c4e7715e23b7fa2074a6f28) - Fix terminal colors when running commands with redaction enabled. When `varlock run` pipes stdout/stderr for redaction, it now automatically injects `FORCE_COLOR` into the child process environment when the parent terminal is a TTY. This preserves color output for tools using color libraries (chalk, kleur, etc.) while keeping redaction active. + ## 0.7.2 ### Patch Changes diff --git a/packages/varlock/package.json b/packages/varlock/package.json index cf0df48a..fe646069 100644 --- a/packages/varlock/package.json +++ b/packages/varlock/package.json @@ -1,6 +1,6 @@ { "name": "varlock", - "version": "0.7.2", + "version": "0.7.3", "description": "AI-safe .env files: Schemas for agents, Secrets for humans.", "main": "index.js", "type": "module",