@dotenvx/dotenvx 1.57.3 → 1.57.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 +14 -2
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/lib/helpers/executeDynamic.js +5 -5
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/v1.57.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.57.5...main)
|
|
6
|
+
|
|
7
|
+
## [1.57.5](https://github.com/dotenvx/dotenvx/compare/v1.57.4...v1.57.5) (2026-03-26)
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
|
|
11
|
+
* Improve already installed message ([#768](https://github.com/dotenvx/dotenvx/pull/768))
|
|
12
|
+
|
|
13
|
+
## [1.57.4](https://github.com/dotenvx/dotenvx/compare/v1.57.3...v1.57.4) (2026-03-26)
|
|
14
|
+
|
|
15
|
+
### Changes
|
|
16
|
+
|
|
17
|
+
* Use `curl` example for install [dotenvx.com/ops](https://dotenvx.com/ops) ([#767](https://github.com/dotenvx/dotenvx/pull/767))
|
|
6
18
|
|
|
7
19
|
## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
|
|
8
20
|
|
|
@@ -58,7 +70,7 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
58
70
|
|
|
59
71
|
### Added
|
|
60
72
|
|
|
61
|
-
* Add 'KEYS
|
|
73
|
+
* Add '⛨ ARMORED KEYS: Harden your private keys.' security feature when [dotenvx-ops](https://dotenvx.com/ops) installed ([#746](https://github.com/dotenvx/dotenvx/pull/746))
|
|
62
74
|
|
|
63
75
|
### Removed
|
|
64
76
|
|
package/README.md
CHANGED
|
@@ -2609,7 +2609,7 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
|
|
|
2609
2609
|
|
|
2610
2610
|
[](https://dotenvx.com/ops)
|
|
2611
2611
|
|
|
2612
|
-
> KEYS
|
|
2612
|
+
> ⛨ ARMORED KEYS: Harden your private keys.
|
|
2613
2613
|
|
|
2614
2614
|
### Quickstart
|
|
2615
2615
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ const childProcess = require('child_process')
|
|
|
3
3
|
const { logger } = require('../../shared/logger')
|
|
4
4
|
|
|
5
5
|
function installCommandForOps () {
|
|
6
|
-
return '
|
|
6
|
+
return 'curl -sfS https://dotenvx.sh/ops | sh'
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
function opsBanner (installCommand) {
|
|
@@ -12,13 +12,13 @@ function opsBanner (installCommand) {
|
|
|
12
12
|
' ██████╗ ██████╗ ███████╗',
|
|
13
13
|
' ██╔═══██╗██╔══██╗██╔════╝',
|
|
14
14
|
' ██║ ██║██████╔╝███████╗',
|
|
15
|
-
' ██║ ██║██╔═══╝ ╚════██║',
|
|
15
|
+
' ██║ ██║██╔═══╝ ╚════██║ [www.dotenvx.com/ops]',
|
|
16
16
|
' ╚██████╔╝██║ ███████║',
|
|
17
17
|
' ╚═════╝ ╚═╝ ╚══════╝',
|
|
18
18
|
'',
|
|
19
|
-
' KEYS
|
|
20
|
-
`
|
|
21
|
-
'
|
|
19
|
+
' ⛨ ARMORED KEYS: Harden your private keys.',
|
|
20
|
+
` ⮕ install [${installCommand}]`,
|
|
21
|
+
' ⮕ and then run [dotenvx-ops login]'
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
const innerWidth = Math.max(67, ...lines.map((line) => line.length))
|