Skip to content
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

chore(deps): update all non-major dependencies #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 27, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@antfu/eslint-config ^3.14.0 -> ^3.16.0 age adoption passing confidence devDependencies minor
@dotenvx/dotenvx 1.11.4 -> 1.34.0 age adoption passing confidence devDependencies minor
@nuxt/eslint (source) ^0.7.5 -> ^0.7.6 age adoption passing confidence devDependencies patch
@nuxtjs/i18n (source) ^9.1.1 -> ^9.2.0 age adoption passing confidence devDependencies minor
@nuxtjs/seo (source) ^2.0.3 -> ^2.1.1 age adoption passing confidence devDependencies minor
@scalar/hono-api-reference (source) ^0.5.166 -> ^0.5.172 age adoption passing confidence devDependencies patch
@tanstack/query-persist-client-core (source) ^5.64.1 -> ^5.66.0 age adoption passing confidence devDependencies minor
@tanstack/vue-query (source) ^5.64.1 -> ^5.66.0 age adoption passing confidence devDependencies minor
@unocss/eslint-plugin (source) ^65.4.2 -> ^65.4.3 age adoption passing confidence devDependencies patch
@unocss/nuxt (source) ^65.4.2 -> ^65.4.3 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) ^3.0.2 -> ^3.0.5 age adoption passing confidence devDependencies patch
@vueuse/core (source) ^12.4.0 -> ^12.5.0 age adoption passing confidence devDependencies minor
@vueuse/nuxt (source) ^12.4.0 -> ^12.5.0 age adoption passing confidence devDependencies minor
arktype (source) ^2.0.0 -> ^2.0.4 age adoption passing confidence devDependencies patch
eslint (source) ^9.18.0 -> ^9.19.0 age adoption passing confidence devDependencies minor
hono (source) ^4.6.17 -> ^4.7.0 age adoption passing confidence devDependencies minor
hono-openapi (source) ^0.4.1 -> ^0.4.4 age adoption passing confidence devDependencies patch
is-core-module (source) ^1 -> ^1.0.39 age adoption passing confidence pnpm.overrides patch
isarray (source) ^1 -> ^1.0.29 age adoption passing confidence pnpm.overrides patch
lint-staged ^15.4.1 -> ^15.4.3 age adoption passing confidence devDependencies patch
node (source) >=20.13.1 -> >=20.18.2 age adoption passing confidence engines minor
nuxt (source) ^3.15.2 -> ^3.15.4 age adoption passing confidence devDependencies patch
pnpm (source) 9.15.4 -> 9.15.5 age adoption passing confidence packageManager patch
radix-vue ^1.9.12 -> ^1.9.13 age adoption passing confidence devDependencies patch
safe-buffer (source) ^1 -> ^1.0.41 age adoption passing confidence pnpm.overrides patch
safer-buffer (source) ^1 -> ^1.0.41 age adoption passing confidence pnpm.overrides patch
sass ^1.83.4 -> ^1.84.0 age adoption passing confidence devDependencies minor
shadcn-nuxt (source) 0.10.4 -> 0.11.3 age adoption passing confidence devDependencies minor
string.prototype.codepointat (source) ^1 -> ^1.0.28 age adoption passing confidence pnpm.overrides patch
turbo (source) ^2.3.3 -> ^2.4.0 age adoption passing confidence devDependencies minor
unocss (source) ^65.4.2 -> ^65.4.3 age adoption passing confidence devDependencies patch
unocss-preset-shadcn ^0.3.1 -> ^0.3.2 age adoption passing confidence devDependencies patch
vitest (source) ^3.0.2 -> ^3.0.5 age adoption passing confidence devDependencies patch

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v3.16.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.15.0

