Skip to content

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

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

Merged
merged 1 commit into from
Feb 11, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/content ^2.4.0 -> ^2.4.3 age adoption passing confidence
@nuxt/devtools ^0.1.0 -> ^0.1.2 age adoption passing confidence
@nuxt/kit ^3.1.1 -> ^3.2.0 age adoption passing confidence
@nuxt/test-utils ^3.1.1 -> ^3.2.0 age adoption passing confidence
nuxt ^3.1.1 -> ^3.2.0 age adoption passing confidence
nuxt 2.15.8 -> 2.16.0 age adoption passing confidence
nuxt ^3.1.2 -> ^3.2.0 age adoption passing confidence
postcss-custom-properties (source) ^13.1.0 -> ^13.1.3 age adoption passing confidence
postcss-nesting (source) ^11.0.0 -> ^11.1.0 age adoption passing confidence
tailwindcss (source) ^3.2.4 -> ^3.2.6 age adoption passing confidence
vitest ^0.28.2 -> ^0.28.4 age adoption passing confidence

Release Notes

nuxt/content

v2.4.3

Compare Source

compare changes

🚀 Enhancements
  • pnpm: Switch to pnpm (local / ci) (#​1868)
🩹 Fixes
  • query: Decode unicode params (#​1871)
🏡 Chore
❤️ Contributors

v2.4.2

Compare Source

compare changes

🩹 Fixes
  • useContentHead: Disable host detection (f6a429dc)
📖 Documentation
🏡 Chore
❤️ Contributors

v2.4.1

Compare Source

compare changes

🩹 Fixes
  • useContentHead: undefined url (b157500b)
📖 Documentation
🏡 Chore
❤️ Contributors
nuxt/devtools

v0.1.2

Compare Source

v0.1.1

Compare Source

nuxt/nuxt

v3.2.0

Compare Source

3.2.0 is the first minor release since we've started our new release schedule. We've brought it forward by a couple of weeks to include some goodies we want you to be able to play with soon.

👀 Highlights
  • ⚡️ Nuxt DevTools

    You can opt-in to Nuxt DevTools per-project by going to the project root and running:

    npx nuxi@latest devtools enable

    Restart your Nuxt server and open your app in browser. Click the Nuxt icon on the bottom (or press Alt+D) to toggle the DevTools.

    More information in the docs!

  • Better DX for overriding runtimeConfig, including inline type helpers

  • 🪄 Automatically inferred return type for useFetch and $fetch based on method.

    It'll be a type error to use the wrong method when hitting an endpoint.

    Plus, if you have multiple methods served by a single endpoint (like ~/server/api/test.get.ts and ~/server/api/test.post.ts then the response type will match the kind of response you make.

  • 🍪 useFetch is now integrated with event.$fetch, meaning cookies and context are now passed to api requests automagically within internal requests.

  • 🔥 We now treeshake client-only components out of the server build more effectively using the experimental treeshakeClientOnly feature

    This is turned on by default but if you experience any issues, you can turn this off via:

    export default defineNuxtConfig({
      experimental: {
        treeshakeClientOnly: false
      }
    })
  • 🛠️ New addRouteMiddleware kit utility for module authors

  • 💪 Nitropack v2.2 has been released

    Lots of features, including runtime proxy support using route rules, nested fetch calls, binary and raw storage operations, exposed event.context.cf (cloudflare) and built-in session support.

    For full details see release notes

Changelog

compare changes

🚀 Enhancements
  • kit: Add addRouteMiddleware method (#​18553)
  • cli: Warn when prerendering routes with ssr: false (#​18783)
  • schema: Add type hints for runtime config (#​18652)
  • nuxt: Support type auto-import (#​18859)
  • nuxt: Infer useFetch return based on the method (#​18526)
  • cli: Add initial support for enabling/disabling devtools (#​18864)
  • nuxt: Upgrade to nitropack 2.2 (#​18889)
🔥 Performance
  • vite: Use stub entry in vite server build when ssr: false (#​18782)
🩹 Fixes
  • nuxt: Treeshake client-only components with placeholders (#​8789)
  • webpack: Client-side typechecking when ssr: false (#​18828)
  • vite: Exclude styles, not all assets (#​18752)
  • nuxt: Defer adding route path to preloaded record (#​18862)
  • nuxt: Don't exclude pnpm layers from nitro esbuild/imports (#​9952)
  • nuxt: Use parser to treeshake <ClientOnly> (#​8713)
  • Reorder the types field in package.json (#​18880)
💅 Refactors
  • nuxt: Within nuxt app, import directly from source file (#​18902)
📖 Documentation
  • Remove extra word (#​18750)
  • example: Fix app config link (#​18760)
  • Add useError composable (#​8912)
  • Clarify augmenting input/output app config (#​8953)
  • Add explanation of composable lifecycle (#​8116)
  • typescript: Type-checking guide (#​18768)
  • schema: Add NuxtHooks interface documentation (#​18756)
  • Resolve preloadRouteComponents page heading error (#​18804)
  • Update to nuxt 2.16.0 in bridge installation (#​18836)
  • Add link to vue hydration mismatch docs (#​18842)
  • Update auto-imports for the server part (#​18848)
  • Warn about slots in server components (#​18854)
  • Add explanation with augmented meta for new routes (#​18901)
✅ Tests
  • Decrease vite logging during tests (5426e5609)
❤️ Contributors

v3.1.2

Compare Source

3.1.2 is a patch release with bug fixes (particularly focusing on performance and DX).

Changelog

compare changes

🔥 Performance
  • nuxt: Simplify generated variable names (#​18629)
  • vite: Use compiled regexp for test (#​18646)
  • nuxt: Cache result of importing styles module (#​18734)
🩹 Fixes
  • nuxt: Provide fallback values for undefined runtime config (#​18586)
  • kit: Don't use default export of defu (#​18589)
  • Use named export from defu in all places (#​18624)
  • nuxt: Dedupe vue-router (#​18626)
  • test-utils: Prevent orphaned processes and use baseURL when loading (#​18623)
  • vite: Ensure __publicAssetsURL set before loading assets (#​18642)
  • kit: Avoid adding already installed modules to internal _installedModules (#​18647)
  • nuxt: Make onNuxtReady safe to run on server-side (#​18706)
  • vite, webpack: Omit magic keys when import of same name is detected (#​18733)
📖 Documentation
  • Update vue-gtag plugin example (#​18528)
  • Mention virtual file system (#​18546)
  • Mention head composable as alternative to useHead (#​18552)
  • Use defineEventHandler() to avoid warnings (#​18557)
  • Remove unnecessary JSON.stringify() (#​18590)
  • Updated unreachable docus url in documentation (#​18618)
  • Add link to pages documentation to routing (#​18602)
  • Add comment about needing to install @types/node manually (6b2bc680b)
  • Add note about directory import (d2c00dc46)
  • Fix array syntax (f14f3815f)
  • Fix buttons width on getting started (#​18643)
  • Add .env to directory structure and improve config docs (#​18594)
  • Mention options api equivalent for head() (#​18650)
  • Fix broken link to esm section (#​18716)
  • Improve routing validate example (#​18728)
🏡 Chore
✅ Tests
  • nuxt: Exclude new internal vue assertNumber helper (aa646f065)
🤖 CI
  • Publish nightly nuxt-edge for nuxt v2 (dd0e2643c)
  • Fix ref for 2.x branch (21badd9f2)
  • Allow manually dispatching nightly nuxt2 build (09114125c)
❤️ Contributors
csstools/postcss-plugins (postcss-custom-properties)

v13.1.3

Compare Source

  • Fixed: exception on missing variables.

v13.1.2

Compare Source

  • Do not apply fallback values when these contain unresolvable custom properties.

v13.1.1

Compare Source

  • Improve types declaration in package.json
csstools/postcss-plugins (postcss-nesting)

v11.1.0

Compare Source

  • Implement latest specification
    • relative selector syntax
    • @nest is obsolete, all selectors can be written without it (sometimes you will need :is())
    • allow declarations after nested rules.

⚠️ We advice everyone to migrate their codebase now to nested CSS without @nest.
Future versions of this plugin will warn and then error on @nest.

v11.0.1

Compare Source

  • Improve types declaration in package.json
tailwindlabs/tailwindcss

v3.2.6

Compare Source

Fixed

v3.2.5

Compare Source

Added
  • Add standalone CLI build for 64-bit Windows on ARM (node16-win-arm64) (#​10001)
Fixed
  • Cleanup unused variantOrder (#​9829)
  • Fix foo-[abc]/[def] not being handled correctly (#​9866)
  • Add container queries plugin to standalone CLI (#​9865)
  • Support renaming of output files by PostCSS plugin. (#​9944)
  • Improve return value of resolveConfig, unwrap ResolvableTo (#​9972)
  • Clip unbalanced brackets in arbitrary values (#​9973)
  • Don’t reorder webkit scrollbar pseudo elements (#​9991)
  • Deterministic sorting of arbitrary variants (#​10016)
  • Add data key to theme types (#​10023)
  • Prevent invalid arbitrary variant selectors from failing the build (#​10059)
  • Properly handle subtraction followed by a variable (#​10074)
  • Fix missing string[] in the theme.dropShadow types (#​10072)
  • Update list of length units (#​10100)
  • Fix not matching arbitrary properties when closely followed by square brackets (#​10212)
  • Allow direct nesting in root or @layer nodes (#​10229)
  • Don't prefix classes in arbitrary variants (#​10214)
  • Fix perf regression when checking for changed content (#​10234)
  • Fix missing blocklist member in the Config type (#​10239)
  • Escape group names in selectors (#​10276)
  • Consider earlier variants before sorting functions (#​10288)
  • Allow variants with slashes (#​10336)
  • Ensure generated CSS is always sorted in the same order for a given set of templates (#​10382)
  • Handle variants when the same class appears multiple times in a selector (#​10397)
  • Handle group/peer variants with quoted strings (#​10400)
  • Parse alpha value from rgba/hsla colors when using variables (#​10429)
  • Sort by layer inside variants layer (#​10505)
  • Add --watch=always option to prevent exit when stdin closes (#​9966)
Changed
  • Alphabetize theme keys in default config (#​9953)
  • Update esbuild to v17 (#​10368)
  • Include outline-color in transition and transition-colors utilities (#​10385)
vitest-dev/vitest

v0.28.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.28.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update devdependency @nuxt/content to ^2.4.1 chore(deps): update all non-major dependencies Jan 27, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from e5a4d9a to ae6d557 Compare February 2, 2023 18:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from f0f506a to febeea3 Compare February 9, 2023 14:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from febeea3 to b3de3f0 Compare February 11, 2023 12:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b3de3f0 to 8df1813 Compare February 11, 2023 12:23
@atinux atinux merged commit 1c719d6 into main Feb 11, 2023
@atinux atinux deleted the renovate/all-minor-patch branch February 11, 2023 12:25
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.

1 participant