@dotenvx/dotenvx 2.11.1 → 2.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,7 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/dotenvx/dotenvx/compare/v2.11.1...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v2.11.3...main)
6
+
7
+ ## [2.11.3](https://github.com/dotenvx/dotenvx/compare/v2.11.2...v2.11.3) (2026-07-16)
8
+
9
+ ### Changed
10
+
11
+ * Improve command substitution for nested commands ([#902](https://github.com/dotenvx/dotenvx/pull/902))
12
+
13
+ ## [2.11.2](https://github.com/dotenvx/dotenvx/compare/v2.11.1...v2.11.2) (2026-07-16)
14
+
15
+ ### Changed
16
+
17
+ * Bump @dotenvx/primtivies to support nested node invocations for pkg-ed binary ([#901](https://github.com/dotenvx/dotenvx/pull/901))
6
18
 
7
19
  ## [2.11.1](https://github.com/dotenvx/dotenvx/compare/v2.11.0...v2.11.1) (2026-07-15)
8
20
 
package/README.md CHANGED
@@ -131,10 +131,10 @@ More examples
131
131
  Run Claude with your real secrets while redacting them from its output.
132
132
 
133
133
  ```sh
134
- $ echo "SECRET=super-secret-value" > .env
134
+ $ echo "HELLO=World" > .env
135
135
 
136
- $ dotenvx run --redact --quiet -- claude -p 'Print the value of $SECRET'
137
- [REDACTED]
136
+ $ dotenvx run --redact -- claude -p 'Run `dotenvx get HELLO` and echo back just Hello VALUE' --dangerously-skip-permissions
137
+ Hello [REDACTED]
138
138
  ```
139
139
 
140
140
  see [Claude redaction guide](https://dotenvx.com/docs/cli/run-redact-claude-print)
@@ -145,10 +145,10 @@ see [Claude redaction guide](https://dotenvx.com/docs/cli/run-redact-claude-prin
145
145
  Run Codex with your real secrets while redacting them from its output.
146
146
 
147
147
  ```sh
148
- $ echo "SECRET=super-secret-value" > .env
148
+ $ echo "HELLO=World" > .env
149
149
 
150
- $ dotenvx run --redact --quiet -- codex exec 'Print the value of $SECRET'
151
- [REDACTED]
150
+ $ dotenvx run --redact -- codex exec 'Run `dotenvx get HELLO` and echo back just Hello VALUE' --skip-git-repo-check
151
+ Hello [REDACTED]
152
152
  ```
153
153
 
154
154
  see [Codex redaction guide](https://dotenvx.com/docs/cli/run-redact-codex-exec)
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.11.1",
2
+ "version": "2.11.3",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a secure dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "funding": "https://dotenvx.com",
45
45
  "dependencies": {
46
- "@dotenvx/primitives": "^1.8.1",
46
+ "@dotenvx/primitives": "^1.10.0",
47
47
  "@dotenvx/tooling": "^1.0.2",
48
48
  "yocto-spinner": "^1.2.1"
49
49
  },