Skip to content

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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 24, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) ^2.26.1 -> ^2.29.4 age adoption passing confidence
@emotion/css (source) ^11.10.6 -> ^11.13.5 age adoption passing confidence
@emotion/server (source) ^11.10.0 -> ^11.11.0 age adoption passing confidence
@nuxt/kit (source) ^3.4.2 -> ^3.17.5 age adoption passing confidence
@nuxt/module-builder ^0.3.0 -> ^0.8.4 age adoption passing confidence
@nuxt/schema (source) ^3.4.2 -> ^3.17.5 age adoption passing confidence
@nuxt/test-utils ^3.4.2 -> ^3.19.1 age adoption passing confidence
@nuxtjs/eslint-config-typescript ^12.0.0 -> ^12.1.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^5.59.0 -> ^5.62.0 age adoption passing confidence
eslint (source) ^8.39.0 -> ^8.57.1 age adoption passing confidence
eslint-plugin-promise ^6.1.1 -> ^6.6.0 age adoption passing confidence
nuxt (source) ^3.4.2 -> ^3.17.5 age adoption passing confidence
vitest (source) ^0.30.1 -> ^0.34.6 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.29.4

Compare Source

Patch Changes

v2.29.3

Compare Source

Patch Changes

v2.29.2

Compare Source

Patch Changes

v2.29.1

Compare Source

Patch Changes

v2.29.0

Compare Source

Minor Changes

v2.28.1

Compare Source

Patch Changes

v2.28.0

Compare Source

Minor Changes
Patch Changes

v2.27.12

Compare Source

Patch Changes

v2.27.11

Compare Source

Patch Changes

v2.27.10

Compare Source

Patch Changes

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

Patch Changes

v2.27.7

Compare Source

Patch Changes

v2.27.6

Compare Source

Patch Changes

v2.27.5

Compare Source

Patch Changes

v2.27.4

Compare Source

Patch Changes

v2.27.3

Compare Source

Patch Changes
  • #​1357 18c966a Thanks @​Andarist! - Fixed an issue with changeset status executed without since argument. It should now correctly use the configured base branch as the default value.

v2.27.2

Compare Source

Patch Changes

v2.27.1

Compare Source

Patch Changes
  • #​1267 86cfff1 Thanks @​Andarist! - Make ./bin.js available through package.json#exports to fix compatibility with changesets/action.

v2.27.0

Compare Source

Minor Changes
Patch Changes

v2.26.2

Compare Source

Patch Changes
emotion-js/emotion (@​emotion/css)

v11.13.5

Compare Source

Patch Changes

v11.13.4

Compare Source

Patch Changes

v11.13.0

Compare Source

Minor Changes
  • #​3198 d8ff8a5 Thanks @​Andarist! - Migrated away from relying on process.env.NODE_ENV checks to differentiate between production and development builds.

    Development builds (and other environment-specific builds) can be used by using proper conditions (see here). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.

    Default files should continue to work in all environments.

  • #​3215 a9f6912 Thanks @​Andarist! - Added edge-light and workerd conditions to package.json manifest to better serve users using Vercel Edge and Cloudflare Workers.

Patch Changes

v11.12.0

Compare Source

Patch Changes

v11.11.2

Compare Source

Patch Changes
  • #​3057 8f665262 Thanks @​emmatown! - Fix @emotion/css/create-instance types in TypeScript module resolution modes that support the exports field

v11.11.0

Compare Source

Patch Changes

v11.10.8

Compare Source

Patch Changes
nuxt/nuxt (@​nuxt/kit)

v3.17.5

Compare Source

