PR #97 opened: chore(deps): bump the minor-and-patch group with 10 updates
Bumps the minor-and-patch group with 10 updates:
| Package | From | To |
|---|---|---|
| @sentry/react | 10.43.0 | 10.45.0 |
| @stripe/stripe-js | 8.9.0 | 8.11.0 |
| @tailwindcss/vite | 4.2.1 | 4.2.2 |
| pusher-js | 8.4.0 | 8.4.3 |
| tailwindcss | 4.2.1 | 4.2.2 |
| typescript-eslint | 8.57.0 | 8.57.1 |
| @rollup/rollup-linux-x64-gnu | 4.59.0 | 4.60.0 |
| @rollup/rollup-win32-x64-msvc | 4.59.0 | 4.60.0 |
| @tailwindcss/oxide-linux-x64-gnu | 4.2.1 | 4.2.2 |
| @tailwindcss/oxide-win32-x64-msvc | 4.2.1 | 4.2.2 |
Updates @sentry/react from 10.43.0 to 10.45.0
▶Release notes
Sourced from @sentry/react's releases.
10.45.0
Important Changes
feat(remix): Server Timing Headers Trace Propagation (#18653)
The Remix SDK now supports automatic trace propagation via
Server-Timingresponse headers to continue pageload traces on the client side. This means, you no longer have to define a custommetafunction to add Sentry<meta>tags to your page as previously. We'll update out Remix tracing docs after this release.Other Changes
- fix(cloudflare): Use correct env types for
withSentry(#19836)- fix(core): Align error span status message with core
SpanStatusTypefor langchain/google-genai (#19863)- fix(deno): Clear pre-existing OTel global before registering TracerProvider (#19723)
- fix(nextjs): Skip tracing for tunnel requests (#19861)
- fix(node-core): Recycle propagationContext for each request (#19835)
- ref(core): Simplify core utility functions for smaller bundle (#19854)
- chore(deps): bump next from 16.1.5 to 16.1.7 in /dev-packages/e2e-tests/test-applications/nextjs-16 (#19851)
- ci(release): Switch from action-prepare-release to Craft (#18763)
- fix(deps): bump devalue 5.6.3 to 5.6.4 to fix CVE-2026-30226 (#19849)
- fix(deps): bump file-type to 21.3.2 and
@nestjs/commonto 11.1.17 (#19847)- fix(deps): bump flatted 3.3.1 to 3.4.2 to fix CVE-2026-32141 (#19842)
- fix(deps): bump hono 4.12.5 to 4.12.7 in cloudflare-hono E2E test app (#19850)
- fix(deps): bump next to 15.5.13/16.1.7 to fix CVE-2026-1525, CVE-202-33036 and related (#19870)
- fix(deps): bump tar 7.5.10 to 7.5.11 to fix CVE-2026-31802 (#19846)
- fix(deps): bump undici 6.23.0 to 6.24.1 to fix multiple CVEs (#19841)
- fix(deps): bump unhead 2.1.4 to 2.1.12 to fix CVE-2026-31860 and CVE-2026-31873 (#19848)
- test(nextjs): Skip broken ISR tests (#19871)
- test(react): Add gql tests for react router (#19844)
Bundle size 📦
Path Size @sentry/browser24.93 KB @sentry/browser- with treeshaking flags23.47 KB @sentry/browser(incl. Tracing)41.51 KB @sentry/browser(incl. Tracing, Profiling)46.07 KB @sentry/browser(incl. Tracing, Replay)79.41 KB @sentry/browser(incl. Tracing, Replay) - with treeshaking flags69.22 KB @sentry/browser(incl. Tracing, Replay with Canvas)84 KB @sentry/browser(incl. Tracing, Replay, Feedback)95.97 KB @sentry/browser(incl. Feedback)41.35 KB @sentry/browser(incl. sendFeedback)29.49 KB
... (truncated)
▶Changelog
Sourced from @sentry/react's changelog.
10.45.0
Important Changes
feat(remix): Server Timing Headers Trace Propagation (#18653)
The Remix SDK now supports automatic trace propagation via
Server-Timingresponse headers to continue pageload traces on the client side. This means, you no longer have to define a custommetafunction to add Sentry<meta>tags to your page as previously. We'll update out Remix tracing docs after this release.Other Changes
- fix(cloudflare): Use correct env types for
withSentry(#19836)- fix(core): Align error span status message with core
SpanStatusTypefor langchain/google-genai (#19863)- fix(deno): Clear pre-existing OTel global before registering TracerProvider (#19723)
- fix(nextjs): Skip tracing for tunnel requests (#19861)
- fix(node-core): Recycle propagationContext for each request (#19835)
- ref(core): Simplify core utility functions for smaller bundle (#19854)
- chore(deps): bump next from 16.1.5 to 16.1.7 in /dev-packages/e2e-tests/test-applications/nextjs-16 (#19851)
- ci(release): Switch from action-prepare-release to Craft (#18763)
- fix(deps): bump devalue 5.6.3 to 5.6.4 to fix CVE-2026-30226 (#19849)
- fix(deps): bump file-type to 21.3.2 and
@nestjs/commonto 11.1.17 (#19847)- fix(deps): bump flatted 3.3.1 to 3.4.2 to fix CVE-2026-32141 (#19842)
- fix(deps): bump hono 4.12.5 to 4.12.7 in cloudflare-hono E2E test app (#19850)
- fix(deps): bump next to 15.5.13/16.1.7 to fix CVE-2026-1525, CVE-202-33036 and related (#19870)
- fix(deps): bump tar 7.5.10 to 7.5.11 to fix CVE-2026-31802 (#19846)
- fix(deps): bump undici 6.23.0 to 6.24.1 to fix multiple CVEs (#19841)
- fix(deps): bump unhead 2.1.4 to 2.1.12 to fix CVE-2026-31860 and CVE-2026-31873 (#19848)
- test(nextjs): Skip broken ISR tests (#19871)
- test(react): Add gql tests for react router (#19844)
10.44.0
Important Changes
feat(effect): Add
@sentry/effectSDK (Alpha) (#19644)This release introduces
@sentry/effect, a new SDK for Effect.ts applications. The SDK provides Sentry integration via composable Effect layers for both Node.js and browser environments.Compose the
effectLayerwith optional tracing, logging, and metrics layers to instrument your Effect application:import * as Sentry from '@sentry/effect'; import * as Layer from 'effect/Layer';
... (truncated)
▶Commits
ef79d28release: 10.45.028208bcMerge pull request #19877 from getsentry/prepare-release/10.45.02e2fd35meta(changelog): Update changelog for 10.45.079241b0fix(nextjs): Skip tracing for tunnel requests (#19861)938ab2dref(core): Simplify core utility functions for smaller bundle (#19854)3bb4325fix(core): Align error span status message with coreSpanStatusTypefor lan...3e5499afix(deps): bump next to 15.5.13/16.1.7 to fix CVE-2026-1525, CVE-202-33036 an...6f17b8afix(cloudflare): Use correct env types for withSentry (#19836)b4b9e71test(nextjs): Skip broken ISR tests (#19871)ae7206ffeat(remix): Server Timing Headers Trace Propagation (#18653)- Additional commits viewable in compare view
Updates @stripe/stripe-js from 8.9.0 to 8.11.0
▶Release notes
Sourced from @stripe/stripe-js's releases.
v8.11.0
New features
Fixes
Changed
- [Payment Form Element] Add paymentMethods and rename wallets to expressCheckout (#894)
v8.10.0
Changed
- update init method types (#887)
▶Commits
d7bbb14v8.11.0a83c054Revert "Set release train to dahlia and mark as release candidate (#893)" (#895)ec75ea6Set release train to dahlia and mark as release candidate (#893)e9508b4[Payment Form Element] Add paymentMethods and rename wallets to expressChecko...f80613fv8.10.07787461update init method types (#887)- See full diff in compare view
Updates @tailwindcss/vite from 4.2.1 to 4.2.2
▶Release notes
Sourced from @tailwindcss/vite's releases.
v4.2.2
Added
- Support Vite 8 in
@tailwindcss/vite(#19790)Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)
▶Changelog
Sourced from @tailwindcss/vite's changelog.
[4.2.2] - 2026-03-18
Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Add support for Vite 8 in
@tailwindcss/vite(#19790)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)- Resolve tsconfig paths to allow for
@import '@/path/to/file';when using@tailwindcss/vite(#19803)
▶Commits
Updates pusher-js from 8.4.0 to 8.4.3
▶Release notes
Sourced from pusher-js's releases.
v8.4.3
8.4.3
- [FIXED] Pin additional transitive dependencies to patched versions to resolve known vulnerabilities (express, qs, body-parser, lodash, minimatch, browserstack-local)
- [FIXED] Bump integration_tests_server express dependency to resolve CVEs
v8.4.2
8.4.2
- [CHANGED] Modernise release workflow: update action versions, replace deprecated flood-io/is-published-on-npm action with inline npm registry check
v8.4.1
8.4.1
- [FIXED] Pin transitive dependencies to patched versions to resolve known vulnerabilities (cipher-base, pbkdf2, sha.js, node-forge, js-yaml, compression, on-headers, tmp)
▶Changelog
Sourced from pusher-js's changelog.
8.4.3
- [FIXED] Pin additional transitive dependencies to patched versions to resolve known vulnerabilities (express, qs, body-parser, lodash, minimatch, browserstack-local)
- [FIXED] Bump integration_tests_server express dependency to resolve CVEs
8.4.2
- [CHANGED] Modernise release workflow: update action versions, replace deprecated flood-io/is-published-on-npm action with inline npm registry check
8.4.1
- [FIXED] Pin transitive dependencies to patched versions to resolve known vulnerabilities (cipher-base, pbkdf2, sha.js, node-forge, js-yaml, compression, on-headers, tmp)
▶Commits
cd9a22dMerge pull request #913 from pusher/security/cve-qs-express-fixese187cafFix Firefox CI test failures: xhr_polling with forceTLS=false054bd72Remove BrowserStack Safari dependency from CIf103608Fix Chrome CI test failures: xhr_streaming/xhr_polling with forceTLS=falseb19d431Pin additional transitive dependencies to resolve CVEs (v8.4.3)d4f84b9Merge pull request #912 from pusher/fix/modernise-release-workflow1dc7a87Modernise GitHub release workflowf71058cMerge pull request #905 from pusher/security/consolidate-dependabot-updates251a696fix: pin transitive security dependencies to patched versions- See full diff in compare view
Updates tailwindcss from 4.2.1 to 4.2.2
▶Release notes
Sourced from tailwindcss's releases.
v4.2.2
Added
- Support Vite 8 in
@tailwindcss/vite(#19790)Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)
▶Changelog
Sourced from tailwindcss's changelog.
[4.2.2] - 2026-03-18
Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Add support for Vite 8 in
@tailwindcss/vite(#19790)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)- Resolve tsconfig paths to allow for
@import '@/path/to/file';when using@tailwindcss/vite(#19803)
▶Commits
d596b0c4.2.2 (#19821)2228a57Bump Lightning CSS (#19771)f302fceFix canonicalization resulting in empty list (#19812)bb2f170Improve canonicalization for bare values exceeding default spacing scale sugg...faa5e88Cleanup inconsistencies related to (regex) escapes (#19804)d5717f2run prettier51aa9d7fix(canonicalize): handle utilities with empty property maps in collapse (#19...c586bd6Canonicalizecalc(var(--spacing)*…)expressions into--spacing(…)(#19769)9ded4a2Guard object lookups against inherited prototype properties (#19725)- See full diff in compare view
Updates typescript-eslint from 8.57.0 to 8.57.1
▶Release notes
Sourced from typescript-eslint's releases.
v8.57.1
8.57.1 (2026-03-16)
🩹 Fixes
- eslint-plugin: [prefer-optional-chain] no report for property on intersection type (#12126)
❤️ Thank You
- Newton Yuan
@NewtonYuanSee GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Changelog
Sourced from typescript-eslint's changelog.
8.57.1 (2026-03-16)
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
▶Commits
c7c38aachore(release): publish 8.57.1- See full diff in compare view
Updates @rollup/rollup-linux-x64-gnu from 4.59.0 to 4.60.0
▶Release notes
Sourced from @rollup/rollup-linux-x64-gnu's releases.
v4.60.0
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)v4.59.1
4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])- #6290: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6291: chore(deps): update dependency
@shikijs/vitepress-twoslashto v4 (@renovate[bot])- #6292: chore(deps): lock file maintenance (
@renovate[bot])- #6297: chore(deps): update minor/patch updates (
@renovate[bot])- #6298: chore(deps): lock file maintenance (
@renovate[bot])- #6299: chore(deps): lock file maintenance (
@renovate[bot])- #6300: docs: update packagephobia link (
@bluwy)- #6301: chore(deps): update dependency lint-staged to ^16.3.3 (
@renovate[bot])- #6306: fix: fix chunk assignment for deoptimized module with dynamic import (
@JoaoBrlt,@lukastaegert)- #6307: chore(deps): update minor/patch updates (
@renovate[bot])- #6308: chore(deps): update dependency lru-cache to v11 (
@renovate[bot])- #6309: chore(deps): update dependency vite to v8 (
@renovate[bot])- #6310: chore(deps): lock file maintenance (
@renovate[bot])- #6311: chore(deps): lock file maintenance (
@renovate[bot])- #6312: chore(deps): lock file maintenance (
@renovate[bot])
▶Changelog
Sourced from @rollup/rollup-linux-x64-gnu's changelog.
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])- #6290: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6291: chore(deps): update dependency
@shikijs/vitepress-twoslashto v4 (@renovate[bot])- #6292: chore(deps): lock file maintenance (
@renovate[bot])- #6297: chore(deps): update minor/patch updates (
@renovate[bot])- #6298: chore(deps): lock file maintenance (
@renovate[bot])- #6299: chore(deps): lock file maintenance (
@renovate[bot])- #6300: docs: update packagephobia link (
@bluwy)- #6301: chore(deps): update dependency lint-staged to ^16.3.3 (
@renovate[bot])- #6306: fix: fix chunk assignment for deoptimized module with dynamic import (
@JoaoBrlt,@lukastaegert)- #6307: chore(deps): update minor/patch updates (
@renovate[bot])- #6308: chore(deps): update dependency lru-cache to v11 (
@renovate[bot])- #6309: chore(deps): update dependency vite to v8 (
@renovate[bot])- #6310: chore(deps): lock file maintenance (
@renovate[bot])- #6311: chore(deps): lock file maintenance (
@renovate[bot])- #6312: chore(deps): lock file maintenance (
@renovate[bot])
▶Commits
6ecd69f4.60.06b725b9feat: external only Source Phase imports support (#6279)0cba9e04.59.14eeea29Pin Vite1cd49aefix: fix chunk assignment for deoptimized module with dynamic import (#6306)c9dabc3Downgrade Vited46200fchore(deps): update dependency vite to v8 (#6309)aa6c853chore(deps): update dependency lru-cache to v11 (#6308)4208811chore(deps): lock file maintenance (#6312)5348a82chore(deps): lock file maintenance (#6311)- Additional commits viewable in compare view
Updates @rollup/rollup-win32-x64-msvc from 4.59.0 to 4.60.0
▶Release notes
Sourced from @rollup/rollup-win32-x64-msvc's releases.
v4.60.0
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)v4.59.1
4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])- #6290: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6291: chore(deps): update dependency
@shikijs/vitepress-twoslashto v4 (@renovate[bot])- #6292: chore(deps): lock file maintenance (
@renovate[bot])- #6297: chore(deps): update minor/patch updates (
@renovate[bot])- #6298: chore(deps): lock file maintenance (
@renovate[bot])- #6299: chore(deps): lock file maintenance (
@renovate[bot])- #6300: docs: update packagephobia link (
@bluwy)- #6301: chore(deps): update dependency lint-staged to ^16.3.3 (
@renovate[bot])- #6306: fix: fix chunk assignment for deoptimized module with dynamic import (
@JoaoBrlt,@lukastaegert)- #6307: chore(deps): update minor/patch updates (
@renovate[bot])- #6308: chore(deps): update dependency lru-cache to v11 (
@renovate[bot])- #6309: chore(deps): update dependency vite to v8 (
@renovate[bot])- #6310: chore(deps): lock file maintenance (
@renovate[bot])- #6311: chore(deps): lock file maintenance (
@renovate[bot])- #6312: chore(deps): lock file maintenance (
@renovate[bot])
▶Changelog
Sourced from @rollup/rollup-win32-x64-msvc's changelog.
4.60.0
2026-03-22
Features
- Support source phase imports as long as they are external (#6279)
Pull Requests
- #6279: feat: external only Source Phase imports support (
@guybedford,@lukastaegert)4.59.1
2026-03-21
Bug Fixes
- Fix a crash when using lazy dynamic imports with moduleSideEffects:false (#6306)
Pull Requests
- #6281: fix(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6282: chore(deps): update github artifact actions (major) (
@renovate[bot],@lukastaegert)- #6283: chore(deps): update dependency nyc to v18 (
@renovate[bot],@lukastaegert)- #6284: fix(deps): update swc monorepo (major) (
@renovate[bot])- #6285: chore(deps): lock file maintenance (
@renovate[bot])- #6290: chore(deps): update minor/patch updates (
@renovate[bot],@lukastaegert)- #6291: chore(deps): update dependency
@shikijs/vitepress-twoslashto v4 (@renovate[bot])- #6292: chore(deps): lock file maintenance (
@renovate[bot])- #6297: chore(deps): update minor/patch updates (
@renovate[bot])- #6298: chore(deps): lock file maintenance (
@renovate[bot])- #6299: chore(deps): lock file maintenance (
@renovate[bot])- #6300: docs: update packagephobia link (
@bluwy)- #6301: chore(deps): update dependency lint-staged to ^16.3.3 (
@renovate[bot])- #6306: fix: fix chunk assignment for deoptimized module with dynamic import (
@JoaoBrlt,@lukastaegert)- #6307: chore(deps): update minor/patch updates (
@renovate[bot])- #6308: chore(deps): update dependency lru-cache to v11 (
@renovate[bot])- #6309: chore(deps): update dependency vite to v8 (
@renovate[bot])- #6310: chore(deps): lock file maintenance (
@renovate[bot])- #6311: chore(deps): lock file maintenance (
@renovate[bot])- #6312: chore(deps): lock file maintenance (
@renovate[bot])
▶Commits
6ecd69f4.60.06b725b9feat: external only Source Phase imports support (#6279)0cba9e04.59.14eeea29Pin Vite1cd49aefix: fix chunk assignment for deoptimized module with dynamic import (#6306)c9dabc3Downgrade Vited46200fchore(deps): update dependency vite to v8 (#6309)aa6c853chore(deps): update dependency lru-cache to v11 (#6308)4208811chore(deps): lock file maintenance (#6312)5348a82chore(deps): lock file maintenance (#6311)- Additional commits viewable in compare view
Updates @tailwindcss/oxide-linux-x64-gnu from 4.2.1 to 4.2.2
▶Release notes
Sourced from @tailwindcss/oxide-linux-x64-gnu's releases.
v4.2.2
Added
- Support Vite 8 in
@tailwindcss/vite(#19790)Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)
▶Changelog
Sourced from @tailwindcss/oxide-linux-x64-gnu's changelog.
[4.2.2] - 2026-03-18
Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Add support for Vite 8 in
@tailwindcss/vite(#19790)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)- Resolve tsconfig paths to allow for
@import '@/path/to/file';when using@tailwindcss/vite(#19803)
▶Commits
d596b0c4.2.2 (#19821)- See full diff in compare view
Updates @tailwindcss/oxide-win32-x64-msvc from 4.2.1 to 4.2.2
▶Release notes
Sourced from @tailwindcss/oxide-win32-x64-msvc's releases.
v4.2.2
Added
- Support Vite 8 in
@tailwindcss/vite(#19790)Fixed
- Don't crash when candidates contain prototype properties like
row-constructor(#19725)- Canonicalize
calc(var(--spacing)*…)expressions into--spacing(…)(#19769)- Fix crash in canonicalization step when handling utilities containing
@propertyat-rules (e.g.shadow-sm border) (#19727)- Skip full reload for server only modules scanned by client CSS when using
@tailwindcss/vite(#19745)- Improve canonicalization for bare values exceeding default spacing scale suggestions (e.g.
w-1234 h-1234→size-1234) (#19809)- Fix canonicalization resulting in empty list (e.g.
w-5 h-5 size-5→''instead ofsize-5) (#19812)