chore(deps): update all non-major dependencies #1733
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:
^4.20230904.0
->^4.20230914.0
^0.2.1
->^0.2.3
^8.10.119
->^8.10.121
^11.0.1
->^11.0.2
^1.17.11
->^1.17.12
^2.6.4
->^2.6.5
^7.5.1
->^7.5.2
^0.23.1
->^0.24.1
^0.34.3
->^0.34.4
^0.1.3
->^0.1.4
^2.5.1
->^2.5.3
^0.19.2
->^0.19.3
^8.48.0
->^8.49.0
^0.1.4
->^0.1.5
^1.4.8
->^1.5.5
^3.7.0
->^3.7.3
^6.5.4
->^6.6.1
8.7.0
->8.7.6
^3.29.0
->^3.29.2
^5.23.0
->^5.25.0
^0.34.3
->^0.34.4
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20230914.0
Compare Source
nuxt-modules/plausible (@nuxtjs/plausible)
v0.2.3
Compare Source
No significant changes
View changes on GitHub
vercel/nft (@vercel/nft)
v0.24.1
Compare Source
Bug Fixes
v0.24.0
Compare Source
Features
vitest-dev/vitest (@vitest/coverage-v8)
v0.34.4
Compare Source
🐞 Bug Fixes
View changes on GitHub
unjs/citty (citty)
v0.1.4
Compare Source
compare changes
🚀 Enhancements
createMain
utility (#65)--version
(#67)🩹 Fixes
run
(#58)🏡 Chore
❤️ Contributors
vercel/edge-runtime (edge-runtime)
v2.5.3
Compare Source
Patch Changes
v2.5.2
Compare Source
Patch Changes
Simplify
set-cookie
handling (#586)Updated dependencies []:
evanw/esbuild (esbuild)
v0.19.3
Compare Source
Fix
list-style-type
with thelocal-css
loader (#3325)The
local-css
loader incorrectly treated all identifiers provided tolist-style-type
as a custom local identifier. That included identifiers such asnone
which have special meaning in CSS, and which should not be treated as custom local identifiers. This release fixes this bug:Note that this bug only affected code using the
local-css
loader. It did not affect code using thecss
loader.Avoid inserting temporary variables before
use strict
(#3322)This release fixes a bug where esbuild could incorrectly insert automatically-generated temporary variables before
use strict
directives:Adjust TypeScript
enum
output to better approximatetsc
(#3329)TypeScript enum values can be either number literals or string literals. Numbers create a bidirectional mapping between the name and the value but strings only create a unidirectional mapping from the name to the value. When the enum value is neither a number literal nor a string literal, TypeScript and esbuild both default to treating it as a number:
However, TypeScript does constant folding slightly differently than esbuild. For example, it may consider template literals to be string literals in some cases:
The template literal initializer for
PRESENT
is treated as a string while the template literal initializer forMISSING
is treated as a number. Previously esbuild treated both of these cases as a number but starting with this release, esbuild will now treat both of these cases as a string. This doesn't exactly match the behavior oftsc
but in the case where the behavior divergestsc
reports a compile error, so this seems like acceptible behavior for esbuild. Note that handling these cases completely correctly would require esbuild to parse type declarations (see thedeclare
keyword), which esbuild deliberately doesn't do.Ignore case in CSS in more places (#3316)
This release makes esbuild's CSS support more case-agnostic, which better matches how browsers work. For example:
Please never actually write code like this.
Improve the error message for
null
entries inexports
(#3377)Package authors can disable package export paths with the
exports
map inpackage.json
. With this release, esbuild now has a clearer error message that points to thenull
token inpackage.json
itself instead of to the surrounding context. Here is an example of the new error message:Parse and print the
with
keyword inimport
statementsJavaScript was going to have a feature called "import assertions" that adds an
assert
keyword toimport
statements. It looked like this:The feature provided a way to assert that the imported file is of a certain type (but was not allowed to affect how the import is interpreted, even though that's how everyone expected it to behave). The feature was fully specified and then actually implemented and shipped in Chrome before the people behind the feature realized that they should allow it to affect how the import is interpreted after all. So import assertions are no longer going to be added to the language.
Instead, the current proposal is to add a feature called "import attributes" instead that adds a
with
keyword to import statements. It looks like this:This feature provides a way to affect how the import is interpreted. With this release, esbuild now has preliminary support for parsing and printing this new
with
keyword. Thewith
keyword is not yet interpreted by esbuild, however, so bundling code with it will generate a build error. All this release does is allow you to use esbuild to process code containing it (such as removing types from TypeScript code). Note that this syntax is not yet a part of JavaScript and may be removed or altered in the future if the specification changes (which it already has once, as described above). If that happens, esbuild reserves the right to remove or alter its support for this syntax too.eslint/eslint (eslint)
v8.49.0
Compare Source
Features
da09f4e
feat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas)32b2327
feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas)acb7df3
feat: add newenforce
option tolines-between-class-members
(#17462) (Nitin Kumar)Documentation
ecfb54f
docs: Update README (GitHub Actions Bot)de86b3b
docs: updateno-promise-executor-return
examples (#17529) (Nitin Kumar)032c4b1
docs: add typescript template (#17500) (James)cd7da5c
docs: Update README (GitHub Actions Bot)Chores
b7621c3
chore: remove browser test fromnpm test
(#17550) (Milos Djermanovic)cac45d0
chore: upgrade @eslint/js@8.49.0 (#17549) (Milos Djermanovic)cd39508
chore: package.json update for @eslint/js release (ESLint Jenkins)203a971
ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot])a40fa50
chore: use eslint-plugin-jsdoc's flat config (#17516) (Milos Djermanovic)926a286
test: replace Karma with Webdriver.IO (#17126) (Christian Bromann)f591d2c
chore: Upgrade config-array (#17512) (Nicholas C. Zakas)unjs/httpxy (httpxy)
v0.1.5
Compare Source
compare changes
🩹 Fixes
close
event (#8)🏡 Chore
❤️ Contributors
unjs/listhen (listhen)
v1.5.5
Compare Source
compare changes
🩹 Fixes
localhost
in internalgenerateURL
util (6c76d31)❤️ Contributors
v1.5.4
Compare Source
compare changes
🩹 Fixes
localhost
when host is empty forgetURL
(9ec7d77)📖 Documentation
🏡 Chore
❤️ Contributors
v1.5.3
Compare Source
compare changes
🩹 Fixes
hostname
option overHOST
env (0674d96)🏡 Chore
codecov/codecov-action@v3
(c911a1f)❤️ Contributors
v1.5.2
Compare Source
compare changes
🔥 Performance
💅 Refactors
std-env
for stackblitz detection (933c0c3)❤️ Contributors
v1.5.1
Compare Source
compare changes
🩹 Fixes
🏡 Chore
❤️ Contributors
v1.5.0
Compare Source
compare changes
🚀 Enhancements
SIGINT
,SIGTERM
andSIGHUP
for autoclosing (#108)🩹 Fixes
🏡 Chore
❤️ Contributors
nuxt/nuxt (nuxt)
v3.7.3
Compare Source
👉 Changelog
compare changes
🩹 Fixes
#components
(#23188)💅 Refactors
📖 Documentation
❤️ Contributors
v3.7.2
Compare Source
✅ Upgrading
As usual, our recommendation for upgrading is to run:
👉 Changelog
compare changes
🩹 Fixes
joinURL
with remote sources on NuxtIsland (#23093)data-v
attrs from server component props (#23095)useFetch
auto key (#23086)cssCodeSplit
(#23049)spaLoadingTemplate
if file exists (#23048)tsconfig.json
defaults (#23121)0
(#23127)📖 Documentation
name
param toPageMeta
interface description (#23107)experimental.componentIslands
(#23138)nuxi init
command (#23155)🏡 Chore
🤖 CI
❤️ Contributors
v3.7.1
Compare Source
✅ 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.
👉 Changelog
compare changes
🔥 Performance
🩹 Fixes
ssr: false
(#22869)priority
when registering components dirs (#22882)addLayout
(#22902)true
(#22905)write: false
for type templates (#22972)shouldExternalize
(#22991)destr
in more places overJSON.parse
(#22997)📖 Documentation
<NuxtPage>
(#22912)pageKey
(#22920)env
object for nuxt plugins (#22963)NuxtLayout
(#22989)🏡 Chore
nuxi-edge
rather thannuxi-ng
(9610cf03d)🤖 CI
GITHUB_REF_NAME
to get branch for release (d49ea58de)❤️ Contributors
drwpow/openapi-typescript (openapi-typescript)
v6.6.1
Compare Source
Patch Changes
c17669d
Thanks @drwpow! - Fix discriminator propertyName inferencev6.6.0
Compare Source
Minor Changes
7cb02ac
Thanks @duncanbeevers! - Request parameters member is optional when all parameters are optional.v6.5.5
Compare Source
Patch Changes
8e8ebfd
Thanks @drwpow! - Restore original .d.ts module-resolution behaviorpnpm/pnpm (pnpm)
v8.7.6
Compare Source
Patch Changes
prepublishOnly
scripts of git-hosted dependencies #7026.use-node-version
ornode-version
isn't passed down tocheckEngine
when using pnpm workspace, resulting in an error #6981.node_modules
#6756.Our Gold Sponsors
Our Silver Sponsors
v8.7.5
Compare Source
Patch Changes
node_modules/.pnpm
#7069.Our Gold Sponsors
This PR has been generated by Mend Renovate. View repository job log here.