@dotenvx/dotenvx 1.71.1 → 1.71.2

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,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.71.1...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.71.2...main)
6
+
7
+ ## [1.71.2](https://github.com/dotenvx/dotenvx/compare/v1.71.1...v1.71.2) (2026-06-08)
8
+
9
+ ### Changed
10
+
11
+ * touch up `get`, `set`, and `decrypt` when armor installed ([#834](https://github.com/dotenvx/dotenvx/pull/834))
6
12
 
7
13
  ## [1.71.1](https://github.com/dotenvx/dotenvx/compare/v1.71.0...v1.71.1) (2026-06-08)
8
14
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.71.1",
2
+ "version": "1.71.2",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a secure dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -21,6 +21,7 @@ async function decrypt () {
21
21
 
22
22
  // stdout - should not have a try so that exit codes can surface to stdout
23
23
  if (options.stdout) {
24
+ if (spinner) spinner.stop()
24
25
  const {
25
26
  processedEnvs
26
27
  } = await new Decrypt(envs, options.key, options.excludeKey, options.envKeysFile, noArmor).run()
@@ -41,6 +42,7 @@ async function decrypt () {
41
42
  }
42
43
  } else {
43
44
  try {
45
+ if (spinner) spinner.stop()
44
46
  const {
45
47
  processedEnvs,
46
48
  changedFilepaths,
@@ -31,6 +31,7 @@ async function get (key) {
31
31
  try {
32
32
  const sesh = new Session()
33
33
  const noArmor = options.armor === false || (await sesh.noArmor())
34
+ if (spinner) spinner.stop()
34
35
  const { parsed, errors } = await new Get(key, envs, options.overload, options.all, options.envKeysFile, noArmor).run()
35
36
 
36
37
  for (const error of errors || []) {
@@ -20,6 +20,7 @@ async function rotate () {
20
20
 
21
21
  // stdout - should not have a try so that exit codes can surface to stdout
22
22
  if (options.stdout) {
23
+ if (spinner) spinner.stop()
23
24
  const {
24
25
  processedEnvs
25
26
  } = await new Rotate(envs, options.key, options.excludeKey, options.envKeysFile, noArmor).run()
@@ -34,6 +35,7 @@ async function rotate () {
34
35
  process.exit(0) // exit early
35
36
  } else {
36
37
  try {
38
+ if (spinner) spinner.stop()
37
39
  const {
38
40
  processedEnvs,
39
41
  changedFilepaths,
@@ -30,6 +30,7 @@ async function set (key, value) {
30
30
  const noArmor = options.armor === false || (await sesh.noArmor())
31
31
  const noCreate = options.create === false
32
32
 
33
+ if (spinner) spinner.stop()
33
34
  const {
34
35
  processedEnvs,
35
36
  changedFilepaths,