3.17.5 is a regularly scheduled patch release.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Replace remaining instance of globby (#​31688)
🩹 Fixes
  • nuxt: Export useScriptRybbitAnalytics from script stubs (d275ae1a0)
  • nuxt: Remove unneeded pattern from regexp (2954c092c)
  • nuxt: Ensure appConfig sources are not duplicated (#​32216)
  • nuxt: Wrap slot with h() in ClientOnly (#​30664)
  • kit: Ensure template filename uses safe patterns (4372b24dd)
  • nuxt: Access asyncData state from nuxt app instance (#​32232)
  • nuxt: Make patterns relative to srcDir in buildCache (#​32260)
  • nuxt: Return non-existent route component in RouteProvider (#​32266)
  • nuxt: Use single asyncData watcher (#​32247)
  • vite: Use arrow functions in dynamic imports (#​32285)
  • webpack: Use plugin for rollup-compatible dynamic imports (#​32281)
📖 Documentation
  • Update addRouteMiddleware path in example (#​32171)
  • Narrow link to just middleware (#​32203)
  • Use optional chaining in error example (#​32214)
  • Give example of using --env-file (29f6392cd)
  • Recommend nuxt command consistently (#​32237)
  • Fix typos (#​30413)
  • Add props to special metadata (#​29708)
  • Fix wrong alert with warning in /guide/pages (#​32270)
  • Update upgrade guide + roadmap (0040ee5e7)
📦 Build
🏡 Chore
✅ Tests
  • Add regression test for useAsyncData + transition (29f7c8cb4)
  • Ensure builder tests run sequentially (defa32829)
❤️ Contributors

v3.17.4

Compare Source

3.17.4 is a regularly-scheduled patch release.

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxi@latest upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Use Set for circular dep plugin (#​32110)
  • Refactor Array.includes checks to use Sets (#​32133)
  • nuxt: Use shallowRef for primitive values (#​32152)
  • nuxt: Skip route rules processing for empty child array (#​32166)
  • nuxt: Use Intl.Collator instead of localeCompare (#​32167)
🩹 Fixes
  • nuxt: Do not await lazy asyncData inside <ClientOnly> (#​32101)
  • nuxt: Respect cachedData with multiple asyncData calls (#​32099)
  • nuxt: Clear async data after a tick (#​32096)
  • nuxt: Support reactive keys in useLazyAsyncData (#​32092)
  • rspack: Use ts-checker-rspack-plugin (#​32115)
  • nuxt: Clear previous head in island-renderer (#​32100)
  • nuxt: Handle virtual files prefixed with / (#​32129)
  • schema: Remove nitro options from DeepPartial (#​31990)
  • nuxt: Ensure legacy async data remains reactive (#​32134)
  • nuxt: Pass attrs down to single child of <ClientOnly> (#​32131)
  • nuxt: Fix merge conflicts (7044450d4)
  • nuxt: Clone vnode when passing attrs down to client-only (b3acf0c78)
  • vite: Do not replace global with globalThis (#​32130)
  • nuxt: Suppress client-side errors by crawlers (#​32137)
  • nuxt: Use fresh route when <NuxtLayout> first renders (#​24673)
  • nuxt: Add additional logging when skipping error page for bot (68c270083)
  • nuxt: Add watch paths outside srcDir to parcel strategy (#​32139)
📖 Documentation
  • Use emphasis instead of quotes (#​32078)
  • Update useNuxtData default return to undefined (#​32054)
  • Capitalise headings (#​32095)
  • Prefix imports.dirs with alias (0dbf314d9)
  • Mention node v20 is minimum requirement for nuxt setup (#​32148)
  • Use more descriptive link text (d0b1b9d35)
🏡 Chore
✅ Tests

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.

👻 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 changed the title chore(deps): update devdependency @typescript-eslint/eslint-plugin to ^5.59.1 chore(deps): update all non-major dependencies Apr 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 5523f1a to 72e1cf0 Compare May 3, 2023 21:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f2b36bc to 3c37859 Compare May 8, 2023 21:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 49584a3 to c2ce777 Compare May 21, 2023 17:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 84f23e1 to 5a0b4c7 Compare May 29, 2023 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d2918c1 to c66334c Compare June 6, 2023 02:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bceba55 to 789d2ff Compare June 12, 2023 18:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c5f53f1 to 9e613d2 Compare June 19, 2023 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6a94615 to b875928 Compare December 25, 2024 01:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0094aac to cd6859e Compare January 12, 2025 00:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b32e7e5 to c5f8419 Compare January 15, 2025 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ffe5591 to 94e3be3 Compare January 29, 2025 10:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a48a2eb to 0b14aa9 Compare February 21, 2025 13:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 914557e to 38890ff Compare March 8, 2025 21:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 38890ff to 4d6f8c1 Compare March 19, 2025 17:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4d6f8c1 to 57a6e60 Compare April 1, 2025 15:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d1da3bb to 2355874 Compare April 16, 2025 20:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 8157346 to 58dde74 Compare May 3, 2025 17:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 58dde74 to e0c1c85 Compare May 5, 2025 09:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2254662 to 20b5671 Compare May 17, 2025 16:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 574b311 to ff4e656 Compare May 25, 2025 20:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff4e656 to a1ec20b Compare June 3, 2025 23:52
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