shelve icon indicating copy to clipboard operation
shelve copied to clipboard

chore(deps): update all non-major dependencies

Open renovate[bot] opened this issue 6 months ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@hrcd/eslint-config (source) ^2.0.1 -> ^2.0.2 age adoption passing confidence devDependencies patch
@iconify-json/lucide ^1.1.200 -> ^1.1.207 age adoption passing confidence devDependencies patch
@nuxt/content (source) ^2.13.1 -> ^2.13.2 age adoption passing confidence devDependencies patch
@nuxt/fonts ^0.7.1 -> ^0.7.2 age adoption passing confidence devDependencies patch
@nuxt/ui (source) ^2.17.0 -> ^2.18.4 age adoption passing confidence devDependencies minor
@prisma/client (source) ^5.17.0 -> ^5.18.0 age adoption passing confidence devDependencies minor
@vitejs/plugin-vue (source) ^5.0.5 -> ^5.1.2 age adoption passing confidence devDependencies minor
@vueuse/core (source) ^10.11.0 -> ^10.11.1 age adoption passing confidence devDependencies patch
@vueuse/nuxt (source) ^10.11.0 -> ^10.11.1 age adoption passing confidence devDependencies patch
eslint (source) ^9.7.0 -> ^9.9.0 age adoption passing confidence devDependencies minor
node (source) 20.15.1 -> 20.17.0 age adoption passing confidence minor
node (source) >=20.15.1 -> >=20.17.0 age adoption passing confidence engines minor
nuxt (source) ^3.12.3 -> ^3.12.4 age adoption passing confidence devDependencies patch
prisma (source) ^5.17.0 -> ^5.18.0 age adoption passing confidence devDependencies minor
resend ^3.4.0 -> ^3.5.0 age adoption passing confidence devDependencies minor
turbo (source) ^2.0.7 -> ^2.0.14 age adoption passing confidence devDependencies patch
typescript (source) 5.5.3 -> 5.5.4 age adoption passing confidence devDependencies patch
vue (source) ^3.4.31 -> ^3.4.38 age adoption passing confidence devDependencies patch
vue-router ^4.4.0 -> ^4.4.3 age adoption passing confidence devDependencies patch
vue-sonner ^1.1.3 -> ^1.1.4 age adoption passing confidence devDependencies patch

Release Notes

HugoRCD/eslint-config (@​hrcd/eslint-config)

v2.0.2

Compare Source

compare changes

🏡 Chore
❤️ Contributors
nuxt/content (@​nuxt/content)

v2.13.2

Compare Source

compare changes

