@dotenvx/dotenvx 1.53.0 → 1.54.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 +13 -1
- package/README.md +1 -53
- package/package.json +1 -1
- package/src/cli/actions/run.js +2 -4
- package/src/lib/main.js +2 -4
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.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.54.1...main)
|
|
6
|
+
|
|
7
|
+
## [1.54.1](https://github.com/dotenvx/dotenvx/compare/v1.54.0...v1.54.1) (2026-03-06)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Fix npm publish
|
|
12
|
+
|
|
13
|
+
## [1.54.0](https://github.com/dotenvx/dotenvx/compare/v1.53.0...v1.54.0) (2026-03-06)
|
|
14
|
+
|
|
15
|
+
### Removed
|
|
16
|
+
|
|
17
|
+
* Remove `ops observe` (radar feature). If needed download [dotenvx-ops](https://dotenvx.com/ops) and reach out to me directly at mot@dotenvx.com. ([#745](https://github.com/dotenvx/dotenvx/pull/745))
|
|
6
18
|
|
|
7
19
|
## [1.53.0](https://github.com/dotenvx/dotenvx/compare/v1.52.0...v1.53.0) (2026-03-05)
|
|
8
20
|
|
package/README.md
CHANGED
|
@@ -1247,15 +1247,6 @@ $ dotenvx set HELLO world -fk .env.keys -f apps/app1/.env
|
|
|
1247
1247
|
$ dotenvx run -fk .env.keys -f apps/app1/.env -- yourcommand
|
|
1248
1248
|
```
|
|
1249
1249
|
|
|
1250
|
-
</details>
|
|
1251
|
-
<details><summary>`run --ops-off`</summary><br>
|
|
1252
|
-
|
|
1253
|
-
Turn off [Dotenvx Ops](https://dotenvx.com/ops) features.
|
|
1254
|
-
|
|
1255
|
-
```sh
|
|
1256
|
-
$ dotenvx run --ops-off -- yourcommand
|
|
1257
|
-
```
|
|
1258
|
-
|
|
1259
1250
|
</details>
|
|
1260
1251
|
<details><summary>`get KEY`</summary><br>
|
|
1261
1252
|
|
|
@@ -2494,16 +2485,6 @@ This is equivalent to using `--convention=nextjs` with the CLI:
|
|
|
2494
2485
|
$ dotenvx run --convention=nextjs -- node index.js
|
|
2495
2486
|
```
|
|
2496
2487
|
|
|
2497
|
-
</details>
|
|
2498
|
-
<details><summary>`config(opsOff:)` - opsOff</summary><br>
|
|
2499
|
-
|
|
2500
|
-
Turn off [Dotenvx Ops](https://dotenvx.com/ops) features.
|
|
2501
|
-
|
|
2502
|
-
```js
|
|
2503
|
-
// index.js
|
|
2504
|
-
require('@dotenvx/dotenvx').config({opsOff: true})
|
|
2505
|
-
```
|
|
2506
|
-
|
|
2507
2488
|
</details>
|
|
2508
2489
|
<details><summary>`parse(src)`</summary><br>
|
|
2509
2490
|
|
|
@@ -2597,39 +2578,6 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
|
|
|
2597
2578
|
|
|
2598
2579
|
|
|
2599
2580
|
|
|
2600
|
-
## AS2 🔐
|
|
2601
|
-
|
|
2602
|
-
<a href="https://dotenvx.com/as2">
|
|
2603
|
-
<img src="https://dotenvx.com/assets/img/as2/9.jpg" alt="dotenvx as2" height="400" align="right">
|
|
2604
|
-
</a>
|
|
2605
|
-
|
|
2606
|
-
*agentic secret storage*.
|
|
2607
|
-
|
|
2608
|
-
> Secrets designed for agents. No logins. No consoles. Pure cryptography.
|
|
2609
|
-
|
|
2610
|
-
### Quickstart
|
|
2611
|
-
|
|
2612
|
-
Install [`vestauth`](https://github.com/vestauth/vestauth) and initialize your agent. (AS2 uses [vestauth](https://vestauth.com) to authenticate agents.)
|
|
2613
|
-
|
|
2614
|
-
```sh
|
|
2615
|
-
npm i -g vestauth
|
|
2616
|
-
vestauth agent init
|
|
2617
|
-
```
|
|
2618
|
-
|
|
2619
|
-
Your agent can `set` secrets.
|
|
2620
|
-
|
|
2621
|
-
```
|
|
2622
|
-
vestauth agent curl -X POST https://as2.dotenvx.com/set '{"KEY": "value"}'
|
|
2623
|
-
```
|
|
2624
|
-
|
|
2625
|
-
Your agent can `get` secrets.
|
|
2626
|
-
|
|
2627
|
-
```
|
|
2628
|
-
vestauth agent curl https://as2.dotenvx.com/get?key=KEY
|
|
2629
|
-
```
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
2581
|
## Ops 🏰
|
|
2634
2582
|
|
|
2635
2583
|
[](https://dotenvx.com/ops)
|
|
@@ -2687,7 +2635,7 @@ $ dotenvx ops logout
|
|
|
2687
2635
|
```
|
|
2688
2636
|
|
|
2689
2637
|
</details>
|
|
2690
|
-
<details><summary>`settings`</summary><br>
|
|
2638
|
+
<details><summary>`ops settings`</summary><br>
|
|
2691
2639
|
|
|
2692
2640
|
Check and configure various settings for [Ops](https://dotenvx.com/ops) - `username`, `token`, and more.
|
|
2693
2641
|
|
package/package.json
CHANGED
package/src/cli/actions/run.js
CHANGED
|
@@ -3,7 +3,6 @@ const { logger } = require('./../../shared/logger')
|
|
|
3
3
|
|
|
4
4
|
const executeCommand = require('./../../lib/helpers/executeCommand')
|
|
5
5
|
const Run = require('./../../lib/services/run')
|
|
6
|
-
const Ops = require('./../../lib/services/ops')
|
|
7
6
|
|
|
8
7
|
const conventions = require('./../../lib/helpers/conventions')
|
|
9
8
|
const DeprecationNotice = require('./../../lib/helpers/deprecationNotice')
|
|
@@ -45,8 +44,6 @@ async function run () {
|
|
|
45
44
|
new DeprecationNotice().dotenvKey() // DEPRECATION NOTICE
|
|
46
45
|
|
|
47
46
|
const {
|
|
48
|
-
beforeEnv,
|
|
49
|
-
afterEnv,
|
|
50
47
|
processedEnvs,
|
|
51
48
|
readableStrings,
|
|
52
49
|
readableFilepaths,
|
|
@@ -54,7 +51,8 @@ async function run () {
|
|
|
54
51
|
} = new Run(envs, options.overload, process.env.DOTENV_KEY, process.env, options.envKeysFile, opsOn).run()
|
|
55
52
|
|
|
56
53
|
if (opsOn) {
|
|
57
|
-
|
|
54
|
+
// removed radar feature for now. contact me at mot@dotenvx.com if still needed for your organization.
|
|
55
|
+
// try { new Ops().observe({ beforeEnv, processedEnvs, afterEnv }) } catch {}
|
|
58
56
|
}
|
|
59
57
|
|
|
60
58
|
for (const processedEnv of processedEnvs) {
|
package/src/lib/main.js
CHANGED
|
@@ -12,7 +12,6 @@ const Sets = require('./services/sets')
|
|
|
12
12
|
const Get = require('./services/get')
|
|
13
13
|
const Keypair = require('./services/keypair')
|
|
14
14
|
const Genexample = require('./services/genexample')
|
|
15
|
-
const Ops = require('./services/ops')
|
|
16
15
|
|
|
17
16
|
// helpers
|
|
18
17
|
const buildEnvs = require('./helpers/buildEnvs')
|
|
@@ -58,15 +57,14 @@ const config = function (options = {}) {
|
|
|
58
57
|
try {
|
|
59
58
|
const envs = buildEnvs(options, DOTENV_KEY)
|
|
60
59
|
const {
|
|
61
|
-
beforeEnv,
|
|
62
|
-
afterEnv,
|
|
63
60
|
processedEnvs,
|
|
64
61
|
readableFilepaths,
|
|
65
62
|
uniqueInjectedKeys
|
|
66
63
|
} = new Run(envs, overload, DOTENV_KEY, processEnv, envKeysFile, opsOn).run()
|
|
67
64
|
|
|
68
65
|
if (opsOn) {
|
|
69
|
-
|
|
66
|
+
// removed radar feature for now. contact me at mot@dotenvx.com if still needed for your organization.
|
|
67
|
+
// try { new Ops().observe({ beforeEnv, processedEnvs, afterEnv }) } catch {}
|
|
70
68
|
}
|
|
71
69
|
|
|
72
70
|
let lastError
|