@dotenvx/dotenvx-ops 0.31.1 → 0.32.0
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-ops/compare/v0.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.32.0...main)
|
|
6
|
+
|
|
7
|
+
## [0.32.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.31.2...v0.32.0) (2026-03-11)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Hide various commands for now as tooling is simplified ([#26](https://github.com/dotenvx/dotenvx-ops/pull/26))
|
|
12
|
+
|
|
13
|
+
## [0.31.2](https://github.com/dotenvx/dotenvx-ops/compare/v0.31.1...v0.31.2) (2026-03-07)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
* Shortened default masked token ([#25](https://github.com/dotenvx/dotenvx-ops/pull/25))
|
|
6
18
|
|
|
7
19
|
## [0.31.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.31.0...v0.31.1) (2026-03-07)
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.32.0",
|
|
3
3
|
"name": "@dotenvx/dotenvx-ops",
|
|
4
4
|
"description": "production grade dotenvx–with operational primitives",
|
|
5
5
|
"author": "@motdotla",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@clack/core": "^0.4.2",
|
|
44
|
-
"@dotenvx/dotenvx": "^1.
|
|
44
|
+
"@dotenvx/dotenvx": "^1.54.1",
|
|
45
45
|
"@inquirer/prompts": "^7.10.1",
|
|
46
46
|
"arch": "^2.1.1",
|
|
47
47
|
"commander": "^11.1.0",
|
|
@@ -10,7 +10,7 @@ function token () {
|
|
|
10
10
|
const sesh = new Session()
|
|
11
11
|
const token = sesh.token()
|
|
12
12
|
if (token && token.length > 1) {
|
|
13
|
-
console.log(smartMask(token, options.unmask,
|
|
13
|
+
console.log(smartMask(token, options.unmask, 10))
|
|
14
14
|
} else {
|
|
15
15
|
logger.error('missing token. Try generating one with [dotenvx-ops login].')
|
|
16
16
|
process.exit(1)
|
package/src/cli/dotenvx-ops.js
CHANGED
|
@@ -43,7 +43,7 @@ program
|
|
|
43
43
|
const openAction = require('./actions/open')
|
|
44
44
|
program
|
|
45
45
|
.command('open')
|
|
46
|
-
.description('open project')
|
|
46
|
+
.description('[INTERNAL] open project')
|
|
47
47
|
.option('-h, --hostname <url>', 'set hostname', sesh.hostname())
|
|
48
48
|
.action(openAction)
|
|
49
49
|
|
|
@@ -74,7 +74,7 @@ program
|
|
|
74
74
|
const getAction = require('./actions/get')
|
|
75
75
|
program
|
|
76
76
|
.command('get')
|
|
77
|
-
.description('fetch secret')
|
|
77
|
+
.description('[INTERNAL] fetch secret')
|
|
78
78
|
.argument('URI', 'URI')
|
|
79
79
|
.option('--hostname <url>', 'set hostname', sesh.hostname())
|
|
80
80
|
.option('--token <token>', 'set token')
|
|
@@ -84,7 +84,7 @@ program
|
|
|
84
84
|
const setAction = require('./actions/set')
|
|
85
85
|
program
|
|
86
86
|
.command('set')
|
|
87
|
-
.description('set secret')
|
|
87
|
+
.description('[INTERNAL] set secret')
|
|
88
88
|
.argument('URI', 'URI')
|
|
89
89
|
.argument('value', 'value')
|
|
90
90
|
.option('--hostname <url>', 'set hostname', sesh.hostname())
|
|
@@ -114,7 +114,7 @@ program
|
|
|
114
114
|
const statusAction = require('./actions/status')
|
|
115
115
|
program
|
|
116
116
|
.command('status')
|
|
117
|
-
.description('status')
|
|
117
|
+
.description('[INTERNAL] status')
|
|
118
118
|
.action(statusAction)
|
|
119
119
|
|
|
120
120
|
program.addCommand(require('./commands/gateway'))
|