chore(deps): update all non-major dependencies #8
+1,312
−867
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^3.14.0
->^3.16.0
1.11.4
->1.34.0
^0.7.5
->^0.7.6
^9.1.1
->^9.2.0
^2.0.3
->^2.1.1
^0.5.166
->^0.5.172
^5.64.1
->^5.66.0
^5.64.1
->^5.66.0
^65.4.2
->^65.4.3
^65.4.2
->^65.4.3
^3.0.2
->^3.0.5
^12.4.0
->^12.5.0
^12.4.0
->^12.5.0
^2.0.0
->^2.0.4
^9.18.0
->^9.19.0
^4.6.17
->^4.7.0
^0.4.1
->^0.4.4
^1
->^1.0.39
^1
->^1.0.29
^15.4.1
->^15.4.3
>=20.13.1
->>=20.18.2
^3.15.2
->^3.15.4
9.15.4
->9.15.5
^1.9.12
->^1.9.13
^1
->^1.0.41
^1
->^1.0.41
^1.83.4
->^1.84.0
0.10.4
->0.11.3
^1
->^1.0.28
^2.3.3
->^2.4.0
^65.4.2
->^65.4.3
^0.3.1
->^0.3.2
^3.0.2
->^3.0.5
Release Notes
antfu/eslint-config (@antfu/eslint-config)
v3.16.0
Compare Source
🚀 Features
View changes on GitHub
v3.15.0
Compare Source
🚀 Features
prefer-const
in editor - by @antfu (12dd5)View changes on GitHub
dotenvx/dotenvx (@dotenvx/dotenvx)
v1.34.0
Compare Source
Added
main.set
method now writes to files (#517)v1.33.0
Compare Source
Added
import '@​dotenvx/dotenvx/config'
(#508)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)v1.14.1
Compare Source
Changed
v1.14.0
Compare Source
Added
dotenvx keypair
command for printing your public/private keypairs (#375)v1.13.3
Compare Source
Changed
decrypt
fails in any way (#374)v1.13.2
Compare Source
Added
getColor
andbold
tolib/main.js
(#369)v1.13.1
Compare Source
Added
logger
andsetLogLevel
tolib/main.js
-const = { logger, setLogLevel } = require('@​dotenvx/dotenvx')
(#368)v1.13.0
Compare Source
Changed
ls
to core commands (#367)v1.12.1
Compare Source
Changed
dotenvx get --format shell
(#366)v1.12.0
Compare Source
Added
dotenvx get --format shell
option (#363)v1.11.5
Compare Source
Changed
tinyexec
forexeca
- to support usage in bunnuxt/eslint (@nuxt/eslint)
v0.7.6
Compare Source
🚀 Features
View changes on GitHub
nuxt-modules/i18n (@nuxtjs/i18n)
v9.2.0
Compare Source
This changelog is generated by GitHub Releases
🚀 Features
🐞 Bug Fixes
availableLocales
not including configured locales - by @BobbieGoede in https://github.com/nuxt-modules/i18n/issues/3347 (1647b)View changes on GitHub
v9.1.5
Compare Source
This changelog is generated by GitHub Releases
🐞 Bug Fixes
View changes on GitHub
v9.1.4
Compare Source
This changelog is generated by GitHub Releases
🐞 Bug Fixes
View changes on GitHub
v9.1.3
Compare Source
This changelog is generated by GitHub Releases
🐞 Bug Fixes
View changes on GitHub
v9.1.2
Compare Source
This changelog is generated by GitHub Releases
🐞 Bug Fixes
intlify
dependencies - by @BobbieGoede in https://github.com/nuxt-modules/i18n/issues/3274 (a026b)pages
config should use route name as key - by @BobbieGoede in https://github.com/nuxt-modules/i18n/issues/3286 (3ba77)View changes on GitHub
harlan-zw/nuxt-seo (@nuxtjs/seo)
v2.1.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.1.0
Compare Source
🚀 Features
Nuxt Content v3
All modules now support Nuxt Content v3 including Robots, Sitemap, OG Image, Schema.org and Link Checker.
You can either install them manually by following the individual module instructions or use the Nuxt SEO
asSeoCollection()
to register them all at once.View changes on GitHub
scalar/scalar (@scalar/hono-api-reference)
v0.5.172
Patch Changes
a30e7cc
][
v0.5.171
](https://redirect.githu