@dotenvx/dotenvx 1.51.2 → 1.51.3
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 +7 -1
- package/package.json +1 -1
- package/src/lib/services/encrypt.js +1 -0
- package/src/lib/services/sets.js +1 -0
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.51.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.51.3...main)
|
|
6
|
+
|
|
7
|
+
## [1.51.3](https://github.com/dotenvx/dotenvx/compare/v1.51.2...v1.51.3) (2025-12-29)
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
* Add hint on `.env.keys` for `dotenvx ops backup`. Dotenvx Ops Backup lets you back up your private keys securely with just a single command. It's a convenient alterantive to manually copy/pasting them in and out of 1Password. ([#718](https://github.com/dotenvx/dotenvx/pull/718))
|
|
6
12
|
|
|
7
13
|
## [1.51.2](https://github.com/dotenvx/dotenvx/compare/v1.51.1...v1.51.2) (2025-12-12)
|
|
8
14
|
|
package/package.json
CHANGED
|
@@ -133,6 +133,7 @@ class Encrypt {
|
|
|
133
133
|
'#/------------------!DOTENV_PRIVATE_KEYS!-------------------/',
|
|
134
134
|
'#/ private decryption keys. DO NOT commit to source control /',
|
|
135
135
|
'#/ [how it works](https://dotenvx.com/encryption) /',
|
|
136
|
+
'#/ backup with: `dotenvx ops backup` /',
|
|
136
137
|
'#/----------------------------------------------------------/'
|
|
137
138
|
].join('\n')
|
|
138
139
|
const appendPrivateKey = [
|
package/src/lib/services/sets.js
CHANGED
|
@@ -137,6 +137,7 @@ class Sets {
|
|
|
137
137
|
'#/------------------!DOTENV_PRIVATE_KEYS!-------------------/',
|
|
138
138
|
'#/ private decryption keys. DO NOT commit to source control /',
|
|
139
139
|
'#/ [how it works](https://dotenvx.com/encryption) /',
|
|
140
|
+
'#/ backup with: `dotenvx ops backup` /',
|
|
140
141
|
'#/----------------------------------------------------------/'
|
|
141
142
|
].join('\n')
|
|
142
143
|
const appendPrivateKey = [
|