chore(deps): update all non-major dependencies #403
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.2.21
->^1.2.23
^1.2.18
->^1.2.20
^3.15.1
->^3.15.2
^6.1.0
->^6.2.1
4.0.0-beta.8
->4.0.0-beta.9
^22.10.5
->^22.10.7
^12.3.0
->^12.4.0
^12.3.0
->^12.4.0
^12.3.0
->^12.4.0
^12.3.0
->^12.4.0
^15.3.0
->^15.4.0
22.12.0-alpine
->22.13.0-alpine
22.12.0-alpine
->22.13.0-alpine
^3.15.1
->^3.15.2
9.15.3
->9.15.4
>=9.15.3
->>=9.15.4
^6.1.0
->^6.2.1
4.0.0-beta.8
->4.0.0-beta.9
^5.7.2
->^5.7.3
^7.6.8
->^7.7.0
Release Notes
nuxt/nuxt (@nuxt/kit)
v3.15.2
Compare Source
👀 Highlights
🔥 Startup performance improvements
It is worth noting that this release includes some pretty significant performance improvements which you should notice particularly in the startup time. In my tests in the nuxt monorepo,
There's more improvement to do here but hopefully these are good numbers!
📦 CLI refactor
To improve performance within Nuxt projects, we've published a new
@nuxt/cli
distribution ofnuxi
, which is used under-the-hood innuxt
(see issue). This should behave exactly the same and nothing needs to be updated in your projects (for example, you will continue to use thenuxi
ornuxt
commands). The only significant change is that it no longer inlines dependencies. Feedback is welcome 🙏✅ 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
@nuxt/cli
dependency (#30526)🩹 Fixes
definePageMeta
when extracting page metadata (#30490)#build
to the end oftsConfig
paths (#30520)fullPath
instead of empty string in router hmr (#30500)@nuxt/cli
(618bbc6da)page:loading:end
only once with nested pages (#29009)#app-manifest
(#30587)shouldPrefetch
on the server side (#30591)💅 Refactors
📖 Documentation
--dev
option for the module command (#30477)url
inuseFetch
(#30531)@nuxt/module-builder
source (509cf4a5c)status
detail and enhancegetCachedData
readability (#30536)useNuxtData
(#30570)useAsyncData
side effects (#30479)🏡 Chore
nuxt/app
(1adf3e31f)🤖 CI
❤️ Contributors
prisma/prisma (@prisma/client)
v6.2.1
Compare Source
Today we are releasing the 6.2.1 patch release to address an issue with some of the
omitApi
preview feature checks having been accidentally omitted when making the feature GA. Now it is fully functional without the preview feature flag.Changes
v6.2.0
Compare Source
Today we're releasing Prisma ORM version 6.2.0 🎉
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
We have a number of new features in this version, including support for
json
andenum
fields in SQLite, a newupdateManyAndReturn
function, support for ULID values, as well as the promotion of theomit
feature from Preview to Generally Availability.Highlights
Excluding fields via
omit
is now production-readyOur number one requested feature is out of Preview and Generally Available. In 6.2.0, you no longer need to add
omitApi
to your list of Preview features:generator client { provider = "prisma-client-js" - previewFeatures = ["omitApi"] }
As a refresher:
omit
allows you to exclude certain fields from being returned in the results of your Prisma Client queries.You can either do this locally, on a per-query level:
Or globally, to ensure a field is excluded from all queries of a certain model:
For more information on
omit
, be sure to check our documentation.json
andenum
fields in SQLitePrevious to this version, you could not define
json
andenum
fields in your Prisma schema when using SQLite. The respective GitHub issues have been among the most popular ones in our repo, so with our new approach to open-source governance, we finally got to work and implemented these.Working with JSON and Enum fields works similarly to other database providers, here’s an example:
Support for auto-generated ULID values
Similar to
cuid2
support released in ORM version 6.0.0, we are now adding support for Universally Unique Lexicographically Sortable Identifiers (or short: ULIDs 😄) in version 6.2.0. A ULID value is a 26-character alphanumeric string, e.g.01GZ0GZ3XARH8ZP44A7TQ2W4ZD
.With this new feature, you can now create records with auto-generated ULID values for
String
fields:New batch function:
updateManyAndReturn
updateMany
allows you to update many records in your database, but it only returns the count of the affected rows, not the resulting rows themselves. WithupdateManyAndReturn
you are now able to achieve this:This call to
updateManyAndReturn
will now return the actual records that have been updated in the query:Please note that like
createManyAndReturn
,updateManyAndReturn
is only supported in PostgreSQL, CockroachDB, and SQLite.Fixed runtime error in Node.js v23
While not officially supported, we understand that a lot of you like to be on the latest Node.js version — so we fixed an error that only occurred on Node.js 23. Happy coding ✌️
Prisma is hiring 🤝
Join us at Prisma to work on the most popular TypeScript ORM and other exciting products like the first serverless database built on unikernels!
We currently have two open roles in our Engineering team:
If these don’t fit, you can still check out our jobs page and send a general application.
vueuse/vueuse (@vueuse/components)
v12.4.0
Compare Source
🚀 Features
isModified
- by @pkc918 and @antfu in https://github.com/vueuse/vueuse/issues/4470 (6018c)🐞 Bug Fixes
View changes on GitHub
lint-staged/lint-staged (lint-staged)
v15.4.0
Compare Source
Minor Changes
#1500
a8ec1dd
Thanks @iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:It's also possible to use the
.ts
file extension for the configuration if your Node.js version supports it. The--experimental-strip-types
flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.Patch Changes
9b79364
Thanks @iiroj! - Handle possible failures when logging user shell for debug info.nodejs/node (node)
v22.13.0
: 2025-01-07, Version 22.13.0 'Jod' (LTS), @ruyadornoCompare Source
Notable Changes
Stabilize Permission Model
Upgrades the Permission Model status from Active Development to Stable.
Contributed by Rafael Gonzaga #56201
Graduate WebCryptoAPI
Ed25519
and X25519 algorithms as stableFollowing the merge of Curve25519 into the Web Cryptography API Editor's Draft the
Ed25519
andX25519
algorithm identifiers are now stable and will no longer emit an ExperimentalWarning upon use.Contributed by (Filip Skokan) #56142
Other Notable Changes
05d6227a88
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #54630a933103499
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #55604ba9d5397de
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #56087f6d0c01303
] - doc: stabilize util.styleText (Rafael Gonzaga) #5626534c68827af
] - doc: move typescript support to active development (Marco Ippolito) #55536dd14b80350
] - doc: add LJHarb to collaborators (Jordan Harband) #561325263086169
] - (SEMVER-MINOR) doc: add report version and history section (Chengzhong Wu) #561308cb3c2018d
] - (SEMVER-MINOR) doc: sort --report-exclude alphabetically (Rafael Gonzaga) #5578855239a48b6
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #558907cbe3de1d8
] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #561946575b76042
] - (SEMVER-MINOR) module: add module.stripTypeScriptTypes (Marco Ippolito) #55282bacfe6d5c9
] - (SEMVER-MINOR) net: support blocklist in net.connect (theanarkh) #56075b47888d390
] - (SEMVER-MINOR) net: support blocklist for net.Server (theanarkh) #56079566f0a1d25
] - (SEMVER-MINOR) net: add SocketAddress.parse (James M Snell) #56076ed7eab1421
] - (SEMVER-MINOR) net: add net.BlockList.isBlockList(value) (James M Snell) #56078ea4891856d
] - (SEMVER-MINOR) process: deprecatefeatures.{ipv6,uv}
andfeatures.tls_*
(René) #5554501eb308f26
] - (SEMVER-MINOR) report: fix typos in report keys and bump the version (Yuan-Ming Hsu) #5606897c38352d0
] - (SEMVER-MINOR) sqlite: aggregate constants in a single property (Edigleysson Silva (Edy)) #56213b4041e554a
] - (SEMVER-MINOR) sqlite: addStatementSync.prototype.iterate
method (tpoisseau) #542132e3ca1bbdd
] - (SEMVER-MINOR) src: add cli option to preserve env vars on diagnostic reports (Rafael Gonzaga) #55697bcfe9c80fc
] - (SEMVER-MINOR) util: add sourcemap support to getCallSites (Marco Ippolito) #55589Commits
e9024779c0
] - assert: make Maps be partially compared in partialDeepStrictEqual (Giovanni Bucci) #561954c13d8e587
] - assert: make partialDeepStrictEqual work with ArrayBuffers (Giovanni Bucci) #56098a4fa31a86e
] - assert: optimize partial comparison of twoSet
s (Antoine du Hamel) #5597005d6227a88
] - (SEMVER-MINOR) assert: add partialDeepStrictEqual (Giovanni Bucci) #546305e1321abd7
] - buffer: document concat zero-fill (Duncan) #55562be5ba7c648
] - build: set DESTCPU correctly for 'make binary' on loongarch64 (吴小白) #5627138cf37ee2d
] - build: fix missing fp16 dependency in d8 builds (Joyee Cheung) #56266dbb7557455
] - build: add major release action (Rafael Gonzaga) #5619927cc90f3be
] - build: fix C string encoding forPRODUCT_DIR_ABS
(Anna Henningsen) #56111376561c2b4
] - build: use variable for simdutf path (Shelley Vohr) #56196126ae15000
] - build: allow overriding clang usage (Shelley Vohr) #5601697bb8f7c76
] - build: remove defaults for create-release-proposal (Rafael Gonzaga) #56042a8fb1a06f3
] - build: set node_arch to target_cpu in GN (Shelley Vohr) #559679f48ca27f1
] - build: use variable for crypto dep path (Shelley Vohr) #55928e47ccd2287
] - build: fix GN build for sqlite (Cheng) #559128d70b99a5a
] - build: compile bundled simdutf conditionally (Jakub Jirutka) #55886826fd35242
] - build: compile bundled simdjson conditionally (Jakub Jirutka) #558861015b22085
] - build: compile bundled ada conditionally (Jakub Jirutka) #5588677e2869ca6
] - build: use glob for dependencies of out/Makefile (Richard Lau) #55789a933103499
] - (SEMVER-MINOR) cli: implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #5560472e8e0684e
] - crypto: graduate WebCryptoAPIEd25519
and X25519 algorithms as stable (Filip Skokan) #56142fe2b344ddb
] - crypto: ensure CryptoKey usages and algorithm are cached objects (Filip Skokan) #561089ee9f524a7
] - crypto: allow non-multiple of 8 in SubtleCrypto.deriveBits (Filip Skokan) #5529676f242d993
] - deps: update nghttp3 to 1.6.0 (Node.js GitHub Bot) #56258c7ff2ea6b5
] - deps: update simdutf to 5.6.4 (Node.js GitHub Bot) #5625504230be1ef
] - deps: update libuv to 1.49.2 (Luigi Pinca) #5622488589b85b7
] - deps: update c-ares to v1.34.4 (Node.js GitHub Bot) #562565c2e0618f3
] - deps: define V8_PRESERVE_MOST as no-op on Windows (Stefan Stojanovic) #562389f8f3c9658
] - deps: update sqlite to 3.47.2 (Node.js GitHub Bot) #5617817b6931d3b
] - deps: update ngtcp2 to 1.9.1 (Node.js GitHub Bot) #5609522b453b619
] - deps: upgrade npm to 10.9.2 (npm team) #56135d7eb41b382
] - deps: update sqlite to 3.47.1 (Node.js GitHub Bot) #56094669c722aa9
] - deps: update zlib to 1.3.0.1-motley-82a5fec (Node.js GitHub Bot) #55980f61a0454d2
] - deps: update corepack to 0.30.0 (Node.js GitHub Bot) #55977d98bf0b891
] - deps: update ngtcp2 to 1.9.0 (Node.js GitHub Bot) #55975fc362624bf
] - deps: update simdutf to 5.6.3 (Node.js GitHub Bot) #55973f61dcc4df4
] - deps: upgrade npm to 10.9.1 (npm team) #55951bfe7982491
] - deps: update zlib to 1.3.0.1-motley-7e2e4d7 (Node.js GitHub Bot) #54432d714367ef8
] - deps: update simdjson to 3.10.1 (Node.js GitHub Bot) #54678ccc9b105ec
] - deps: update simdutf to 5.6.2 (Node.js GitHub Bot) #55889ba9d5397de
] - (SEMVER-MINOR) dgram: support blocklist in udp (theanarkh) #560877ddbf94849
] - dgram: check udp buffer size to avoid fd leak (theanarkh) #56084360d68de0f
] - doc: fix color contrast issue in light mode (Rich Trott) #56272f6d0c01303
] - doc: stabilize util.styleText (Rafael Gonzaga) #562659436c3c949
] - doc: clarify util.aborted resource usage (Kunal Kumar) #55780b1cec2cef9
] - doc: add esm examples to node:repl (Alfredo González) #55432d6a84cf781
] - doc: add esm examples to node:readline (Alfredo González) #55335a11ac1c0f2
] - doc: fix 'which' to 'that' and add commas (Selveter Senitro) #562165331df7911
] - doc: fix winget config path (Alex Yang) #562337a8071b43c
] - doc: add esm examples to node:tls (Alfredo González) #562297d8c1e72d5
] - doc: add esm examples to node:perf_hooks (Alfredo González) #55257ea53c4b1ae
] - doc:sea.getRawAsset(key)
always returns an ArrayBuffer (沈鸿飞) #562067a94100a3e
] - doc: update announce documentation for releases (Rafael Gonzaga) #5620044c4e57e32
] - doc: update blog link to /vulnerability (Rafael Gonzaga) #561985e5b4b0cbd
] - doc: call out import.meta is only supported in ES modules (Anton Kastritskii) #56186a83de32d35
] - doc: add ambassador message - benefits of Node.js (Michael Dawson) #56085bb880dd21a
] - doc: fix incorrect link to style guide (Yuan-Ming Hsu) #5618139ce902e58
] - doc: fix c++ addon hello world sample (Edigleysson Silva (Edy)) #5617219c72c4acc
] - doc: update blog release-post link (Ruy Adorno) #56123b667cc4669
] - doc: fix module.md headings (Chengzhong Wu) #5613134c68827af
] - doc: move typescript support to active development (Marco Ippolito) #55536c4a97d810b
] - doc: mention-a
flag for the release script (Ruy Adorno) #56124dd14b80350
] - doc: add LJHarb to collaborators (Jordan Harband) #561322feb0781ed
] - doc: add create-release-action to process (Rafael Gonzaga) #5599371f6263942
] - doc: rename file to advocacy-ambassador-program.md (Tobias Nießen) #560468efa240500
] - doc: remove unused import from sample code (Blended Bram) #55570e64cef8bf4
] - doc: add FAQ to releases section (Rafael Gonzaga) #559924bb0f30f92
] - doc: move history entry to class description (Luigi Pinca) #559916d02bd6873
] - doc: add history entry for textEncoder.encodeInto() (Luigi Pinca) #55990e239382ed8
] - doc: improve GN build documentation a bit (Shelley Vohr) #5596878b6aef6bc
] - doc: fix deprecation codes (Filip Skokan) #56018474bf80a44
] - doc: remove confusing and outdated sentence (Luigi Pinca) #5598857381076c5
] - doc: deprecate passing invalid types infs.existsSync
(Carlos Espa) #55892e529cf6b26
] - doc: add doc for PerformanceObserver.takeRecords() (skyclouds2001) #55786a6ef0f6f6e
] - doc: add vetted courses to the ambassador benefits (Matteo Collina) #5593463526049f2
] - doc: ordernode:crypto
APIs alphabetically (Julian Gassner) #5583136080b7b61
] - doc: doc how to add message for promotion (Michael Dawson) #5584312b2ad4287
] - doc: add esm example for zlib (Leonardo Peixoto) #55946352daac296
] - doc: fix typo (Alex Yang) #561256e7e9a126d
] - doc: document approach for building wasm in deps (Michael Dawson) #559400b3ac05422
] - doc: remove RedYetiDev from triagers team (Aviv Keller) #5594720be5e2f80
] - doc: add esm examples to node:timers (Alfredo González) #558573ba9b57436
] - doc: fix relative path mention in --allow-fs (Rafael Gonzaga) #557913e6b3a9a8b
] - doc: include git node release --promote to steps (Rafael Gonzaga) #558355bdfde8dc6
] - doc: add history entry for import assertion removal (Antoine du Hamel) #55883c842146c05
] - doc: add a note on console stream behavior (Gireesh Punathil) #556165263086169
] - (SEMVER-MINOR) doc: add report version and history section (Chengzhong Wu) #561308cb3c2018d
] - (SEMVER-MINOR) doc: sort --report-exclude alphabetically (Rafael Gonzaga) #5578855239a48b6
] - (SEMVER-MINOR) doc,lib,src,test: unflag sqlite module (Colin Ihrig) #5589004d7c7a349
] - fs: make mutatingoptions
in Callbackreaddir()
not affect results (LiviaMedeiros) #5605792bcd528e7
] - fs: make mutatingoptions
in Promisesreaddir()
not affect results (LiviaMedeiros) #560573a55bd9448
](https://redirect.github.com/nodejs/node/commit/3a55Configuration
📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.