🚀 Enhancements
🩹 Fixes
  • Add string type to gt/lt/gte/lte type definitions (#​2704)
  • search: Non-md file might not have dscription file (#​2706)
  • module: Disable MDC plugin if user disabled it (#​2707)
  • Unwatch storage on nitro close (ec7105ad)
📖 Documentation
  • Add missing await for searchContent docs (#​2692)
  • Prerender home (4253f0bf)
  • Update nuxt-og-image and add postinstall script (#​2705)
  • Update ContentSlot Documentation (#​2713)
🤖 CI
❤️ Contributors
nuxt/fonts (@​nuxt/fonts)

v0.7.2

Compare Source

compare changes

🔥 Performance
  • local: Use tinyglobby to scan font files (#​205)
🩹 Fixes
  • Apply - replacement to filename (d83aa0d)
  • adobe: Use provided css_names from API (#​192)
  • fontsource: Use /variable endpoint for retrieving variable axes (#​196)
📖 Documentation
🏡 Chore
✅ Tests
❤️ Contributors
nuxt/ui (@​nuxt/ui)

v2.18.4

Compare Source

Bug Fixes

v2.18.3

Compare Source

Bug Fixes
  • Link: define rel as any (69f605f)
  • types: only use .ts for index (93ddf1d)

v2.18.2

Compare Source

Bug Fixes
  • Tabs: add missing UIcon import (4fd1be2)

v2.18.1

Compare Source

Bug Fixes
  • components: use relative imports (ea721a3)

v2.18.0

Compare Source

⚠ BREAKING CHANGES
  • Icon: migrate from @egoist/tailwindcss-icons to new @nuxt/icon (#​1789)
Features
Bug Fixes
  • Accordion: truncate buttons (5db18c0), closes #​1909
  • Alert/Notification: missing margin on description (2c55fb6), closes #​1959
  • Breadcrumb: use rotate on rtl icon (53003fc)
  • ButtonGroup/FormGroup: pass default sizes to children (#​1875) (6b6b03d)
  • Carousel: remove mix-blend-overlay on indicators (#​1714) (f74f1df)
  • FormGroup: don't check for error slot so help slot can render (#​1888) (99c52e5)
  • InputMenu/SelectMenu: invalid label with value-attribute and async search (4d5f250), closes #​1780
  • InputMenu/SelectMenu: prevent double filter with async search (e2881d3), closes #​1966
  • Link: allow ariaLabel to be picked (720c44d), closes #​1934
  • Progress: pass down attrs to <progress> to improve accessibility (#​1881) (abd13f1)
  • RadioGroup: allow boolean in modelValue prop (#​1913) (8eca5a0)
prisma/prisma (@​prisma/client)

v5.18.0

Compare Source

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights
Native support for UUIDv7

Previous to this release, the Prisma Schema function uuid() did not accept any arguments and created a UUIDv4 ID. While sufficient in many cases, UUIDv4 has a few drawbacks, namely that it is not temporally sortable.

UUIDv7 attempts to resolve this issue, making it easy to temporally sort your database rows by ID!

To support this, we’ve updated the uuid() function in Prisma Schema to accept an optional, integer argument. Right now, the only valid values are 4 and 7, with 4 being the default.

model User {
  id   String @&#8203;id @&#8203;default(uuid()) // defaults to 4
  name String
}

model User {
  id   String @&#8203;id @&#8203;default(uuid(4)) // same as above, but explicit
  name String
}

model User {
  id   String @&#8203;id @&#8203;default(uuid(7)) // will use UUIDv7 instead of UUIDv4
  name String
}
Bug squashing

We’ve squashed a number of bugs this release, special thanks to everyone who helped us! A few select highlights are:

Fixes and improvements
Prisma
Language tools (e.g. VS Code)
Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​Druue, @​key-moon, @​Jolg42, @​pranayat, @​ospfranco, @​yubrot, @​skyzh, @​haaawk for helping!

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.1.2

v5.1.1

  • fix(plugin-vue): clear script cache if recall (f5eb5ac), closes #​431

v5.1.0

vueuse/vueuse (@​vueuse/core)

v10.11.1

Compare Source

No significant changes

    View changes on GitHub
vueuse/vueuse (@​vueuse/nuxt)

v10.11.1

Compare Source

eslint/eslint (eslint)

v9.9.0

Compare Source

Features

  • 41d0206 feat: Add support for TS config files (#​18134) (Arya Emami)
  • 3a4eaf9 feat: add suggestion to require-await to remove async keyword (#​18716) (Dave)

Documentation

  • 9fe068c docs: how to author plugins with configs that extend other configs (#​18753) (Alec Gibson)
  • 48117b2 docs: add version support page in the side navbar (#​18738) (Amaresh S M)
  • fec2951 docs: add version support page to the dropdown (#​18730) (Amaresh S M)
  • 38a0661 docs: Fix typo (#​18735) (Zaina Al Habash)
  • 3c32a9e docs: Update yarn command for creating ESLint config (#​18739) (Temitope Ogunleye)
  • f9ac978 docs: Update README (GitHub Actions Bot)

Chores

v9.8.0

Compare Source

nodejs/node (node)

v20.17.0

Compare Source

v20.16.0

Compare Source

nuxt/nuxt (nuxt)

v3.12.4

Compare Source

3.12.4 is the next regularly scheduled patch release.

👉 Changelog

compare changes

🔥 Performance
  • vite: Start warmups after nitro build (#​27963)
  • vite: Avoid extra resolve call for resolveId in layers (#​27971)
  • kit,nuxt,schema,vite,webpack: Use explicit exports (#​27998)
🩹 Fixes
  • schema: Resolve public alias correctly (#​27975)
  • nuxt: Omit rendering payload prefetch when noScripts (#​27972)
  • nuxt: Add / as fallback if page can't be identified (e6109b226)
  • ui-templates: Validate templates with html-validate (#​28024)
  • schema: Don't constrain postcss plugin options (#​28045)
  • kit: Remove exports from v4 branch (5c8312e9b)
  • nuxt: Use unhead key for ad-hoc module options (#​28088)
  • nuxt: Use native vue-router composables (#​28114)
  • kit: Ensure getNuxtVersion returns string (#​28125)
  • nuxt: Always prerender at least one page with crawler (#​28131)
  • nuxt: Consider doc scroll-padding-top in scrollBehavior (#​28083)
  • nuxt: Only warn when useAsyncData returns undefined (#​28154)
  • nuxt: Revert change to getCachedData null response (d10cea11b)
  • schema: Don't use app/ as srcDir if it doesn't exist (#​28176)
  • kit: Normalise serverDir within layers using v4 compat (#​28177)
  • nuxt: Allow getCachedData to return undefined (#​28187)
  • nuxt: Use addEventListener to register cookie store listener (#​28193)
  • nuxt: Merge route meta properties with scanned meta (#​28170)
  • nuxt: Prevent duplicate set-cookie headers (#​28211)
💅 Refactors
  • schema,vite,webpack: Rework postcss module loading (#​27946)
  • nuxt: Remove _registeredComponents from ssrContext (#​27819)
  • nuxt: Use errx to handle dev log traces (#​28027)
📖 Documentation
  • Fix link (83bd4fde9)
  • Fix Cloudflare spelling (#​27989)
  • Update example to use nuxtApp.runWithContext (#​28000)
  • Remove deprecated pending variable from data fetching docs (#​28011)
  • Clarify xrsp danger (#​28053)
  • Deprecate pending and emphasis undefined (#​28113)
  • Update phrasing in route announcer (#​28108)
  • Use code groups for install commands in module guide (#​28094)
  • Capitalize text (#​28056)
  • Mention content in upgrade guide v4 folder structure (#​28090)
  • Remove a resolved issue from view transition docs (#​28091)
  • Clarify navigateTo is not for nitro routes (#​28092)
  • Warn about nested islands (#​28062)
  • Add info about layers/ directory (#​28128)
  • Codemods for migrating to Nuxt 4 (#​28072)
✅ Tests
  • Add typeCheck test in minimal build (#​28166)
🤖 CI
  • Run prepare step before linting docs (f8fbefb42)
  • Run prepare step before linting docs (d629b82b3)
❤️ Contributors
resendlabs/resend-node (resend)

v3.5.0

Compare Source

  • fix: Remove optionality from required types #​401
  • feat: Export all interfaces for Requests and Responses #​396
vercel/turborepo (turbo)

v2.0.14

Compare Source

v2.0.13: Turborepo v2.0.13

Compare Source

What's Changed
Docs
Changelog
New Contributors

Full Changelog: https://github.com/vercel/turbo/compare/v2.0.12...v2.0.13

v2.0.12: Turborepo v2.0.12

Compare Source

What's Changed

Docs
@​turbo/repository
Changelog

New Contributors

Full Changelog: https://github.com/vercel/turbo/compare/v2.0.11...v2.0.12

v2.0.11: Turborepo v2.0.11

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: https://github.com/vercel/turbo/compare/v2.0.10...v2.0.11

v2.0.10: Turborepo v2.0.10

Compare Source

What's Changed

Examples
Changelog

New Contributors


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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[bot] avatar Aug 14 '24 02:08 renovate[bot]