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.7.3 -> ^3.8.0 age adoption passing confidence devDependencies minor
@dotenvx/dotenvx 1.11.4 -> 1.20.1 age adoption passing confidence devDependencies minor
@hono/node-server ^1.13.1 -> ^1.13.2 age adoption passing confidence devDependencies patch
@nuxt/eslint (source) ^0.5.7 -> ^0.6.0 age adoption passing confidence devDependencies minor
@nuxtjs/color-mode ^3.5.1 -> ^3.5.2 age adoption passing confidence devDependencies patch
@nuxtjs/seo (source) 2.0.0-rc.10 -> 2.0.0-rc.23 age adoption passing confidence devDependencies patch
@primevue/nuxt-module (source) ^4.0.7 -> ^4.1.1 age adoption passing confidence devDependencies minor
@primevue/themes (source) ^4.0.7 -> ^4.1.1 age adoption passing confidence dependencies minor
@tanstack/query-persist-client-core (source) ^5.59.0 -> ^5.59.16 age adoption passing confidence devDependencies patch
@tanstack/vue-query (source) ^5.59.1 -> ^5.59.16 age adoption passing confidence devDependencies patch
@types/aws-lambda (source) 8.10.138 -> 8.10.145 age adoption passing confidence devDependencies patch
@unocss/eslint-plugin (source) ^0.63.3 -> ^0.63.6 age adoption passing confidence devDependencies patch
@unocss/nuxt (source) ^0.63.3 -> ^0.63.6 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence devDependencies patch
arktype (source) 2.0.0-rc.14 -> 2.0.0-rc.17 age adoption passing confidence devDependencies patch
eslint (source) ^9.12.0 -> ^9.13.0 age adoption passing confidence devDependencies minor
hono (source) ^4.6.3 -> ^4.6.6 age adoption passing confidence devDependencies patch
hono-sessions ^0.5.8 -> ^0.6.1 age adoption passing confidence devDependencies minor
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
node (source) >=20.13.1 -> >=20.18.0 age adoption passing confidence engines minor
pnpm (source) 9.12.0 -> 9.12.2 age adoption passing confidence packageManager patch
radix-vue ^1.9.6 -> ^1.9.7 age adoption passing confidence devDependencies patch
sass ^1.79.4 -> ^1.80.4 age adoption passing confidence devDependencies minor
string.prototype.codepointat (source) ^1 -> ^1.0.28 age adoption passing confidence pnpm.overrides patch
tailwind-merge ^2.5.3 -> ^2.5.4 age adoption passing confidence devDependencies patch
turbo (source) ^2.1.3 -> ^2.2.3 age adoption passing confidence devDependencies minor
typescript (source) ^5.6.2 -> ^5.6.3 age adoption passing confidence devDependencies patch
unocss ^0.63.3 -> ^0.63.6 age adoption passing confidence devDependencies patch
vitest (source) ^2.1.2 -> ^2.1.3 age adoption passing confidence devDependencies patch
vue (source) ^3.5.11 -> ^3.5.12 age adoption passing confidence devDependencies patch

Release Notes

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

v3.8.0

Compare Source

   🚀 Features
    View changes on GitHub
dotenvx/dotenvx (@​dotenvx/dotenvx)

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
honojs/node-server (@​hono/node-server)

v1.13.2

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.1...v1.13.2

nuxt/eslint (@​nuxt/eslint)

v0.6.0

Compare Source

   🚀 Features
    View changes on GitHub
nuxt-modules/color-mode (@​nuxtjs/color-mode)

v3.5.2

Compare Source

compare changes

📖 Documentation
🏡 Chore
❤️ Contributors
harlan-zw/nuxt-seo (@​nuxtjs/seo)

v2.0.0-rc.23

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.22

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.21

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.20

Compare Source

   🚨 Breaking Changes

⚠️ Please see https://github.com/nuxt-modules/sitemap/pull/320 if you have submitted multi-sitemap URLS in Google Search Console as the paths have changed.

⚠️ Please verify your sitemap output.

    View changes on GitHub

v2.0.0-rc.19

Compare Source

No significant changes

    View changes on GitHub

v2.0.0-rc.18

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.17

Compare Source

   🚨 Breaking Changes

⚠️ Please see https://github.com/nuxt-modules/sitemap/pull/320 if you have submitted multi-sitemap URLS in Google Search Console as the paths have changed.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.15

Compare Source

Nuxt SEO v2 stable is approaching, see the v2 Stable Release Tasks issue to track.

This release fixes all submodules from having explicit dependencies for DevTools (such as shiki).

No significant changes

    View changes on GitHub

v2.0.0-rc.14

Compare Source

Nuxt SEO v2 stable is approaching, see the v2 Stable Release Tasks issue to track.

This bumps all sub modules.

No significant changes

    View changes on GitHub

v2.0.0-rc.13

Compare Source

   🚨 Breaking Changes
  • nuxt-simple-robots has been migrated into @nuxtjs/robots. There should be no breaking changes but please test the update.
    View changes on GitHub

v2.0.0-rc.12

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.0.0-rc.11

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
primefaces/primevue (@​primevue/nuxt-module)

