@dotenvx/dotenvx 1.61.4 → 1.61.5
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 +7 -1
- package/package.json +1 -1
- package/src/cli/dotenvx.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
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/v1.61.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.61.5...main)
|
|
6
|
+
|
|
7
|
+
## [1.61.5](https://github.com/dotenvx/dotenvx/compare/v1.61.4...v1.61.5) (2026-04-22)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Support `--hostname` flag to `dotenvx-ops.login` ([#801](https://github.com/dotenvx/dotenvx/pull/801))
|
|
6
12
|
|
|
7
13
|
## [1.61.4](https://github.com/dotenvx/dotenvx/compare/v1.61.3...v1.61.4) (2026-04-21)
|
|
8
14
|
|
package/package.json
CHANGED
package/src/cli/dotenvx.js
CHANGED
|
@@ -189,6 +189,7 @@ program.command('ls')
|
|
|
189
189
|
// dotenvx login
|
|
190
190
|
program.command('login')
|
|
191
191
|
.description('log in to unlock ⛨ ARMORED KEYS ✦ BETA')
|
|
192
|
+
.allowUnknownOption()
|
|
192
193
|
.action(() => {
|
|
193
194
|
const rawArgs = ['ops', 'login', ...process.argv.slice(3)]
|
|
194
195
|
executeDynamic(program, 'ops', rawArgs)
|