-
Notifications
You must be signed in to change notification settings - Fork 57
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 #58
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 29, 2023 10:32
47b71bf
to
03cee96
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 30, 2023 21:20
03cee96
to
81874c4
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 31, 2023 13:35
81874c4
to
857ee44
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
March 31, 2023 23:04
857ee44
to
6f8fab2
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 2, 2023 16:17
6f8fab2
to
cc4b988
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 3, 2023 11:46
cc4b988
to
2a70752
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 6, 2023 17:05
2a70752
to
e484161
Compare
renovate
bot
changed the title
chore(deps): update all non-major dependencies
chore(deps): update all non-major dependencies - autoclosed
Apr 7, 2023
renovate
bot
changed the title
chore(deps): update all non-major dependencies - autoclosed
chore(deps): update all non-major dependencies
Apr 7, 2023
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 7, 2023 18:50
e484161
to
d3252b2
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 8, 2023 00:38
d3252b2
to
4f3e179
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 11, 2023 17:19
4f3e179
to
582c8d4
Compare
renovate
bot
force-pushed
the
renovate/all-minor-patch
branch
from
April 13, 2023 12:50
582c8d4
to
7efc3b0
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.9.3
->^0.9.4
^6.6.5
->^6.6.6
^8.37.0
->^8.38.0
^3.3.3
->^3.4.1
^5.0.3
->^5.0.4
Release Notes
nuxt-modules/tailwindcss
v6.6.6
Compare Source
compare changes
🩹 Fixes
🏡 Chore
9f7e991
)❤️ Contributors
eslint/eslint
v8.38.0
Compare Source
Features
a1d561d
feat: Move getDeclaredVariables and getAncestors to SourceCode (#17059) (Nicholas C. Zakas)Bug Fixes
1c1ece2
fix: do not report onRegExp(...args)
inrequire-unicode-regexp
(#17037) (Francesco Trotta)Documentation
7162d34
docs: Mention new config system is complete (#17068) (Nicholas C. Zakas)0fd6bb2
docs: Update README (GitHub Actions Bot)c83531c
docs: Update/remove external links, eg. point toeslint-community
(#17061) (Pelle Wessman)a3aa6f5
docs: Clarifyno-div-regex
rule docs (#17051) (Francesco Trotta)b0f11cf
docs: Update README (GitHub Actions Bot)da8d52a
docs: Update the second object instance for the "no-new" rule (#17020) (Ahmadou Waly NDIAYE)518130a
docs: switch language based on current path (#16687) (Percy Ma)24206c4
docs: Update README (GitHub Actions Bot)Chores
59ed060
chore: upgrade @eslint/js@8.38.0 (#17069) (Milos Djermanovic)88c0898
chore: package.json update for @eslint/js release (ESLint Jenkins)cf682d2
refactor: simplify new-parens rule schema (#17060) (MHO)0dde022
ci: bump actions/add-to-project from 0.4.1 to 0.5.0 (#17055) (dependabot[bot])nuxt/nuxt
v3.4.1
Compare Source
👉 Changelog
compare changes
🩹 Fixes
ssrContext
in spa renderer (#20216)<NuxtClientFallback>
(#20237)vue-router
normalises url (#20247)📖 Documentation
transform
/pick
(#20186)✅ Tests
❤️ Contributors
v3.4.0
Compare Source
👀 Highlights
🪄 View Transitions API Support
CleanShot.2023-04-11.at.18.00.47.mp4
You can see a demo on https://nuxt-view-transitions.surge.sh
You may have noticed that Chromium-based browsers now ship a new web platform API: the View Transitions API. This is an exciting new ability for native browser transitions which (among other things) have the ability to transition between unrelated elements on different pages.
Nuxt now ships with an experimental implementation, which will be under active development during the v3.4 release cycle. See the known issues in the linked PR.
✨ Payload Enhancements
We've merged a significant change to how Nuxt handles payloads (under an experimental flag). Payloads are used to send data from the server to the client when doing server-side rendering and avoid double data-fetching during the hydration phase.
With this new option enabled, this now means that various rich JS types are supported out-of-the-box: regular expressions, dates, Map and Set and BigInt as well as NuxtError - and Vue-specific objects like
ref
,reactive
,shallowRef
andshallowReactive
.You can find an example in our test suite.
This is all possible due to Rich-Harris/devalue#58. For a long time, Nuxt has been using our own fork of devalue owing to issues serialising Errors and other non-POJO objects, but we now have transitioned back to the original.
You can even register your own custom types with a new object-syntax Nuxt plugin:
You can read more about how this works here.
Note: this only affects payloads of the Nuxt app, that is, data stored within
useState
, returned fromuseAsyncData
or manually injected vianuxtApp.payload
. It does not affect data fetched from Nitro server routes via$fetch
oruseFetch
although this is one area I am keen to explore further.Preliminary testing shows a significant speed-up: 25% faster in total server response time for a very minimal app with a large JSON payload, but I'd urge you to run your own tests and share the results with us.
As mentioned, we're merging this behind a flag so we can test this broadly and gather feedback on the new approach. The most significant potential change is that the payload is now no longer available on
window.__NUXT__
immediately. Instead, we now need to initialise the Nuxt app to parse the payload so any code that accesses__NUXT__
will need to be run in a plugin or later in the Nuxt app lifecycle. Please feel free to raise an issue if you foresee or encounter issues in your projects.🎁 Object-syntax Nuxt plugins
We now support object-syntax Nuxt plugins for better control over plugin order and easier registration of hooks.
In future we plan to enable build optimizations based on the metadata you pass in your Nuxt plugins.
🛠️ Easier Devtools Configuration
It's even easier to enable Nuxt DevTools in your project: just set
devtools: true
in yournuxt.config
file to enable devtools.If it's not already installed, Nuxt will prompt to install it locally. This means you no longer need to have Nuxt DevTools enabled globally.
Note: the DevTools is still experimental and under active development, so do be prepared for occasional unexpected behaviour, and please report issues directly to https://github.com/nuxt/devtools 🙏
📚 Layers Improvements
We now support transforming
~
/~~
/@
/@@​
aliases within layers, meaning you now no longer need to use relative paths when importing within layers.This should mean it is much easier to use a 'normal' Nuxt project as a layer without needing to specially write it as one.
🧸 Better Context Transforms
We now transform certain keys of
definePageMeta
anddefineNuxtComponent
which means you should have fewer issues with a missing Nuxt instance. This includes support accessing the Nuxt instance after anawait
withinasyncData
andsetup
functions for those still using the Options API. And you no longer need to wrapmiddleware
andvalidate
withdefineNuxtRouteMiddleware
when using async functions.♻️ Ecosystem Updates
As usual, this release will pull in upstream improvements, including the new Consola v3 and Nitropack v2.3.3 (a new minor is expected shortly).
🚨 'Breaking fixes'
We've also taken the opportunity to do some cleanup in this minor release.
x-nuxt-no-ssr
header (undocumented) to force SPA rendering. We've now disabled this behaviour by default but you can get it back by settingexperimental.respectNoSSRHeader
to true. Alternatively, you can setevent.context.nuxt.noSSR
on the server to force SPA rendering.#head
alias and also disabled the polyfill for@vueuse/head
behaviour by default. (It can still be enabled withexperimental.polyfillVueUseHead
.)experimental.viteNode
option. It can be configured instead withvite.devBundler
.public
key. This was an undocument compatibility measure with Nuxt 2 and we plan to remove it entirely in v3.5.✅ Upgrading
As usual, our recommendation for upgrading is to run:
This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.
With Nuxt v3.4.0, we now advise that you explicitly install the
@types/node
version that matches your Node version.👉 Changelog
compare changes
🚀 Enhancements
useRoute
is used in middleware (#20050)watch
withuseFetch
(#19823)~
/~~
/@
/@@​
aliases within layers (#19986)dir.pages
in page placeholder (#20079)devtools
when it's enabled (#20126)experimentalNoScripts
route rule (#19805)🔥 Performance
@vueuse/head
polyfill by default (#20131)🩹 Fixes
x-nuxt-no-ssr
header by default (#20024)$config
object (#20081)useFetch
(#20052)@types/node
as a peerDependency (#20025)any
(#20105).client
component placeholders (#20093)undefined
type foruseCookie
return value (4f0b3c722)imports.autoImport
(#20180)ignorePrefix
to be changed (#20202)💅 Refactors
experimental
options (#20112)#head
alias (#20111)📖 Documentation
imports
configuration (#20073)headers
option foruseFetch
(#20148)@pinia/nuxt
module name (#20199)🏡 Chore
overrides
(4a6f85277)overrides
(a15a9b66f)JITI_ESM_RESOLVE
(#20172)✅ Tests
🎨 Styles
sort-imports
eslint rule (#20133)🤖 CI
head_ref
for dependency deduping (ae5df72c5)❤️ Contributors
Microsoft/TypeScript
v5.0.4
: TypeScript 5.0.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
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.
This PR has been generated by Mend Renovate. View repository job log here.