v4.1.1

Compare Source

Full Changelog

Fixed bugs:

  • Wrong token binding on inputtext #​6590
  • Table sort icon not aligned properly #​6588
  • Improve nested overlays in mobile #​6587
  • MegaMenu ignores token #​6585
  • AutoComplete is using token from the deprecated InputChips #​6584
  • Disabled ToggleSwitch in dark mode is same as non-disabled #​6583
  • Slider track border radius token not applied #​6582
  • Tree filter too close, visual bug#​6581
  • Invalid CSS in DataTable and TreeTable #​6580
  • MegaMenu: mobile visual defects #​6578
  • Typo in splitter.js (autocomplete err) #​6570
  • CascadeSelect: focus defect on mouse enter #​6538
  • Typescript support is non-existent in All components #​6152
  • DataTable - button click in a cell propagates to row-click #​6472
  • No intellisense for props, slots etc. with v4 #​5903

v4.1.0

Compare Source

Full Changelog

Fixed bugs:

  • InputMask: type bug #​6505
  • DataTable: row focus defects #​6488
  • MultiSelect: maxSelectedLabels is not working with display chip #​6485
  • DatePicker: focus on wrong element when adding "Select" component to footer slot of DatePicker #​6482
  • PanelMenu: Incorrect name in PanelMenuPassThroughOptions documentation #​6475
  • Dialog: @​media styles do not append right component #​6474
  • ContextMenu uses unreliable way to determine scrollTop #​6469
  • Drawer: emit event(update:modelValue) should be update:visible in docs #​6464
  • CascadeSelect: aria-hidden w3c defect #​6458
  • DataTable: missing unstyled prop in component: HeaderCheckbox.vue #​6444
  • Select: v-tooltip does not work #​6443
  • Galleria: Global ripple effect breaks Galleria #​6438
  • Select: Selecting 0 option shows empty in select #​6437
  • DataTable: column resize does not work anymore #​6436
  • PT implementation defects #​6435
  • Select component does not handle focus via label with labelId #​6432
  • Select: autoFilterFocus stuck when switching between Selects #​6420
  • Password: autofocus does not work #​6413
  • ScrollTop: pt implementation defect #​6412
  • Scoped style (dt props) does not attach to page with correct selector #​6408
  • InputOtp: clicking on a selected filled box prevents you removing #​6373
  • Datepicker: No manual input in view = 'year' #​6347
  • Icons Missing #​6335
  • MultiSelect: Translation does not take effect #​6303
  • VirtualScroller: Unstyled mode broke core functionality #​6294
  • InputMask: input is getting mixed up #​6276
  • Menu componets: Design Token does not work#​6129
  • DataTable: reorder with drag and drop not working as expected #​6014
  • Nuxt autoimport component prefix: add typescript dynamic name support #​6007
  • DataTable: Pass Through keys for emptyMessage not working #​6006
  • TreeSelect: expandedKeys not working #​5967
  • Splitter/SplitterPanel: size not updated #​5463
  • Dropdown & MultiSelect: Disabled selected value #​4431

Implemented New Features and Enhancements:

  • TreeSelect: new option slot #​6534
  • CascadeSelect: move move/enter behavior changes #​6533
  • Add extend keyword to extend css variables to presets #​6524
  • ContextMenu / TieredMenu / CascadeSelect: responsiveness updates #​6522
  • New Component: ImageCompare #​6518
  • Tree: new header and footer slots #​6513
  • ToggleButton: handle element added #​6511
  • New Material Design Based Theme #​6508
  • New Design Tokens #​6507
  • CascadeSelect: new header and footer slots #​6504
  • New KeyFilter directive #​6503
  • TreeTable: ContextMenu implementation #​6489
  • TreeSelect: Filter and lazy modes #​6481
  • SpeedDial: itemicon slot #​6463
  • ConfirmDialog: improve options #​6456
  • Add css keyword to themes section to inject custom styles #​6452
  • Move primitive and semantic options of themes to separate modules #​6425
  • New IftaLabel component #​6419
  • New Float Label Variants #​6418
  • Tree: Allow filterBy to be a getter #​6374
  • Tree: no slot's data for nodetoggleicon template when node is loading #​6371
  • Nuxt plugin types break if I add @​primevue/nuxt-module to modules #​6289
  • DataTable: Column Group Filters #​6151
  • DataTable: add prop showHeaders #​5949
TanStack/query (@​tanstack/query-persist-client-core)

v5.59.16

Compare Source

Version 5.59.16 - 10/23/24, 12:53 PM

Changes

Fix
  • react-query: make sure promises are always finalized (#​8211) (df49fbd) by Dominik Dorfmeister
Chore
  • query-core: define queryCache notify method"s return type (#​8191) (4fceb26) by Haeun Nam
  • react-query: remove unnecessary test file (test/suspense.tsx, suspense.test-d.tsx) (#​8208) (d3e2a8a) by @​manudeli
Docs

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@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 20 times, most recently from bea7d48 to 80785ad Compare October 17, 2024 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 9779f59 to 45bf68d Compare October 24, 2024 01:49
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