PR #87 opened: chore(deps): bump the minor-and-patch group across 1 directory with 16 updates
Bumps the minor-and-patch group with 13 updates in the / directory:
| Package | From | To |
|---|---|---|
| @inertiajs/react | 2.3.13 | 2.3.15 |
| @sentry/react | 10.38.0 | 10.39.0 |
| @stripe/stripe-js | 8.7.0 | 8.8.0 |
| @tailwindcss/vite | 4.1.18 | 4.2.0 |
| @types/react | 19.2.13 | 19.2.14 |
| @vitejs/plugin-react | 5.1.3 | 5.1.4 |
| lucide-react | 0.563.0 | 0.575.0 |
| react-day-picker | 9.13.1 | 9.13.2 |
| tailwind-merge | 3.4.0 | 3.5.0 |
| @types/node | 25.2.1 | 25.3.0 |
| typescript-eslint | 8.54.0 | 8.56.0 |
| @rollup/rollup-linux-x64-gnu | 4.57.1 | 4.59.0 |
| @rollup/rollup-win32-x64-msvc | 4.57.1 | 4.59.0 |
Updates @inertiajs/react from 2.3.13 to 2.3.15
▶Release notes
Sourced from @inertiajs/react's releases.
v2.3.15
What's Changed
- Bump axios from 1.13.2 to 1.13.5 by
@dependabot[bot] in inertiajs/inertia#2888- [2.x] Fix flash data being cleared by
history.replaceStateby@pascalbaljetin inertiajs/inertia#2889- [2.x] Handle
bfcacherestoration for encrypted history by@pascalbaljetin inertiajs/inertia#2890- [2.x] Bump dependencies by
@pascalbaljetin inertiajs/inertia#2891- [2.x] Fix InfiniteScroll loading all pages in reverse mode with flex/grid layouts by
@pascalbaljetin inertiajs/inertia#2893- [2.x] Improve flaky tests and test app quality by
@pascalbaljetin inertiajs/inertia#2895Full Changelog: https://github.com/inertiajs/inertia/compare/v2.3.14...v2.3.15
v2.3.14
What's Changed
- [2.x] Shut down entire cluster on SSR shutdown by
@pascalbaljetin inertiajs/inertia#2876- [2.x] Fix
useFormtype inference when passing data as callback by@pascalbaljetin inertiajs/inertia#2878- Add global configuration support for withAllErrors in form components by
@skryukovin inertiajs/inertia#2865Full Changelog: https://github.com/inertiajs/inertia/compare/v2.3.13...v2.3.14
▶Changelog
Sourced from @inertiajs/react's changelog.
v2.3.15 - 2026-02-13
What's Changed
- Bump axios from 1.13.2 to 1.13.5 by
@dependabot[bot] in inertiajs/inertia#2888- [2.x] Fix flash data being cleared by
history.replaceStateby@pascalbaljetin inertiajs/inertia#2889- [2.x] Handle
bfcacherestoration for encrypted history by@pascalbaljetin inertiajs/inertia#2890- [2.x] Bump dependencies by
@pascalbaljetin inertiajs/inertia#2891- [2.x] Fix InfiniteScroll loading all pages in reverse mode with flex/grid layouts by
@pascalbaljetin inertiajs/inertia#2893- [2.x] Improve flaky tests and test app quality by
@pascalbaljetin inertiajs/inertia#2895Full Changelog: https://github.com/inertiajs/inertia/compare/v2.3.14...v2.3.15
v2.3.14 - 2026-02-11
What's Changed
- [2.x] Shut down entire cluster on SSR shutdown by
@pascalbaljetin inertiajs/inertia#2876- [2.x] Fix
useFormtype inference when passing data as callback by@pascalbaljetin inertiajs/inertia#2878- Add global configuration support for withAllErrors in form components by
@skryukovin inertiajs/inertia#2865Full Changelog: https://github.com/inertiajs/inertia/compare/v2.3.13...v2.3.14
▶Commits
5652a22v2.3.154b0461e[2.x] Improve flaky tests and test app quality (#2895)9b51423[2.x] Fix InfiniteScroll loading all pages in reverse mode with flex/grid lay...48ff3fc[2.x] Bump dependencies (#2891)146166aFix flash data being cleared byhistory.replaceState(#2889)4bdd004Bump axios from 1.13.2 to 1.13.5 (#2888)3cc7219v2.3.14aac2764Add global configuration support for withAllErrors in form components (#2865)- See full diff in compare view
Updates @sentry/react from 10.38.0 to 10.39.0
▶Release notes
Sourced from @sentry/react's releases.
10.39.0
Important Changes
feat(tanstackstart-react): Auto-instrument server function middleware (#19001)
The
sentryTanstackStartVite plugin now automatically instruments middleware increateServerFn().middleware([...])calls. This captures performance data without requiring manual wrapping withwrapMiddlewaresWithSentry().feat(nextjs): New experimental automatic vercel cron monitoring (#19192)
Setting
_experimental.vercelCronMonitoringtotruein your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.Please note that this is an experimental unstable feature and subject to change.
// next.config.ts export default withSentryConfig(nextConfig, { _experimental: { vercelCronMonitoring: true, }, });feat(node-core): Add node-core/light (#18502)
This release adds a new light-weight
@sentry/node-core/lightexport to@sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.Use this SDK when:
- You only need error tracking, logs or metrics without tracing data (no spans)
- You want to minimize bundle size and runtime overhead
- You don't need spans emitted by OpenTelemetry instrumentation
It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our
Sentry.startSpan*APIs.Install the SDK by running
npm install @sentry/node-coreand add Sentry at the top of your application's entry file:
import * as Sentry from '@sentry/node-core/light';
Sentry.init({ dsn: 'DSN', });Other Changes
... (truncated)
▶Changelog
Sourced from @sentry/react's changelog.
10.39.0
Important Changes
feat(tanstackstart-react): Auto-instrument server function middleware (#19001)
The
sentryTanstackStartVite plugin now automatically instruments middleware increateServerFn().middleware([...])calls. This captures performance data without requiring manual wrapping withwrapMiddlewaresWithSentry().feat(nextjs): New experimental automatic vercel cron monitoring (#19192)
Setting
_experimental.vercelCronMonitoringtotruein your Sentry configuration will automatically create Sentry cron monitors for your Vercel Cron Jobs.Please note that this is an experimental unstable feature and subject to change.
// next.config.ts export default withSentryConfig(nextConfig, { _experimental: { vercelCronMonitoring: true, }, });feat(node-core): Add node-core/light (#18502)
This release adds a new light-weight
@sentry/node-core/lightexport to@sentry/node-core. The export acts as a light-weight SDK that does not depend on OpenTelemetry and emits no spans.Use this SDK when:
- You only need error tracking, logs or metrics without tracing data (no spans)
- You want to minimize bundle size and runtime overhead
- You don't need spans emitted by OpenTelemetry instrumentation
It supports error tracking and reporting, logs, metrics, automatic request isolation (requires Node.js 22+) and basic tracing via our
Sentry.startSpan*APIs.Install the SDK by running
npm install @sentry/node-coreand add Sentry at the top of your application's entry file:
import * as Sentry from '@sentry/node-core/light';
Sentry.init({ dsn: 'DSN', });
... (truncated)
▶Commits
ab54c5cMake@sentry/opentelemetrynot a peer dep in node-coref822e69chore: Lint lerna.jsonc4708d2release: 10.39.0b5e3094chore: Revert to lerna v8 (#19294)9dea581Merge pull request #19281 from getsentry/prepare-release/10.39.012e467fmeta(changelog): Update changelog for 10.39.0d7df7d4ref(sveltekit): Useuntrackto read route id without invalidation (#19272)24b2ef2fix(sveltekit): Detect used adapter viasvelte.config.js(#19270)e051be4feat(node-core): Add outgoing fetch trace propagation to light mode (#19262)eaf297fref(core): Move shouldPropagateTraceForUrl from opentelemetry to core (#19258)- Additional commits viewable in compare view
Updates @stripe/stripe-js from 8.7.0 to 8.8.0
▶Release notes
Sourced from @stripe/stripe-js's releases.
v8.8.0
Fixes
- add confirmAmazonPaySetup to the types (#874)
- Add optional savePaymentMethod property to value (#873)
- publish: preflight hub auth before tagging (#866)
Changed
▶Commits
ba1019av8.8.07247d4cadd confirmAmazonPaySetup to the types (#874)5039102Update Payment Form types (#875)3ab6635Add Enums to options.layout.radios (#868)aee0e73Add optional savePaymentMethod property to value (#873)81debcfUse more specific types for tax ID (#872)2608939Add lk_vat to tax id types (#871)8f8120aadd paymentFormConfirmEvent to confirm args type (#867)07e14d8Bump lodash from 4.17.21 to 4.17.23 in /examples/rollup (#858)585e7adpublish: preflight hub auth before tagging (#866)- See full diff in compare view
Updates @tailwindcss/vite from 4.1.18 to 4.2.0
▶Release notes
Sourced from @tailwindcss/vite's releases.
v4.2.0
Added
- Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
- Add
@tailwindcss/webpackpackage to run Tailwind CSS as a webpack plugin (#19610)- Add
pbs-*andpbe-*utilities forpadding-block-startandpadding-block-end(#19601)- Add
mbs-*andmbe-*utilities formargin-block-startandmargin-block-end(#19601)- Add
scroll-pbs-*andscroll-pbe-*utilities forscroll-padding-block-startandscroll-padding-block-end(#19601)- Add
scroll-mbs-*andscroll-mbe-*utilities forscroll-margin-block-startandscroll-margin-block-end(#19601)- Add
border-bs-*andborder-be-*utilities forborder-block-startandborder-block-end(#19601)- Add
inline-*,min-inline-*,max-inline-*utilities forinline-size,min-inline-size, andmax-inline-size(#19612)- Add
block-*,min-block-*,max-block-*utilities forblock-size,min-block-size, andmax-block-size(#19612)- Add
inset-s-*,inset-e-*,inset-bs-*,inset-be-*utilities forinset-inline-start,inset-inline-end,inset-block-start, andinset-block-end(#19613)- Add
font-features-*utility forfont-feature-settings(#19623)Fixed
- Prevent double
@supportswrapper forcolor-mixvalues (#19450)- Allow whitespace around
@source inline()argument (#19461)- Emit comment when source maps are saved to files when using
@tailwindcss/cli(#19447)- Detect utilities containing capital letters followed by numbers (#19465)
- Fix class extraction for Rails' strict locals (#19525)
- Align
@utilityname validation with Oxide scanner rules (#19524)- Fix infinite loop when using
@variantinside@custom-variant(#19633)- Allow multiples of
.25inaspect-*fractions (e.g.aspect-8.5/11) (#19688)- Ensure changes to external files listed via
@sourcetrigger a full page reload when using@tailwindcss/vite(#19670)- Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
- Ensure import aliases in Astro v5 work without crashing when using
@tailwindcss/vite(#19677)- Allow escape characters in
@utilitynames to improve support with formatters such as Biome (#19626)- Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
- Add
.jjto default ignored content directories (#19687)Deprecated
- Deprecate
start-*andend-*utilities in favor ofinset-s-*andinset-e-*utilities (#19613)
▶Changelog
Sourced from @tailwindcss/vite's changelog.
[4.2.0] - 2026-02-18
Added
- Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
- Add
@tailwindcss/webpackpackage to run Tailwind CSS as a webpack plugin (#19610)- Add
pbs-*andpbe-*utilities forpadding-block-startandpadding-block-end(#19601)- Add
mbs-*andmbe-*utilities formargin-block-startandmargin-block-end(#19601)- Add
scroll-pbs-*andscroll-pbe-*utilities forscroll-padding-block-startandscroll-padding-block-end(#19601)- Add
scroll-mbs-*andscroll-mbe-*utilities forscroll-margin-block-startandscroll-margin-block-end(#19601)- Add
border-bs-*andborder-be-*utilities forborder-block-startandborder-block-end(#19601)- Add
inline-*,min-inline-*,max-inline-*utilities forinline-size,min-inline-size, andmax-inline-size(#19612)- Add
block-*,min-block-*,max-block-*utilities forblock-size,min-block-size, andmax-block-size(#19612)- Add
inset-s-*,inset-e-*,inset-bs-*,inset-be-*utilities forinset-inline-start,inset-inline-end,inset-block-start, andinset-block-end(#19613)- Add
font-features-*utility forfont-feature-settings(#19623)Fixed
- Prevent double
@supportswrapper forcolor-mixvalues (#19450)- Allow whitespace around
@source inline()argument (#19461)- Emit comment when source maps are saved to files when using
@tailwindcss/cli(#19447)- Detect utilities containing capital letters followed by numbers (#19465)
- Fix class extraction for Rails' strict locals (#19525)
- Align
@utilityname validation with Oxide scanner rules (#19524)- Fix infinite loop when using
@variantinside@custom-variant(#19633)- Allow multiples of
.25inaspect-*fractions (e.g.aspect-8.5/11) (#19688)- Ensure changes to external files listed via
@sourcetrigger a full page reload when using@tailwindcss/vite(#19670)- Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
- Ensure import aliases in Astro v5 work without crashing when using
@tailwindcss/vite(#19677)- Allow escape characters in
@utilitynames to improve support with formatters such as Biome (#19626)- Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
- Add
.jjto default ignored content directories (#19687)Deprecated
- Deprecate
start-*andend-*utilities in favor ofinset-s-*andinset-e-*utilities (#19613)
▶Commits
1b164114.2.0 (#19695)d9fff9fdocs: update package README CI badge to main (#19692)bc6e4b8Fallback toconfig.createResolverforclientandssrenvironments in `@...f212b0ffix: restore full page reload for watched external files on Vite 7.1+ (#19670)8ed67bfFix Tailwind CSS package README GitHub links (#19644)e3e85b3[tailwindcss-vite] Add Register dependency messages logline (#19611)- See full diff in compare view
Updates @types/react from 19.2.13 to 19.2.14
▶Commits
- See full diff in compare view
Updates @vitejs/plugin-react from 5.1.3 to 5.1.4
▶Release notes
Sourced from @vitejs/plugin-react's releases.
[email protected]
Fix
canSkipBabelnot accounting forbabel.overrides(#1098)When configuring
babel.overrideswithout top-level plugins or presets, Babel was incorrectly skipped. ThecanSkipBabelfunction now checks foroverrides.lengthto ensure override configurations are processed.
▶Changelog
Sourced from @vitejs/plugin-react's changelog.
5.1.4 (2026-02-10)
Fix
canSkipBabelnot accounting forbabel.overrides(#1098)When configuring
babel.overrideswithout top-level plugins or presets, Babel was incorrectly skipped. ThecanSkipBabelfunction now checks foroverrides.lengthto ensure override configurations are processed.
▶Commits
f066114release: [email protected]e299dcafix(plugin-react):canSkipBabelnot checkingbabel.overrides(#1098)12ffadcfix(deps): update all non-major dependencies (#1103)- See full diff in compare view
Updates lucide-react from 0.563.0 to 0.575.0
▶Release notes
Sourced from lucide-react's releases.
Version 0.575.0
What's Changed
- feat(icons): added
message-square-checkicon by@karsa-mistmerein lucide-icons/lucide#4076- fix(lucide): Fix ESM Module output path in build by
@ericfennisin lucide-icons/lucide#4084- feat(icons): added
metronomeicon by@edwloefin lucide-icons/lucide#4063- fix(icons): remove execution permission of SVG files by
@duckafirein lucide-icons/lucide#4053- fix(icons): changed
file-pen-lineicon by@jguddasin lucide-icons/lucide#3970- feat(icons): added
square-arrow-right-exitandsquare-arrow-right-entericons by@EthanHazelin lucide-icons/lucide#3958- fix(icons): renamed
flip-*tosquare-centerline-dashed-*by@jguddasin lucide-icons/lucide#3945New Contributors
@edwloefmade their first contribution in lucide-icons/lucide#4063@duckafiremade their first contribution in lucide-icons/lucide#4053Full Changelog: https://github.com/lucide-icons/lucide/compare/0.573.0...0.575.0
Version 0.574.0
What's Changed
- fix(icons): changed
rocking-chairicon by@jamiemlawin lucide-icons/lucide#3445- fix(icons): flipped
coinsicon by@jguddasin lucide-icons/lucide#3158- feat(icons): added
x-line-topicon by@jguddasin lucide-icons/lucide#2838- feat(icons): added
mouse-lefticon by@marvfashin lucide-icons/lucide#2788- feat(icons): added
mouse-righticon by@marvfashin lucide-icons/lucide#2787New Contributors
@marvfashmade their first contribution in lucide-icons/lucide#2788Full Changelog: https://github.com/lucide-icons/lucide/compare/0.572.0...0.574.0
Version 0.573.0
What's Changed
- fix(icons): changed
rocking-chairicon by@jamiemlawin lucide-icons/lucide#3445- fix(icons): flipped
coinsicon by@jguddasin lucide-icons/lucide#3158- feat(icons): added
x-line-topicon by@jguddasin lucide-icons/lucide#2838- feat(icons): added
mouse-lefticon by@marvfashin lucide-icons/lucide#2788- feat(icons): added
mouse-righticon by@marvfashin lucide-icons/lucide#2787New Contributors
@marvfashmade their first contribution in lucide-icons/lucide#2788Full Changelog: https://github.com/lucide-icons/lucide/compare/0.572.0...0.573.0
Version 0.572.0
What's Changed
- feat(icons): added
message-circle-checkicon by@Shrinks99in lucide-icons/lucide#3770New Contributors
@Shrinks99made their first contribution in lucide-icons/lucide#3770Full Changelog: https://github.com/lucide-icons/lucide/compare/0.571.0...0.572.0
... (truncated)
▶Commits
- See full diff in compare view
Updates react-day-picker from 9.13.1 to 9.13.2
▶Release notes
Sourced from react-day-picker's releases.
v9.13.2
What's Changed
- fix(build): add correct type declaration for style.css export by
@NotNestorin gpbl/react-day-picker#2897- fix(locale): correct Northern Sami (se) and Japanese Hiragana (ja-Hira) labels by
@gpblin gpbl/react-day-picker#2898New Contributors
@NotNestormade their first contribution in gpbl/react-day-picker#2897Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.13.1...v9.13.2
▶Commits
38e1b27fix(locale): correct Northern Sami (se). and Japanese Hiragana (ja-Hira) labe...d68dc63build: bump v9.13.212cf80bfix: add correct type declaration for style.css export (#2897)- See full diff in compare view
Updates tailwind-merge from 3.4.0 to 3.5.0
▶Release notes
Sourced from tailwind-merge's releases.
v3.5.0
New Features
- Add support for Tailwind CSS v4.2 by
@dcastilin dcastil/tailwind-merge#651Full Changelog: https://github.com/dcastil/tailwind-merge/compare/v3.4.1...v3.5.0
Thanks to
@brandonmcconnell,@manavm1990,@langy,@roboflow,@syntaxfm,@getsentry,@codecov, a private sponsor,@block,@openclaw,@sourcegraphand more via@thnxdevfor sponsoring tailwind-merge! ❤️v3.4.1
Bug Fixes
- Prevent arbitrary font-family and font-weight from merging by
@roneymoonin dcastil/tailwind-merge#635Full Changelog: https://github.com/dcastil/tailwind-merge/compare/v3.4.0...v3.4.1
Thanks to
@brandonmcconnell,@manavm1990,@langy,@roboflow,@syntaxfm,@getsentry,@codecov, a private sponsor,@block,@openclaw,@sourcegraphand more via@thnxdevfor sponsoring tailwind-merge! ❤️
▶Commits
270ac79v3.5.086f772eadd changelog for 3.5.06c1f77cMerge pull request #651 from dcastil/feature/add-support-for-tailwind-css-v4.27a4cacfAdd support for decimal fraction values9ef0f79fix incorrectly escaped charactersf4938b0update README with v4.2 supportb02a572Add Tailwind v4.2 font-features utilities support5bd25ecAdd Tailwind v4.2 logical sizing utilities697c920Add Tailwind v4.2 logical border block utilities6656a47Improve JSDoc comments for logical insets- Additional commits viewable in compare view
Updates tailwindcss from 4.1.18 to 4.2.0
▶Release notes
Sourced from tailwindcss's releases.
v4.2.0
Added
- Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
- Add
@tailwindcss/webpackpackage to run Tailwind CSS as a webpack plugin (#19610)- Add
pbs-*andpbe-*utilities forpadding-block-startandpadding-block-end(#19601)- Add
mbs-*andmbe-*utilities formargin-block-startandmargin-block-end(#19601)- Add
scroll-pbs-*andscroll-pbe-*utilities forscroll-padding-block-startandscroll-padding-block-end(#19601)- Add
scroll-mbs-*andscroll-mbe-*utilities forscroll-margin-block-startandscroll-margin-block-end(#19601)- Add
border-bs-*andborder-be-*utilities forborder-block-startandborder-block-end(#19601)- Add
inline-*,min-inline-*,max-inline-*utilities forinline-size,min-inline-size, andmax-inline-size(#19612)- Add
block-*,min-block-*,max-block-*utilities forblock-size,min-block-size, andmax-block-size(#19612)- Add
inset-s-*,inset-e-*,inset-bs-*,inset-be-*utilities forinset-inline-start,inset-inline-end,inset-block-start, andinset-block-end(#19613)- Add
font-features-*utility forfont-feature-settings(#19623)Fixed
- Prevent double
@supportswrapper forcolor-mixvalues (#19450)- Allow whitespace around
@source inline()argument (#19461)- Emit comment when source maps are saved to files when using
@tailwindcss/cli(#19447)- Detect utilities containing capital letters followed by numbers (#19465)
- Fix class extraction for Rails' strict locals (#19525)
- Align
@utilityname validation with Oxide scanner rules (#19524)- Fix infinite loop when using
@variantinside@custom-variant(#19633)- Allow multiples of
.25inaspect-*fractions (e.g.aspect-8.5/11) (#19688)- Ensure changes to external files listed via
@sourcetrigger a full page reload when using@tailwindcss/vite(#19670)- Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
- Ensure import aliases in Astro v5 work without crashing when using
@tailwindcss/vite(#19677)- Allow escape characters in
@utilitynames to improve support with formatters such as Biome (#19626)- Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
- Add
.jjto default ignored content directories (#19687)Deprecated
- Deprecate
start-*andend-*utilities in favor ofinset-s-*andinset-e-*utilities (#19613)
▶Changelog
Sourced from tailwindcss's changelog.
[4.2.0] - 2026-02-18
Added
- Add mauve, olive, mist, and taupe color palettes to the default theme (#19627)
- Add
@tailwindcss/webpackpackage to run Tailwind CSS as a webpack plugin (#19610)- Add
pbs-*andpbe-*utilities forpadding-block-startandpadding-block-end(#19601)- Add
mbs-*andmbe-*utilities formargin-block-startandmargin-block-end(#19601)- Add
scroll-pbs-*andscroll-pbe-*utilities forscroll-padding-block-startandscroll-padding-block-end(#19601)- Add
scroll-mbs-*andscroll-mbe-*utilities forscroll-margin-block-startandscroll-margin-block-end(#19601)- Add
border-bs-*andborder-be-*utilities forborder-block-startandborder-block-end(#19601)- Add
inline-*,min-inline-*,max-inline-*utilities forinline-size,min-inline-size, andmax-inline-size(#19612)- Add
block-*,min-block-*,max-block-*utilities forblock-size,min-block-size, andmax-block-size(#19612)- Add
inset-s-*,inset-e-*,inset-bs-*,inset-be-*utilities forinset-inline-start,inset-inline-end,inset-block-start, andinset-block-end(#19613)- Add
font-features-*utility forfont-feature-settings(#19623)Fixed
- Prevent double
@supportswrapper forcolor-mixvalues (#19450)- Allow whitespace around
@source inline()argument (#19461)- Emit comment when source maps are saved to files when using
@tailwindcss/cli(#19447)- Detect utilities containing capital letters followed by numbers (#19465)
- Fix class extraction for Rails' strict locals (#19525)
- Align
@utilityname validation with Oxide scanner rules (#19524)- Fix infinite loop when using
@variantinside@custom-variant(#19633)- Allow multiples of
.25inaspect-*fractions (e.g.aspect-8.5/11) (#19688)- Ensure changes to external files listed via
@sourcetrigger a full page reload when using@tailwindcss/vite(#19670)- Improve performance of Oxide scanner in bigger projects by reducing file system walks (#19632)
- Ensure import aliases in Astro v5 work without crashing when using
@tailwindcss/vite(#19677)- Allow escape characters in
@utilitynames to improve support with formatters such as Biome (#19626)- Fix incorrect canonicalization results when canonicalizing multiple times (#19675)
- Add
.jjto default ignored content directories (#19687)Deprecated
- Deprecate
start-*andend-*utilities in favor ofinset-s-*andinset-e-*utilities (#19613)
▶Commits
1b164114.2.0 (#19695)6118f4fFix/misc docs and tests (#19652)5a4a7ebfix(canonicalize): prevent collapse cache pollution across calls (#19675)d0a5612Add mauve, olive, mist, and taupe color palettes (#19627)d9fff9fdocs: update package README CI badge to main (#19692)ed52d3efeat: handle backslash in@utilityname (#19626)6eb3b32Allow multiples of.25inaspect-*fractions (#19688)8ed67bfFix Tailwind CSS package README GitHub links (#19644)1638f35Bump dependencies (#19608)df96ea5Fix infinite loop when using@variantinside@custom-variantthat points ...- Additional commits viewable in compare view
▶Maintainer changes
This ver...
Description has been truncated