chore(deps): update all non-major dependencies #615
Merged
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:
^1.8.1
->^1.9.9
^2.4.3
->^2.5.2
^0.1.4
->^0.2.5
^3.2.0
->^3.2.3
^3.2.0
->^3.2.3
^0.7.2
->^0.8.5
^10.4.13
->^10.4.14
^21.1.0
->^21.1.1
^3.2.0
->^3.2.3
2.16.0
->2.16.2
^13.1.3
->^13.1.4
^1.1.0
->^1.1.1
^0.28.5
->^0.29.2
Release Notes
nuxt/content
v2.5.2
Compare Source
compare changes
🩹 Fixes
❤️ Contributors
v2.5.1
Compare Source
compare changes
🩹 Fixes
ignoreSources
is an array (45b44a69)🏡 Chore
❤️ Contributors
v2.5.0
Compare Source
compare changes
🚀 Enhancements
component-resolver
transformer (#1907)🩹 Fixes
id
is missing (#1893)📖 Documentation
❤️ Contributors
nuxt/devtools
v0.2.5
Compare Source
Bug Fixes
runtime
categoray in components (14d3857)Features
NCodeBlock
andNMarkdown
components (f9a4f4b)v0.2.4
Compare Source
Bug Fixes
Features
NSectionBlock
andNIconTitle
, introduceNSelect
(#102) (cebe031)v0.2.3
Compare Source
Bug Fixes
fs.allow
(0c07ee0)v0.2.2
Compare Source
Bug Fixes
v0.2.0
Compare Source
Bug Fixes
NTextInput
fill width (de5c772)NuxtLink
(202b1c7)Features
@nuxt/ui
(b5b4baa)@nuxt/devtools-ui-kit
(e0ac298)0.1.6 (2023-02-22)
Bug Fixes
Features
v0.1.6
Compare Source
Bug Fixes
Features
v0.1.5
Compare Source
nuxt/nuxt
v3.2.3
Compare Source
👉 Changelog
compare changes
🔥 Performance
🩹 Fixes
distDir
is unlinked (#19131)<NuxtLink>
(#19144)rel
attribute on internal link (#19309)noExternal
option (#19256)📖 Documentation
🏡 Chore
🤖 CI
❤️ Contributors
v3.2.2
Compare Source
👀 Highlights
As a patch release, there are mostly bug fixes and performance improvements in the changelog. (Nevertheless, it's always worth reading through!) But one point of note is an experimental reload strategy when chunk errors are encountered. We're hoping to finalise the API and land it in v3.3 (our next feature release) with https://github.com/nuxt/nuxt/pull/19086, but you can test out an experimental version with the following config:
With this strategy, your app will hard reload on route changes if there's a chunk error. More info at https://github.com/nuxt/nuxt/pull/19038.
👉 Changelog
compare changes
🚀 Enhancements
app:chunkError
hook and reload strategy (#19038)🔥 Performance
#components
(#19008)🩹 Fixes
nuxt/schema
subpath for augmentation (#18922)statusCode
is a number (#19001)nuxt/app
by default (#19009)nuxt/app
from optimised deps (9e789c76c)isCustomElement
config for jsx transform (#19053)devServer
options from nuxt config (#19055)//
in path when constructing payload url (#19085)💅 Refactors
📖 Documentation
nuxi devtools
command (#18888)static
property (80f73d39c)sendRedirect
usage (#19070)📦 Build
nuxt/schema
to externals (e3e768873)nuxt
to nuxt externals (b1b908b1e)🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
v3.2.1
Compare Source
nuxtlabs/studio.nuxt.com
v0.8.5
Compare Source
v0.8.4
Compare Source
v0.8.3
Compare Source
v0.8.2
Compare Source
v0.8.1
Compare Source
v0.8.0
Compare Source
v0.7.8
Compare Source
v0.7.7
Compare Source
v0.7.6
Compare Source
v0.7.5
Compare Source
v0.7.4
Compare Source
v0.7.3
Compare Source
postcss/autoprefixer
v10.4.14
Compare Source
jsdom/jsdom
v21.1.1
Compare Source
jsdom.reconfigure()
to also adjust the URL as seen by the history API, so that e.g.history.replaceState(null, "")
would not mess up the URL. (jdufresne)location.hash = ""
to leave any#
in location.href.cssom
withrweb-cssom
, since the latter is maintained. (seanparmelee)csstools/postcss-plugins
v13.1.4
Compare Source
unjs/ufo
v1.1.1
Compare Source
compare changes
🩹 Fixes
✅ Tests
❤️ Contributors
vitest-dev/vitest
v0.29.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.29.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.29.0
Compare Source
This release makes some significant changes to how tests are running. If you were using
--no-threads
before, you might consider enabling--single-thread
instead (because your tests are now running inchild_process
instead of a worker thread) or try our new performance optimization feature (discussed later). If you were relying on API that was not available inside a worker (likeprocess.chdir()
, you can now use this option.One of the potential breaking bug fixes is that environments do not share the same global scope anymore if you run them with
--no-isolate
,--no-threads
or--single-thread
- you might need to update your setup files if you were relying on a global variable before.If you had performance issues on large code bases before, try the new
deps.experimentalOptimizer
option instead of disabling threads. Feedback is welcome!One of the breaking changes includes adding a link to snapshots inside snapshot files, meaning you will need to update all your snapshots.
🚨 Breaking Changes
NODE_V8_COVERAGE
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/2786 (095c6)node
andjsdom
(and other environments) now don't share the same global scope, if you run them with--no-isolate
or--no-threads
flag. Vitest doesn't provide a way to restore the previous behavior as it is considered a bug.chid_process
might run longer due to the communication overhead. If you want to restore the previous behavior, use--single-thread
.🚀 Features
🐞 Bug Fixes
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.
This PR has been generated by Mend Renovate. View repository job log here.