shelve
shelve copied to clipboard
chore(deps): update all non-major dependencies
This PR contains the following updates:
Release Notes
HugoRCD/eslint-config (@hrcd/eslint-config)
v2.0.2
🏡 Chore
- release: V0.0.1 (14639e4)
❤️ Contributors
- HugoRCD (@HugoRCD)
nuxt/content (@nuxt/content)
v2.13.2
🚀 Enhancements
🩹 Fixes
- Add string type to gt/lt/gte/lte type definitions (#2704)
- search: Non-md file might not have dscription file (#2706)
- module: Disable MDC plugin if user disabled it (#2707)
- Unwatch storage on nitro
close
(ec7105ad)
📖 Documentation
- Add missing
await
for searchContent docs (#2692) - Prerender home (4253f0bf)
- Update
nuxt-og-image
and addpostinstall
script (#2705) - Update ContentSlot Documentation (#2713)
🤖 CI
❤️ Contributors
- Farnabaz [email protected]
- Jacob Strong (@jacstrong)
- Damien Guard [email protected]
- Florent Delerue [email protected]
- Benjamin Canac (@benjamincanac)
- Brock Wilcox (@awwaiid)
nuxt/fonts (@nuxt/fonts)
v0.7.2
🔥 Performance
-
local: Use
tinyglobby
to scan font files (#205)
🩹 Fixes
- Apply
-
replacement to filename (d83aa0d) -
adobe: Use provided
css_names
from API (#192) -
fontsource: Use
/variable
endpoint for retrieving variable axes (#196)
📖 Documentation
- Fix link to how it works (#197)
- Update carbon abs (7b61b15)
- Improvements (9dab0a3)
- Update social og image (2991df2)
- Fix open an issue link on installation page (#206)
🏡 Chore
- Lint (dabc1ce)
✅ Tests
- Update snapshots (5bc9ae6)
❤️ Contributors
- Ben McCann (@benmccann)
- Kethan Vegunta (@kethan1)
- Daniel Roe (@danielroe)
- Sébastien Chopin (@atinux)
- Tom Tang (@qwerzl)
- Michel EDIGHOFFER [email protected]
nuxt/ui (@nuxt/ui)
v2.18.4
Bug Fixes
- Form: submit event data (#2012) (4d61936)
- module: handle nested colors from ui config (#2008) (1cc7e2a)
- module: reduce css bundle size by fixing safelist regex (#2005) (8ac9ca4)
-
module: suffix types imports with
/index
(7e37668), closes #2018 -
Tabs: use
nextTick
before marker calc (#2020) (9c04969) - useFormGroup: app config default input size (#2011) (3485092)
v2.18.3
Bug Fixes
v2.18.2
Bug Fixes
-
Tabs: add missing
UIcon
import (4fd1be2)
v2.18.1
Bug Fixes
- components: use relative imports (ea721a3)
v2.18.0
⚠ BREAKING CHANGES
-
Icon: migrate from
@egoist/tailwindcss-icons
to new@nuxt/icon
(#1789)
Features
-
Checkbox/Radio/RadioGroup: add
help
slot (c3122f7), closes #1957 -
CommandPalette: handle
static
groups (#1458) (b264ad2) -
Icon: migrate from
@egoist/tailwindcss-icons
to new@nuxt/icon
(#1789) (c904604) - module: improve app config types autocomplete (#1870) (3f8ea5d)
-
RadioGroup: add
selected
to label slot props (#1587) (d18477d) -
SelectMenu: add selected to
label
/leading
/trailing
slots props (#1349) (6b216ca) -
SelectMenu: handle function in
showCreateOptionWhen
prop (#1853) (7e974b5) -
Skeleton: add
as
prop (#1955) (bce94db) - Table: expand row (#1036) (7155318)
-
Table: handle
rowClass
property incolumns
(#1632) (748e491) -
Tabs: handle
icon
in items (#1798) (e8eb394)
Bug Fixes
- Accordion: truncate buttons (5db18c0), closes #1909
- Alert/Notification: missing margin on description (2c55fb6), closes #1959
-
Breadcrumb: use
rotate
on rtl icon (53003fc) - ButtonGroup/FormGroup: pass default sizes to children (#1875) (6b6b03d)
-
Carousel: remove
mix-blend-overlay
on indicators (#1714) (f74f1df) -
FormGroup: don't check for
error
slot sohelp
slot can render (#1888) (99c52e5) -
InputMenu/SelectMenu: invalid
label
withvalue-attribute
and async search (4d5f250), closes #1780 - InputMenu/SelectMenu: prevent double filter with async search (e2881d3), closes #1966
-
Link: allow
ariaLabel
to be picked (720c44d), closes #1934 -
Progress: pass down attrs to
<progress>
to improve accessibility (#1881) (abd13f1) -
RadioGroup: allow boolean in
modelValue
prop (#1913) (8eca5a0)
prisma/prisma (@prisma/client)
v5.18.0
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
Highlights
Native support for UUIDv7
Previous to this release, the Prisma Schema function uuid()
did not accept any arguments and created a UUIDv4 ID. While sufficient in many cases, UUIDv4 has a few drawbacks, namely that it is not temporally sortable.
UUIDv7 attempts to resolve this issue, making it easy to temporally sort your database rows by ID!
To support this, we’ve updated the uuid()
function in Prisma Schema to accept an optional, integer argument. Right now, the only valid values are 4
and 7
, with 4
being the default.
model User {
id String @​id @​default(uuid()) // defaults to 4
name String
}
model User {
id String @​id @​default(uuid(4)) // same as above, but explicit
name String
}
model User {
id String @​id @​default(uuid(7)) // will use UUIDv7 instead of UUIDv4
name String
}
Bug squashing
We’ve squashed a number of bugs this release, special thanks to everyone who helped us! A few select highlights are:
-
SQLite db will now be created and read from the correct location when using
prismaSchemaFolder
. -
Empty
Json[]
fields will now return[]
instead ofnull
when accessed through a join using therelationJoins
Preview feature.
Fixes and improvements
Prisma
Language tools (e.g. VS Code)
Credits
Huge thanks to @mcuelenaere, @pagewang0, @Druue, @key-moon, @Jolg42, @pranayat, @ospfranco, @yubrot, @skyzh, @haaawk for helping!
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v5.1.2
- refactor(plugin-vue): add
type
field (a6b7e3f) - fix(plugin-vue): add deprecated
script.propsDestructure
option (1e24322), closes #431 - chore(deps): update upstream (#432) (5d592cd), closes #432
v5.1.1
v5.1.0
- fix(deps): update all non-major dependencies (#412) (8cb2ea9), closes #412
- fix(plugin-vue): clear cache after build end (96dbb22)
- chore: update documentation for new features option (7fc7994)
- chore(deps): update upstream (#416) (02a3edd), closes #416
- feat(plugin-vue): add
features
option (#419) (3e839e2), closes #419
eslint/eslint (eslint)
v9.9.0
Features
-
41d0206
feat: Add support for TS config files (#18134) (Arya Emami) -
3a4eaf9
feat: add suggestion torequire-await
to removeasync
keyword (#18716) (Dave)
Documentation
-
9fe068c
docs: how to author plugins with configs that extend other configs (#18753) (Alec Gibson) -
48117b2
docs: add version support page in the side navbar (#18738) (Amaresh S M) -
fec2951
docs: add version support page to the dropdown (#18730) (Amaresh S M) -
38a0661
docs: Fix typo (#18735) (Zaina Al Habash) -
3c32a9e
docs: Update yarn command for creating ESLint config (#18739) (Temitope Ogunleye) -
f9ac978
docs: Update README (GitHub Actions Bot)
Chores
-
461b2c3
chore: upgrade to@eslint/[email protected]
(#18765) (Francesco Trotta) -
59dba1b
chore: package.json update for @eslint/js release (Jenkins) -
fea8563
chore: update dependency @eslint/core to ^0.3.0 (#18724) (renovate[bot]) -
aac191e
chore: update dependency @eslint/json to ^0.3.0 (#18760) (renovate[bot]) -
b97fa05
chore: update wdio dependencies for more stable tests (#18759) (Christian Bromann)
v9.8.0
nuxt/nuxt (nuxt)
v3.12.4
3.12.4 is the next regularly scheduled patch release.
👉 Changelog
🔥 Performance
- vite: Start warmups after nitro build (#27963)
-
vite: Avoid extra resolve call for
resolveId
in layers (#27971) - kit,nuxt,schema,vite,webpack: Use explicit exports (#27998)
🩹 Fixes
- schema: Resolve public alias correctly (#27975)
-
nuxt: Omit rendering payload prefetch when
noScripts
(#27972) -
nuxt: Add
/
as fallback if page can't be identified (e6109b226) -
ui-templates: Validate templates with
html-validate
(#28024) - schema: Don't constrain postcss plugin options (#28045)
- kit: Remove exports from v4 branch (5c8312e9b)
-
nuxt: Use
unhead
key for ad-hoc module options (#28088) - nuxt: Use native vue-router composables (#28114)
-
kit: Ensure
getNuxtVersion
returnsstring
(#28125) - nuxt: Always prerender at least one page with crawler (#28131)
-
nuxt: Consider doc
scroll-padding-top
in scrollBehavior (#28083) -
nuxt: Only warn when
useAsyncData
returns undefined (#28154) -
nuxt: Revert change to
getCachedData
null response (d10cea11b) -
schema: Don't use
app/
assrcDir
if it doesn't exist (#28176) -
kit: Normalise
serverDir
within layers using v4 compat (#28177) -
nuxt: Allow
getCachedData
to return undefined (#28187) -
nuxt: Use
addEventListener
to register cookie store listener (#28193) - nuxt: Merge route meta properties with scanned meta (#28170)
-
nuxt: Prevent duplicate
set-cookie
headers (#28211)
💅 Refactors
-
schema,vite,webpack: Rework
postcss
module loading (#27946) -
nuxt: Remove
_registeredComponents
from ssrContext (#27819) -
nuxt: Use
errx
to handle dev log traces (#28027)
📖 Documentation
- Fix link (83bd4fde9)
- Fix Cloudflare spelling (#27989)
- Update example to use
nuxtApp.runWithContext
(#28000) - Remove deprecated
pending
variable from data fetching docs (#28011) - Clarify xrsp danger (#28053)
- Deprecate pending and emphasis undefined (#28113)
- Update phrasing in route announcer (#28108)
- Use code groups for install commands in module guide (#28094)
- Capitalize text (#28056)
- Mention content in upgrade guide v4 folder structure (#28090)
- Remove a resolved issue from view transition docs (#28091)
- Clarify navigateTo is not for nitro routes (#28092)
- Warn about nested islands (#28062)
- Add info about
layers/
directory (#28128) - Codemods for migrating to Nuxt 4 (#28072)
✅ Tests
- Add
typeCheck
test in minimal build (#28166)
🤖 CI
❤️ Contributors
- Daniel Roe (@danielroe)
- arshcodemod (@arshcodemod)
- xjccc (@xjccc)
- Julien Huang (@huang-julien)
- BoogieBen (@boogie-ben)
- Santiago A (@santiagoaloi)
- Bobbie Goede (@BobbieGoede)
- John Tanzer (@moshetanzer)
- Thomas (@ThomasWT)
- @beer (@iiio2)
- Dominic (@rexhent)
- Alex Liu (@Mini-ghost)
- Florian Metz (@Timeraa)
- Liran Tal (@lirantal)
- Daniel Kelly (@danielkellyio)
- Daniel Flanagan (@FlantasticDan)
- 山吹色御守 (@KazariEX)
- izzy goldman (@izzygld)
- Anthony Fu (@antfu)
resendlabs/resend-node (resend)
v3.5.0
vercel/turborepo (turbo)
v2.0.14
v2.0.13
: Turborepo v2.0.13
What's Changed
Docs
- (docs): Improve clarity for watch. by @anthonyshew in https://github.com/vercel/turbo/pull/8957
- Migrate to Storybook 8.2.6 by @joeblas in https://github.com/vercel/turbo/pull/8835
- chore(repo): update readme and links by @tknickman in https://github.com/vercel/turbo/pull/8965
- docs: add release flag to cargo build by @chris-olszewski in https://github.com/vercel/turbo/pull/8992
Changelog
- chore: improve error message for package graph construction by @NicholasLYang in https://github.com/vercel/turbo/pull/8966
- Log changed package names instead of full struct by @mehulkar in https://github.com/vercel/turbo/pull/8971
- refactor: renamed UI to ColorConfig by @NicholasLYang in https://github.com/vercel/turbo/pull/8962
- fix(watch): display which tasks will be rerun by @chris-olszewski in https://github.com/vercel/turbo/pull/8960
- fix: print application errors to stderr instead of stdout by @chris-olszewski in https://github.com/vercel/turbo/pull/8969
- feat: add
--affected
toturbo ls
by @NicholasLYang in https://github.com/vercel/turbo/pull/8970 - chore(change_mapper): add debug log explaining why package is root dep by @chris-olszewski in https://github.com/vercel/turbo/pull/8976
- chore: remove aliases by @NicholasLYang in https://github.com/vercel/turbo/pull/8980
- enables test_gh_8599 test by @dimitropoulos in https://github.com/vercel/turbo/pull/8984
- removes GOROOT from globalPassThroughEnv for local dev by @dimitropoulos in https://github.com/vercel/turbo/pull/8981
- simplify Prysk commands by @dimitropoulos in https://github.com/vercel/turbo/pull/8982
- fix(create-turbo): support renamed repositories by @tknickman in https://github.com/vercel/turbo/pull/8993
- cacheDir for env, config, and flag by @dimitropoulos in https://github.com/vercel/turbo/pull/8947
- Update Socket config by @jackwilson323 in https://github.com/vercel/turbo/pull/9005
New Contributors
- @joeblas made their first contribution in https://github.com/vercel/turbo/pull/8835
- @konomae made their first contribution in https://github.com/vercel/turbo/pull/8908
Full Changelog: https://github.com/vercel/turbo/compare/v2.0.12...v2.0.13
v2.0.12
: Turborepo v2.0.12
What's Changed
Docs
- docs: Re-mention passthroughs in CI compatibility section. by @anthonyshew in https://github.com/vercel/turbo/pull/8939
- docs: Correct json comma syntax in sample code by @huyb1991 in https://github.com/vercel/turbo/pull/8949
@turbo/repository
- feat(turborepo): log reason why all packages were considered changed by @mehulkar in https://github.com/vercel/turbo/pull/8872
Changelog
- fix(watch): properly shut down persistent tasks by @chris-olszewski in https://github.com/vercel/turbo/pull/8854
- add envMode to
turbo.json
by @dimitropoulos in https://github.com/vercel/turbo/pull/8757 - chore(codeowners): remove turbopack by @tknickman in https://github.com/vercel/turbo/pull/8930
- chore(turbo): simplify contributing by @tknickman in https://github.com/vercel/turbo/pull/8931
- removes nextest config related to turbopack by @dimitropoulos in https://github.com/vercel/turbo/pull/8925
- chore: improve -vv logging by @mehulkar in https://github.com/vercel/turbo/pull/8910
- refactor(turborepo): change the ui config to use an enum by @NicholasLYang in https://github.com/vercel/turbo/pull/8919
- remove / move unused or test crates by @arlyon in https://github.com/vercel/turbo/pull/8929
- fix(tui): allow for TUI use when hooked up to tty by @chris-olszewski in https://github.com/vercel/turbo/pull/8942
- feat(telemetry): reduce data volume by @tknickman in https://github.com/vercel/turbo/pull/8944
- feat(owners): remove telem special case by @tknickman in https://github.com/vercel/turbo/pull/8945
- feat(turborepo): implement --affected flag by @NicholasLYang in https://github.com/vercel/turbo/pull/8884
New Contributors
- @Marukome0743 made their first contribution in https://github.com/vercel/turbo/pull/8928
- @fredericobreno made their first contribution in https://github.com/vercel/turbo/pull/8911
- @huyb1991 made their first contribution in https://github.com/vercel/turbo/pull/8949
Full Changelog: https://github.com/vercel/turbo/compare/v2.0.11...v2.0.12
v2.0.11
: Turborepo v2.0.11
What's Changed
Changelog
- fix(pty): disable echoctl for child processes by @chris-olszewski in https://github.com/vercel/turbo/pull/8892
New Contributors
- @Zaid-maker made their first contribution in https://github.com/vercel/turbo/pull/8090
Full Changelog: https://github.com/vercel/turbo/compare/v2.0.10...v2.0.11
v2.0.10
: Turborepo v2.0.10
What's Changed
Examples
- chore: dedupe link component in kitchen sink by @chris-olszewski in https://github.com/vercel/turbo/pull/8813
- feat(examples): add example-with-typeorm by @cgoinglove in https://github.com/vercel/turbo/pull/8143
Changelog
- feat(turbo): add TMP and TEMP variables to pass through by @cahilfoley in https://github.com/vercel/turbo/pull/8803
- chore: add trace level logging to process management by @chris-olszewski in https://github.com/vercel/turbo/pull/8822
- chore(infer): add test for current behavior by @chris-olszewski in https://github.com/vercel/turbo/pull/8825
- fix: close stdin for non-interactive tasks by @chris-olszewski in https://github.com/vercel/turbo/pull/8838
- chore(turborepo): print the turbo version on start up by @NicholasLYang in https://github.com/vercel/turbo/pull/8841
- chore(auth): catch forbidden cache access error by @chris-olszewski in https://github.com/vercel/turbo/pull/8853
- chore(telemetry): remove unused codepath field by @mehulkar in https://github.com/vercel/turbo/pull/8855
- chore(schema): update schema with dangerouslyDisablePackageManagerCheck by @chris-olszewski in https://github.com/vercel/turbo/pull/8856
- fix(turborepo): task table width bug by @NicholasLYang in https://github.com/vercel/turbo/pull/8868
- feat(turborepo): added specific symbol for cache hit by @NicholasLYang in https://github.com/vercel/turbo/pull/8869
- feat(tui): terminal pane mouse copying by @chris-olszewski in https://github.com/vercel/turbo/pull/8713
- chore(filter): add additional logs for scm based filters by @chris-olszewski in https://github.com/vercel/turbo/pull/8850
- chore:(logging): improve debug logs with -vv by @mehulkar in https://github.com/vercel/turbo/pull/8867
- (chore): Make FS error more clear. by @anthonyshew in https://github.com/vercel/turbo/pull/8881
- adds daemon flag for env var and turbo.json by @dimitropoulos in https://github.com/vercel/turbo/pull/8728
- fix(windows): keep stdin open for conpty processes by @chris-olszewski in https://github.com/vercel/turbo/pull/8885
New Contributors
- @cahilfoley made their first contribution in https://github.com/vercel/turbo/pull/8803
- @busybox11 made their first contribution in https://github.com/vercel/turbo/pull/8799
- @samydoesit made their first contribution in https://github.com/vercel/turbo/pull/8725
- @gdarchen made their first contribution in https://github.com/vercel/turbo/pull/8830
- @cgoinglove made their first contribution in [https://github.com/vercel/turbo/pull/8143](ht
Configuration
📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).
🚦 Automerge: Enabled.
♻ 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 was generated by Mend Renovate. View the repository job log.