Compare Source

   🚀 Features
    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
  • support ESM import convenience import '@​dotenvx/dotenvx/config' (#​508)

v1.32.1

Compare Source

Changed
  • remove duplicated help messages (#​504)

v1.32.0

Compare Source

Added
  • add encrypted check support for ext prebuild (#​501)
Changed
  • modify ext precommit to check git modified state as well as git staged state - useful for using dotenvx ext precommit without the --install flag in automated scripts and ci. (#​499)
Removed
  • remove internal logger methods errorvp, errorvpb, warnv, warnvp, warnvpb, successvp, successvpb, help2 (#​501)

v1.31.3

Compare Source

Changed
  • adjust wingetcreate to use powershell when parsing version

v1.31.2

Compare Source

Changed
  • use wingetcreate for releasing to WinGet (#​498)

v1.31.1

Compare Source

Changed
  • 🐞 fix encryption of values containing explicit \n newlines (#​495)

v1.31.0

Compare Source

Added
  • expose main.set function (#​492)
  • add missing types for main.config (#​491)

v1.30.1

Compare Source

Added
  • support complex command substitution combining variable expansion (#​490)

v1.30.0

Compare Source

Added
  • add -fk (--env-keys-file) flag to customize the path to your .env.keys file with run, 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
  • add --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
  • add support for \t expansion when double quoted. (e.g. TAB="hi\tfriend" becomes hi friend) (#​479)

v1.26.2

Compare Source

Changed
  • build binaries with bytecode option (#​477)

v1.26.1

Compare Source

Added
  • add typescript type definitions for main.parse method (#​475)

v1.26.0

Compare Source

Added
  • add privateKey option to main.parse method (#​474)

v1.25.2

Compare Source

Added
  • for binaries add pre-build step using esbuild (#​471)
Removed
  • remove types for functions that were removed a while back (2aa660)

v1.25.1

Compare Source

Changed
  • improve helpful error messaging around decryption failures by specifying specific key and private key name (#​463)

v1.25.0

Compare Source

Added
  • add run --strict flag to exit with code 1 if any errors are encountered - like a missing .env file or decryption failure (#​460)
  • add get --strict flag to exit with code 1 if any errors are encountered - like a missing .env file or decryption failure (#​461)
  • add strict option to config() to throw for any errors (#​459)
Changed
  • log MISSING_ENV_FILE and DECRYPTION_FAILED errors to stderr (prior was stdout as a warning) (#​459)
Removed
  • remove dotenvx.get() function from lib/main.js. (parse already historically exists for this purpose) (#​461)

v1.24.5

Compare Source

Changed
  • 🐞 do not expand prior literal values (#​458)

v1.24.4

Compare Source

Changed
  • do not expand command substitution (#​456)

v1.24.3

Compare Source

Changed
  • 🐞 fix command substitution for more complex commands (#​455)

v1.24.2

Compare Source

Changed
  • treat pre-existing expandable values as literal in process.env (#​450)

v1.24.1

Compare Source

Changed

v1.24.0

Compare Source

Added
  • support progressive append/update (#​445)
FOO=foo
FOO=${FOO}bar

v1.23.0

Compare Source

Added
  • deeper variable expansion support and protection against self-referencing variables 🛡️ (#​439)

v1.22.2

Compare Source

Changed
  • more lenient handling of -- separator and better error messaging when flags are ambiguous (#​438)

v1.22.1

Compare Source

Changed
  • 🐞 patch loading order issue with single quotes (#​436)

v1.22.0

Compare Source

Added
  • add --pattern argument to ext gitignore (dotenvx ext gitignore --pattern .env.keys) (#​430)
Changed
  • clarify next steps after first time encrypting (#​430)

v1.21.1

Compare Source

Changed
  • for --convention nextjs ingnore .env.local for TEST environment (#​425)
  • for precommit redirect missing dotenvx command using POSIX compliant redirection (#​424)
  • make parent dotenvx help command less noisy by removing [options]. run dotenvx 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
  • update eciesjs (#​421)
  • remove default values for ts interface - no longer permitted by latest ts (#​419)

v1.20.0

Compare Source

see CHANGELOG

v1.19.3

Compare Source

Changed
  • 🐞 fix decrypt re-encrypt of values containing backslashes (#​406)

v1.19.2

Compare Source

Changed
  • forward additional signals like SIGUSR2 (#​403)

v1.19.1

Compare Source

Changed
  • if SIGTERM or SIGINT sent, don't bubble wrapped process error (#​402)

v1.19.0

Compare Source

Added
  • support key glob filtering for encrypt and decrypt. example: dotenvx encrypt -ek "NEXT_PUBLIC_*" (#​397)

v1.18.1

Compare Source

Added
  • escape user inputted regex groupings like $1 or $2. (#​396)

v1.18.0

Compare Source

Added
  • set and encrypt preserve leading spaces (#​395)
     HELLO=world
Changed
  • improve escape and quote handling for set, encrypt, and decrypt (#​395)
  • 🐞 fix encrypt, then decrypt, then encrypt on a json value (#​377)

Note: the underlying replace engine to support these changes now wraps your values in single quotes. the prior replace engine wrapped in double quotes.

So where your .env used to look like this with double quotes:

HELLO="encrypted:1234"
API_KEY="encrypted:5678"

It will now begin looking like this with single quotes:

HELLO='encrypted:1234'
API_KEY='encrypted:5678'

It's an aesthetic side effect only. Your values will continue to be decrypted and encrypted correctly.

v1.17.0

Compare Source

Added
  • add --format=eval option for get (#​393)

v1.16.1

Compare Source

Changed
  • suppress stderr using options.stdio (#​391)

v1.16.0

Compare Source

Changed
  • for dotenvx keypair call out to dotenvx pro keypair if pro installed (#​390)

v1.15.0

Compare Source

Added
  • add --format=shell option for keypair (#​389)

v1.14.2

Compare Source

Changed
  • swap process.stdout.write for console.log to patch up npx edge case (#​387)

v1.14.1

Compare Source

Changed
  • run precommit hook only on staged files (#​380)

v1.14.0

Compare Source

Added
  • add dotenvx keypair command for printing your public/private keypairs (#​375)

v1.13.3

Compare Source

Changed
  • exit code 1 when decrypt fails in any way (#​374)

v1.13.2

Compare Source

Added
  • expose getColor and bold to lib/main.js (#​369)

v1.13.1

Compare Source

Added
  • expose logger and setLogLevel to lib/main.js - const = { logger, setLogLevel } = require('@​dotenvx/dotenvx') (#​368)

v1.13.0

Compare Source

Changed
  • move ls to core commands (#​367)

v1.12.1

Compare Source

Changed
  • return without quotations for dotenvx get --format shell (#​366)

v1.12.0

Compare Source

Added
  • add dotenvx get --format shell option (#​363)

v1.11.5

Compare Source

Changed
  • revert tinyexec for execa - to support usage in bun
nuxt/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
    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
    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.

  • Nuxt Robots: robots (docs)
  • Nuxt Sitemap: sitemap (docs)
  • Nuxt OG Image: ogImage (docs)
  • Nuxt Schema.org: schemaOrg (docs)
    View changes on GitHub
scalar/scalar (@​scalar/hono-api-reference)

v0.5.172

Patch Changes

[v0.5.171](https://redirect.githu

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 25 times, most recently from ad28f46 to b3a722a Compare June 3, 2024 07:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d377869 to ef59ce2 Compare June 5, 2024 15:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 059e969 to 109f41f Compare January 27, 2025 18:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from a3290cd to a5d8310 Compare February 3, 2025 14:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 350e169 to 6a6ea15 Compare February 6, 2025 22:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6a6ea15 to 1042ab3 Compare February 7, 2025 09:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants