PR #143 opened: chore(deps): bump the minor-and-patch group across 1 directory with 24 updates
Bumps the minor-and-patch group with 20 updates in the / directory:
| Package | From | To |
|---|---|---|
| @headlessui/react | 2.2.9 | 2.2.10 |
| @inertiajs/react | 3.0.2 | 3.0.3 |
| @sentry/react | 10.47.0 | 10.51.0 |
| @stripe/react-stripe-js | 6.1.0 | 6.3.0 |
| @tailwindcss/vite | 4.2.2 | 4.2.4 |
| globals | 17.4.0 | 17.6.0 |
| laravel-echo | 2.3.3 | 2.3.4 |
| laravel-vite-plugin | 3.0.1 | 3.1.0 |
| lucide-react | 1.7.0 | 1.14.0 |
| react | 19.2.4 | 19.2.5 |
| react-dom | 19.2.4 | 19.2.5 |
| typescript | 6.0.2 | 6.0.3 |
| vite | 8.0.5 | 8.0.10 |
| @types/node | 25.5.2 | 25.6.0 |
| eslint-plugin-react-hooks | 7.0.1 | 7.1.1 |
| prettier | 3.8.1 | 3.8.3 |
| prettier-plugin-tailwindcss | 0.7.2 | 0.8.0 |
| typescript-eslint | 8.58.0 | 8.59.1 |
| @rollup/rollup-linux-x64-gnu | 4.59.0 | 4.60.2 |
| @rollup/rollup-win32-x64-msvc | 4.59.0 | 4.60.2 |
Updates @headlessui/react from 2.2.9 to 2.2.10
▶Commits
Updates @inertiajs/react from 3.0.2 to 3.0.3
▶Release notes
Sourced from @inertiajs/react's releases.
v3.0.3
What's Changed
- [3.x] Bump Vite and Vitest by
@pascalbaljetin inertiajs/inertia#3046- [3.x] Update TSConfig and bump CI actions by
@pascalbaljetin inertiajs/inertia#3047- [3.x] Infer form data keys in
resetOnSuccessandresetOnErrorby@pascalbaljetin inertiajs/inertia#3048- [3.x] Fix layout props callback misclassifying function-valued props as named layouts by
@pascalbaljetin inertiajs/inertia#3049- [3.x] Fix flash event not firing when response contains errors by
@skryukovin inertiajs/inertia#3038- [3.x] Fire flash event after full reload by
@skryukovin inertiajs/inertia#3041- [3.x] Improve Playwright CI cache by
@pascalbaljetin inertiajs/inertia#3051- [3.x] Add
onHttpException,onNetworkError, and response toonSuccessinuseHttpby@pascalbaljetin inertiajs/inertia#3050Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3
▶Changelog
Sourced from @inertiajs/react's changelog.
v3.0.3 - 2026-04-07
What's Changed
- [3.x] Bump Vite and Vitest by
@pascalbaljetin inertiajs/inertia#3046- [3.x] Update TSConfig and bump CI actions by
@pascalbaljetin inertiajs/inertia#3047- [3.x] Infer form data keys in
resetOnSuccessandresetOnErrorby@pascalbaljetin inertiajs/inertia#3048- [3.x] Fix layout props callback misclassifying function-valued props as named layouts by
@pascalbaljetin inertiajs/inertia#3049- [3.x] Fix flash event not firing when response contains errors by
@skryukovin inertiajs/inertia#3038- [3.x] Fire flash event after full reload by
@skryukovin inertiajs/inertia#3041- [3.x] Improve Playwright CI cache by
@pascalbaljetin inertiajs/inertia#3051- [3.x] Add
onHttpException,onNetworkError, and response toonSuccessinuseHttpby@pascalbaljetin inertiajs/inertia#3050Full Changelog: https://github.com/inertiajs/inertia/compare/v3.0.2...v3.0.3
▶Commits
66241d2v3.0.3a7a499eAdd onHttpException, onNetworkError, and response to onSuccess in useHttp (#3...f757d49Fix flash event not firing when response contains errors (#3038)2fe7751[3.x] Fix layout props callback misclassifying function-valued props as named...ffeef38[3.x] Infer form data keys inresetOnSuccessandresetOnError(#3048)5083325[3.x] Update TSConfig and bump CI actions (#3047)0d0d99f[3.x] Bump Vite and Vitest (#3046)- See full diff in compare view
Updates @sentry/react from 10.47.0 to 10.51.0
▶Release notes
Sourced from @sentry/react's releases.
10.51.0
Important Changes
feat(cloudflare): Add trace propagation for RPC method calls (#20343)
Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects. This feature is opt-in and requires setting
enableRpcTracePropagation: truein your SDK configuration:// Worker export default Sentry.withSentry( env => ({ dsn: env.SENTRY_DSN, enableRpcTracePropagation: true, }), handler, );
// Durable Object
export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
env => ({
dsn: env.SENTRY_DSN,
enableRpcTracePropagation: true,
}),
MyDurableObjectBase,
);
feat(hono)!: Change setup for
@sentry/hono/node(initin external file) (#20497)To improve Node.js instrumentation, the
sentry()middleware exported from@sentry/hono/nodeno longer accepts configuration options. Instead, you must configure the SDK by callingSentry.init()in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:// instrument.mjs (or instrument.ts) import * as Sentry from '@sentry/hono/node';
Sentry.init({
dsn: 'DSN',
tracesSampleRate: 1.0,
});
feat(nitro): Add
@sentry/nitroSDK (#19224)A new
@sentry/nitropackage provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading viawithSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.Other Changes
... (truncated)
▶Changelog
Sourced from @sentry/react's changelog.
10.51.0
Important Changes
feat(cloudflare): Add trace propagation for RPC method calls (#20343)
Trace context is now propagated across Cloudflare Workers RPC calls, connecting traces between Workers and Durable Objects. This feature is opt-in and requires setting
enableRpcTracePropagation: truein your SDK configuration:// Worker export default Sentry.withSentry( env => ({ dsn: env.SENTRY_DSN, enableRpcTracePropagation: true, }), handler, );
// Durable Object
export const MyDurableObject = Sentry.instrumentDurableObjectWithSentry(
env => ({
dsn: env.SENTRY_DSN,
enableRpcTracePropagation: true,
}),
MyDurableObjectBase,
);
feat(hono)!: Change setup for
@sentry/hono/node(initin external file) (#20497)To improve Node.js instrumentation, the
sentry()middleware exported from@sentry/hono/nodeno longer accepts configuration options. Instead, you must configure the SDK by callingSentry.init()in a dedicated instrumentation file that runs before your application code (read more in the Hono SDK readme:// instrument.mjs (or instrument.ts) import * as Sentry from '@sentry/hono/node';
Sentry.init({
dsn: 'DSN',
tracesSampleRate: 1.0,
});
feat(nitro): Add
@sentry/nitroSDK (#19224)A new
@sentry/nitropackage provides first-class Sentry support for Nitro applications, with HTTP handler and error instrumentation, middleware tracing, request isolation, and build-time source map uploading viawithSentryConfig. Read more in the Nitro SDK docs and the Nitro SDK readme.Other Changes
... (truncated)
▶Commits
dc0b839release: 10.51.0b3cabeeMerge pull request #20599 from getsentry/prepare-release/10.51.03be99a9meta(changelog): Update changelog for 10.51.0bea1aadtest(browser): Unflake some more tests (#20591)50aa085test(node): Unflake postgres tests (#20593)1166839fix(hono): Distinguish.use()middleware in sub-apps from.all()handlers...217ad4atest(node): Fix flaky ANR test (#20592)91ffb3ftest(node): Fix flaky worker thread integration test (#20588)c4e3902chore(ci): Do not report flaky test issues if we cannot find a test name (#20...c0005cdtest(node): Update timeout for cron integration tests (#20586)- Additional commits viewable in compare view
Updates @stripe/react-stripe-js from 6.1.0 to 6.3.0
▶Release notes
Sourced from @stripe/react-stripe-js's releases.
v6.3.0
New features
- Added
useCheckoutElements(): use this inside<CheckoutElementsProvider>.- Added
useCheckoutForm(): use this inside<CheckoutFormProvider>.- Both new hooks throw a clear runtime error if called under the wrong provider.
useCheckout()is now deprecated in favor of the two hooks above. It will keep working under both providers for backward compatibility and is planned for removal in the next major release (v7.0.0).v6.2.0
New features
- add contactDetails element (#670)
Changes
- Bump lodash from 4.17.23 to 4.18.1 (#669)
▶Commits
Updates @stripe/stripe-js from 9.1.0 to 9.4.0
▶Release notes
Sourced from @stripe/stripe-js's releases.
v9.4.0
Changed
v9.3.1
Fixes
- Remove client-only actions from form SDK (#922)
v9.3.0
Fixes
- Add PMC to PE update options (#921)
- add phone to checkout form change event (#920)
- Bump lodash from 4.17.23 to 4.18.1 in /examples/parcel (#917)
v9.2.0
New features
- add contactDetails element (#915)
Changed
▶Commits
1d3ca28v9.4.0446d324Add release train type (#923)bce84a5AddhashedValueoverload tohandleNextAction(#889)657af7fv9.3.14ece63fRemove client-only actions from form SDK (#922)77e472ev9.3.06cf6711Add PMC to PE update options (#921)57694aeadd phone to checkout form change event (#920)4784be3Bump lodash from 4.17.23 to 4.18.1 in /examples/parcel (#917)932b86dv9.2.0- Additional commits viewable in compare view
Updates @tailwindcss/vite from 4.2.2 to 4.2.4
▶Release notes
Sourced from @tailwindcss/vite's releases.
v4.2.4
Fixed
- Ensure imports in
@importand@pluginstill resolve correctly when using Vite aliases in@tailwindcss/vite(#19947)v4.2.3
Fixed
- Canonicalization: improve canonicalizations for
tracking-*utilities by preferring non-negative utilities (e.g.-tracking-tighter→tracking-wider) (#19827)- Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
- Ensure query params in imports are considered unique resources when using
@tailwindcss/webpack(#19723)- Canonicalization: collapse arbitrary values into shorthand utilities (e.g.
px-[1.2rem] py-[1.2rem]→p-[1.2rem]) (#19837)- Canonicalization: collapse
border-{t,b}-*intoborder-y-*,border-{l,r}-*intoborder-x-*, andborder-{t,r,b,l}-*intoborder-*(#19842)- Canonicalization: collapse
scroll-m{t,b}-*intoscroll-my-*,scroll-m{l,r}-*intoscroll-mx-*, andscroll-m{t,r,b,l}-*intoscroll-m-*(#19842)- Canonicalization: collapse
scroll-p{t,b}-*intoscroll-py-*,scroll-p{l,r}-*intoscroll-px-*, andscroll-p{t,r,b,l}-*intoscroll-p-*(#19842)- Canonicalization: collapse
overflow-{x,y}-*intooverflow-*(#19842)- Canonicalization: collapse
overscroll-{x,y}-*intooverscroll-*(#19842)- Read from
--placeholder-colorinstead of--background-colorforplaceholder-*utilities (#19843)- Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
- Upgrade: use
config.contentwhen migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)- Upgrade: never migrate files that are ignored by git (#19846)
- Add
.envand.env.*to default ignored content files (#19846)- Canonicalization: migrate
overflow-ellipsisintotext-ellipsis(#19849)- Canonicalization: migrate
start-full→inset-s-full,start-auto→inset-s-auto,start-px→inset-s-px, andstart-<number>→inset-s-<number>as well as negative versions (#19849)- Canonicalization: migrate
end-full→inset-e-full,end-auto→inset-e-auto,end-px→inset-e-px, andend-<number>→inset-e-<number>as well as negative versions (#19849)- Canonicalization: move the
-sign inside the arbitrary value-left-[9rem]→left-[-9rem](#19858)- Canonicalization: move the
-sign outside the arbitrary valueml-[calc(-1*var(--width))]→-ml-(--width)(#19858)- Improve performance when scanning JSONL / NDJSON files (#19862)
- Support
NODE_PATHenvironment variable in standalone CLI (#19617)
▶Changelog
Sourced from @tailwindcss/vite's changelog.
[4.2.4] - 2026-04-21
Fixed
- Ensure imports in
@importand@pluginstill resolve correctly when using Vite aliases in@tailwindcss/vite(#19947)[4.2.3] - 2026-04-20
Fixed
- Canonicalization: improve canonicalization for
tracking-*utilities by preferring non-negative utilities (e.g.-tracking-tighter→tracking-wider) (#19827)- Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
- Ensure query params in imports are considered unique resources when using
@tailwindcss/webpack(#19723)- Canonicalization: collapse arbitrary values into shorthand utilities (e.g.
px-[1.2rem] py-[1.2rem]→p-[1.2rem]) (#19837)- Canonicalization: collapse
border-{t,b}-*intoborder-y-*,border-{l,r}-*intoborder-x-*, andborder-{t,r,b,l}-*intoborder-*(#19842)- Canonicalization: collapse
scroll-m{t,b}-*intoscroll-my-*,scroll-m{l,r}-*intoscroll-mx-*, andscroll-m{t,r,b,l}-*intoscroll-m-*(#19842)- Canonicalization: collapse
scroll-p{t,b}-*intoscroll-py-*,scroll-p{l,r}-*intoscroll-px-*, andscroll-p{t,r,b,l}-*intoscroll-p-*(#19842)- Canonicalization: collapse
overflow-{x,y}-*intooverflow-*(#19842)- Canonicalization: collapse
overscroll-{x,y}-*intooverscroll-*(#19842)- Read from
--placeholder-colorinstead of--background-colorforplaceholder-*utilities (#19843)- Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
- Upgrade: use
config.contentwhen migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)- Upgrade: never migrate files that are ignored by git (#19846)
- Add
.envand.env.*to default ignored content files (#19846)- Canonicalization: migrate
overflow-ellipsisintotext-ellipsis(#19849)- Canonicalization: migrate
start-full→inset-s-full,start-auto→inset-s-auto,start-px→inset-s-px, andstart-<number>→inset-s-<number>as well as negative versions (#19849)- Canonicalization: migrate
end-full→inset-e-full,end-auto→inset-e-auto,end-px→inset-e-px, andend-<number>→inset-e-<number>as well as negative versions (#19849)- Canonicalization: move the
-sign inside the arbitrary value-left-[9rem]→left-[-9rem](#19858)- Canonicalization: move the
-sign outside the arbitrary valueml-[calc(-1*var(--width))]→-ml-(--width)(#19858)- Improve performance when scanning JSONL / NDJSON files (#19862)
- Support
NODE_PATHenvironment variable in standalone CLI (#19617)
▶Commits
▶Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for @tailwindcss/vite since your current version.
Updates globals from 17.4.0 to 17.6.0
▶Release notes
Sourced from globals's releases.
v17.6.0
- Update globals (2026-05-01) (#343) 00a4dd9
https://github.com/sindresorhus/globals/compare/v17.5.0...v17.6.0
v17.5.0
- Update globals (2026-04-12) (#342) 5d84602
https://github.com/sindresorhus/globals/compare/v17.4.0...v17.5.0
▶Commits
Updates laravel-echo from 2.3.3 to 2.3.4
▶Release notes
Sourced from laravel-echo's releases.
v2.3.4
What's Changed
- Bump vite from 6.4.1 to 6.4.2 by
@dependabot[bot] in laravel/echo#486Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4
▶Changelog
Sourced from laravel-echo's changelog.
v2.3.4 - 2026-04-07
What's Changed
- Bump vite from 6.4.1 to 6.4.2 by
@dependabot[bot] in laravel/echo#486Full Changelog: https://github.com/laravel/echo/compare/v2.3.3...v2.3.4
▶Commits
b6460f6v2.3.47f46b96Bump vite from 6.4.1 to 6.4.2 (#486)68c1014Update CHANGELOG- See full diff in compare view
Updates laravel-vite-plugin from 3.0.1 to 3.1.0
▶Release notes
Sourced from laravel-vite-plugin's releases.
v3.1.0
Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.3...v3.1.0
v3.0.3
What's Changed
- Add font optimization plugin by
@WendellAdrielin laravel/vite-plugin#348- Add release script and publish workflow by
@joetannenbaumin laravel/vite-plugin#351New Contributors
@WendellAdrielmade their first contribution in laravel/vite-plugin#348@joetannenbaummade their first contribution in laravel/vite-plugin#351Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.1...v3.0.3
▶Changelog
Sourced from laravel-vite-plugin's changelog.
v3.1.0 - 2026-04-29
Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.3...v3.1.0
v3.0.3 - 2026-04-29
What's Changed
- Add font optimization plugin by
@WendellAdrielin laravel/vite-plugin#348- Add release script and publish workflow by
@joetannenbaumin laravel/vite-plugin#351New Contributors
@WendellAdrielmade their first contribution in laravel/vite-plugin#348@joetannenbaummade their first contribution in laravel/vite-plugin#351Full Changelog: https://github.com/laravel/vite-plugin/compare/v3.0.1...v3.0.3
v3.0.0 - 2026-03-18
What's Changed
- [3.x] Add Vite 8 support by
@timacdonaldin laravel/vite-plugin#342Please see the upgrade guide for important upgrade steps.
Full Changelog: https://github.com/laravel/vite-plugin/compare/v2.1.0...v3.0.0
v2.1.0 - 2026-01-20
- fix: missing 2.0.0 release notes in changelog by
@james2doylein laravel/vite-plugin#338- [2.x] Use vite export to future proof additional pattern changes by
@timacdonaldin laravel/vite-plugin#339v2.0.1 - 2025-08-26
- Automatically create hotFile parent directory by
@adrumin laravel/vite-plugin#334v2.0.0 - 2025-07-09
- Vite 7 support by
@sweptsquashin laravel/vite-plugin#328- Upgrade dependencies by
@timacdonaldin laravel/vite-plugin#331v1.3.0 - 2025-06-03
- Use rollup types from Vite by
@sapphi-redin laravel/vite-plugin#325v1.2.0 - 2025-01-21
- [1.x] Fix Invalid URL issue with Vite 6.0.9 by
@batinmustuin laravel/vite-plugin#317- [1.x] Add default CORS origins by
@timacdonaldin laravel/vite-plugin#318
... (truncated)
▶Commits
c30bff4v3.1.043c8679Merge branch '3.x' of github.com:laravel/vite-plugin into 3.x3e531d0Update publish.ymlab23840Update CHANGELOG01d1725v3.0.3efec294Add release script and publish workflow (#351)5cb4e78Update package.json0236378Add font optimization plugin (#348)- See full diff in compare view
▶Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for laravel-vite-plugin since your current version.
Updates lucide-react from 1.7.0 to 1.14.0
▶Release notes
Sourced from lucide-react's releases.
Version 1.14.0
What's Changed
- feat(icons): added
repeat-officon by@jguddasin lucide-icons/lucide#3102Full Changelog: https://github.com/lucide-icons/lucide/compare/1.13.0...1.14.0
Version 1.13.0
What's Changed
- fix(docs): sync URL params with UI state on categories page by
@taimarin lucide-icons/lucide#4111- feat(icons): add
waves-verticalicon by@jamiemlawin lucide-icons/lucide#3867Full Changelog: https://github.com/lucide-icons/lucide/compare/1.12.0...1.13.0
Version 1.12.0
What's Changed
- feat(icon): add folder-bookmark icon by
@swastik7805in lucide-icons/lucide#4262- docs(readme): Update readme files by
@ericfennisin lucide-icons/lucide#4320- feat(icons): added
astroidicon by@whoisBugsbunnyin lucide-icons/lucide#4217Full Changelog: https://github.com/lucide-icons/lucide/compare/1.10.0...1.12.0
Version 1.11.0
What's Changed
- docs: add missing period to TypeScript Support description by
@jgluin lucide-icons/lucide#4309- fix(
@lucide/svelte): proper doc comments for svelte components by@blt-rin lucide-icons/lucide#4267- chore(deps): bump svgo from 3.3.2 to 3.3.3 by
@dependabot[bot] in lucide-icons/lucide#4119- chore(deps-dev): bump astro from 6.0.8 to 6.1.6 by
@dependabot[bot] in lucide-icons/lucide#4310- feat(icons): add power and quick tags to zap and zap-off by
@swastik7805in lucide-icons/lucide#4268- test(build-font): added comprehensive unit tests on build-font tool by
@karsa-mistmerein lucide-icons/lucide#4315- feat(docs): blur background of framework-select by
@Spleefiesin lucide-icons/lucide#4238- feat(icon): add heart-x icon by
@swastik7805in lucide-icons/lucide#4264- fix(icons): optimised
rotate-3dicon by@jamiemlawin lucide-icons/lucide#4299- feat(icons): added
layers-minusicon by@Spleefiesin lucide-icons/lucide#4005- feat(icons): added
bell-checkicon by@pettelauin lucide-icons/lucide#4152New Contributors
@jglumade their first contribution in lucide-icons/lucide#4309@pettelaumade their first contribution in lucide-icons/lucide#4152Full Changelog: https://github.com/lucide-icons/lucide/compare/1.9.0...1.11.0
Version 1.10.0
What's Changed
- docs: add missing period to TypeScript Support description by
@jgluin lucide-icons/lucide#4309- fix(
@lucide/svelte): proper doc comments for svelte components by@blt-rin lucide-icons/lucide#4267- chore(deps): bump svgo from 3.3.2 to 3.3.3 by
@dependabot[bot] in lucide-icons/lucide#4119- chore(deps-dev): bump astro from 6.0.8 to 6.1.6 by
@dependabot[bot] in lucide-icons/lucide#4310
... (truncated)
▶Commits
Updates react from 19.2.4 to 19.2.5
▶Release notes
Sourced from react's releases.
19.2.5 (April 8th, 2026)
React Server Components
- Add more cycle protections (#36236 by
@eps1lonand@unstubbable)
▶Commits
23f4f9f19.2.5- See full diff in compare view
Updates react-dom from 19.2.4 to 19.2.5
▶Release notes
Sourced from react-dom's releases.
19.2.5 (April 8th, 2026)
React Server Components
- Add more cycle protections (#36236 by
@eps1lonand@unstubbable)
▶Commits
23f4f9f19.2.5- See full diff in compare view
Updates tailwindcss from 4.2.2 to 4.2.4
▶Release notes
Sourced from tailwindcss's releases.
v4.2.4
Fixed
- Ensure imports in
@importand@pluginstill resolve correctly when using Vite aliases in@tailwindcss/vite(#19947)v4.2.3
Fixed
- Canonicalization: improve canonicalizations for
tracking-*utilities by preferring non-negative utilities (e.g.-tracking-tighter→tracking-wider) (#19827)- Fix crash due to invalid characters in candidate (exceeding valid unicode code point range) (#19829)
- Ensure query params in imports are considered unique resources when using
@tailwindcss/webpack(#19723)- Canonicalization: collapse arbitrary values into shorthand utilities (e.g.
px-[1.2rem] py-[1.2rem]→p-[1.2rem]) (#19837)- Canonicalization: collapse
border-{t,b}-*intoborder-y-*,border-{l,r}-*intoborder-x-*, andborder-{t,r,b,l}-*intoborder-*(#19842)- Canonicalization: collapse
scroll-m{t,b}-*intoscroll-my-*,scroll-m{l,r}-*intoscroll-mx-*, andscroll-m{t,r,b,l}-*intoscroll-m-*(#19842)- Canonicalization: collapse
scroll-p{t,b}-*intoscroll-py-*,scroll-p{l,r}-*intoscroll-px-*, andscroll-p{t,r,b,l}-*intoscroll-p-*(#19842)- Canonicalization: collapse
overflow-{x,y}-*intooverflow-*(#19842)- Canonicalization: collapse
overscroll-{x,y}-*intooverscroll-*(#19842)- Read from
--placeholder-colorinstead of--background-colorforplaceholder-*utilities (#19843)- Upgrade: ensure files are not emptied out when killing the upgrade process while it's running (#19846)
- Upgrade: use
config.contentwhen migrating from Tailwind CSS v3 to Tailwind CSS v4 (#19846)- Upgrade: never migrate files that are ignored by git (#19846)
- Add
.envand.env.*to default ignored content files (#19846)- Canonicalization: migrate
overflow-ellipsisintotext-ellipsis(#19849)- Canonicalization: migrate
start-full→inset-s-full,start-auto→inset-s-auto,start-px→inset-s-px, andstart-<number>→inset-s-<number>as well as negative versions (#19849)- Canonicalization: migrate
end-full→inset-e-full,end-auto→inset-e-auto,end-px→inset-e-px, andend-<number>→inset-e-<number>as well as negative versions (#19849)- Canonicalization: move the
-sign inside the arbitrary value-left-[9rem]→left-[-9rem](#19858)- Canonicalization: move the
-sign outside the arbitrary value...Description has been truncated