@dotenvx/dotenvx 1.57.2 โ 1.57.4
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 +2 -2
- package/package.json +1 -1
- package/src/cli/dotenvx.js +1 -1
- package/src/lib/extensions/ops.js +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.4...main)
|
|
6
|
+
|
|
7
|
+
## [1.57.4](https://github.com/dotenvx/dotenvx/compare/v1.57.3...v1.57.4) (2026-03-26)
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
|
|
11
|
+
* Use `curl` example for install [dotenvx.com/ops](https://dotenvx.com/ops) ([#767](https://github.com/dotenvx/dotenvx/pull/766))
|
|
12
|
+
|
|
13
|
+
## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
|
|
14
|
+
|
|
15
|
+
### Changes
|
|
16
|
+
|
|
17
|
+
* Simplify installed success message ([#766](https://github.com/dotenvx/dotenvx/pull/766))
|
|
6
18
|
|
|
7
19
|
## [1.57.2](https://github.com/dotenvx/dotenvx/compare/v1.57.1...v1.57.2) (2026-03-22)
|
|
8
20
|
|
|
@@ -52,7 +64,7 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
52
64
|
|
|
53
65
|
### Added
|
|
54
66
|
|
|
55
|
-
* Add 'KEYS
|
|
67
|
+
* 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))
|
|
56
68
|
|
|
57
69
|
### Removed
|
|
58
70
|
|
package/README.md
CHANGED
|
@@ -2605,11 +2605,11 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
|
|
|
2605
2605
|
|
|
2606
2606
|
|
|
2607
2607
|
|
|
2608
|
-
## Ops
|
|
2608
|
+
## Ops โจ
|
|
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
package/src/cli/dotenvx.js
CHANGED
|
@@ -209,7 +209,7 @@ program.command('help [command]')
|
|
|
209
209
|
// dotenvx pro
|
|
210
210
|
program.addHelpText('after', ' ')
|
|
211
211
|
program.addHelpText('after', 'Advanced: ')
|
|
212
|
-
program.addHelpText('after', ' ops
|
|
212
|
+
program.addHelpText('after', ' ops โจ Ops [www.dotenvx.com/ops]')
|
|
213
213
|
program.addHelpText('after', ' ext ๐ extensions')
|
|
214
214
|
|
|
215
215
|
// dotenvx ext
|
|
@@ -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))
|