@dotenvx/dotenvx 2.10.0 → 2.11.1
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 +19 -1
- package/README.md +206 -132
- package/package.json +1 -1
- package/src/cli/actions/run.js +2 -2
- package/src/cli/actions/update.js +15 -0
- package/src/cli/dotenvx.js +8 -1
- package/src/lib/helpers/colorDepth.js +7 -1
- package/src/lib/helpers/executeCommand.js +10 -2
- package/src/lib/helpers/kits/sample.js +1 -19
- package/src/lib/helpers/ptyCommand.js +27 -0
- package/src/lib/helpers/redactedValues.js +23 -0
- package/src/lib/main.d.ts +0 -1
- package/src/shared/colors.js +4 -4
- package/src/shared/logger.js +31 -35
- package/src/lib/helpers/decryptedValues.js +0 -32
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,25 @@
|
|
|
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.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v2.11.1...main)
|
|
6
|
+
|
|
7
|
+
## [2.11.1](https://github.com/dotenvx/dotenvx/compare/v2.11.0...v2.11.1) (2026-07-15)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Redact all keys by default - except those ending in `_PLAIN` ([460862](https://github.com/dotenvx/dotenvx/commit/4608625845367d9205aa668826bf46ed0e5bb740))
|
|
12
|
+
* Support `dotenvx run -- claude` and `dotenvx run -- codex` ([#900](https://github.com/dotenvx/dotenvx/pull/900))
|
|
13
|
+
* Simplify default encrypted .env file to just `HELLO="World"` ([#899](https://github.com/dotenvx/dotenvx/pull/899))
|
|
14
|
+
|
|
15
|
+
## [2.11.0](https://github.com/dotenvx/dotenvx/compare/v2.10.0...v2.11.0) (2026-07-15)
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
* Add convenience method `dotenvx update` ([#897](https://github.com/dotenvx/dotenvx/pull/897))
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
* BREAKING: Send informational messages like `injected env` to stderr instead of stdout. This makes it more reliable to do things like piping output to a file without needing `--quiet`. ([#898](https://github.com/dotenvx/dotenvx/pull/898))
|
|
6
24
|
|
|
7
25
|
## [2.10.0](https://github.com/dotenvx/dotenvx/compare/v2.9.0...v2.10.0) (2026-07-15)
|
|
8
26
|
|