-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency @dotenvx/dotenvx to v1.32.1 #22
base: main
Are you sure you want to change the base?
Conversation
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: npm/@dotenvx/[email protected] |
fe5fc29
to
c8cd8af
Compare
c8cd8af
to
9738a3e
Compare
e5e0f65
to
9e56543
Compare
9e56543
to
d964bf3
Compare
d964bf3
to
10ef81b
Compare
98e4289
to
2f5d451
Compare
2f5d451
to
69e7dcc
Compare
69e7dcc
to
e60babc
Compare
e60babc
to
61e328d
Compare
609af90
to
32cfac0
Compare
32cfac0
to
ce6c949
Compare
ce6c949
to
9a1db50
Compare
9a1db50
to
ced0578
Compare
ced0578
to
a9dd8cb
Compare
a9dd8cb
to
cafbeb9
Compare
cafbeb9
to
4c6b922
Compare
4c6b922
to
5d71815
Compare
5d71815
to
f744695
Compare
f744695
to
27ede7c
Compare
27ede7c
to
5fd4923
Compare
This PR contains the following updates:
1.14.1
->1.32.1
Release Notes
dotenvx/dotenvx (@dotenvx/dotenvx)
v1.32.1
Compare Source
Changed
v1.32.0
Compare Source
Added
ext prebuild
(#501)Changed
ext precommit
to check git modified state as well as git staged state - useful for usingdotenvx ext precommit
without the--install
flag in automated scripts and ci. (#499)Removed
errorvp, errorvpb, warnv, warnvp, warnvpb, successvp, successvpb, help2
(#501)v1.31.3
Compare Source
Changed
v1.31.2
Compare Source
Changed
v1.31.1
Compare Source
Changed
\n
newlines (#495)v1.31.0
Compare Source
Added
main.set
function (#492)main.config
(#491)v1.30.1
Compare Source
Added
v1.30.0
Compare Source
Added
-fk
(--env-keys-file
) flag to customize the path to your.env.keys
file withrun, get, set, encrypt, decrypt, and keypair
🎉 (#486)This is great for monorepos. Maintain one
.env.keys
file across all your apps.$ dotenvx encrypt -fk .env.keys -f apps/backend/.env $ dotenvx encrypt -fk .env.keys -f apps/frontend/.env $ tree -a . ├── .env.keys └── apps ├── backend │ └── .env └── frontend └── .env $ dotenvx get -fk .env.keys -f apps/backend/.env
v1.29.0
Compare Source
Added
--ignore
flag to suppress specified errors. example:dotenvx run --ignore=MISSING_ENV_FILE
(#485)v1.28.0
Compare Source
Changed
.env.keys
file is generated WITHOUT quotes going forward. This is to minimize friction around Docker gotchas to developers - old versions of Docker do not support--env-file
containing quoted keys/values. (#480) (additional note)v1.27.0
Compare Source
Added
\t
expansion when double quoted. (e.g.TAB="hi\tfriend"
becomeshi friend
) (#479)v1.26.2
Compare Source
Changed
v1.26.1
Compare Source
Added
main.parse
method (#475)v1.26.0
Compare Source
Added
privateKey
option tomain.parse
method (#474)v1.25.2
Compare Source
Added
Removed
v1.25.1
Compare Source
Changed
v1.25.0
Compare Source
Added
run --strict
flag to exit with code1
if any errors are encountered - like a missing.env
file or decryption failure (#460)get --strict
flag to exit with code1
if any errors are encountered - like a missing.env
file or decryption failure (#461)strict
option toconfig()
to throw for any errors (#459)Changed
MISSING_ENV_FILE
andDECRYPTION_FAILED
errors to stderr (prior was stdout as a warning) (#459)Removed
dotenvx.get()
function fromlib/main.js
. (parse
already historically exists for this purpose) (#461)v1.24.5
Compare Source
Changed
v1.24.4
Compare Source
Changed
v1.24.3
Compare Source
Changed
v1.24.2
Compare Source
Changed
process.env
(#450)v1.24.1
Compare Source
Changed
cross-spawn
to prevent potential ReDoS CVE-2024-21538 (#449)v1.24.0
Compare Source
Added
v1.23.0
Compare Source
Added
v1.22.2
Compare Source
Changed
--
separator and better error messaging when flags are ambiguous (#438)v1.22.1
Compare Source
Changed
v1.22.0
Compare Source
Added
--pattern
argument toext gitignore
(dotenvx ext gitignore --pattern .env.keys
) (#430)Changed
v1.21.1
Compare Source
Changed
--convention nextjs
ingnore.env.local
for TEST environment (#425)precommit
redirect missingdotenvx
command using POSIX compliant redirection (#424)dotenvx help
command less noisy by removing[options]
. rundotenvx COMMAND -h
to list all available options like always (#429)v1.21.0
Compare Source
Changed
🎓 now if you choose to single quote, double quote, no quote, or backtick your value it will be respected - including for encrypted values. this more intuitively handles complex cases like escaped characters, literals, and json.
v1.20.1
Compare Source
Changed
v1.20.0
Compare Source
see CHANGELOG
v1.19.3
Compare Source
Changed
v1.19.2
Compare Source
Changed
SIGUSR2
(#403)v1.19.1
Compare Source
Changed
SIGTERM
orSIGINT
sent, don't bubble wrapped process error (#402)v1.19.0
Compare Source
Added
encrypt
anddecrypt
. example:dotenvx encrypt -ek "NEXT_PUBLIC_*"
(#397)v1.18.1
Compare Source
Added
$1
or$2
. (#396)v1.18.0
Compare Source
Added
set
andencrypt
preserve leading spaces (#395)Changed
set
,encrypt
, anddecrypt
(#395)encrypt
, thendecrypt
, thenencrypt
on a json value (#377)Note: the underlying
replace
engine to support these changes now wraps your values in single quotes. the priorreplace
engine wrapped in double quotes.So where your
.env
used to look like this with double quotes:It will now begin looking like this with single quotes:
It's an aesthetic side effect only. Your values will continue to be decrypted and encrypted correctly.
v1.17.0
Compare Source
Added
--format=eval
option forget
(#393)v1.16.1
Compare Source
Changed
options.stdio
(#391)v1.16.0
Compare Source
Changed
dotenvx keypair
call out todotenvx pro keypair
if pro installed (#390)v1.15.0
Compare Source
Added
--format=shell
option forkeypair
(#389)v1.14.2
Compare Source
Changed
process.stdout.write
forconsole.log
to patch up npx edge case (#387)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.