Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 25, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@commitlint/cli (source) ^19.6.1 -> ^19.8.1 age confidence devDependencies minor
@commitlint/config-conventional (source) ^19.6.0 -> ^19.8.1 age confidence devDependencies minor
@ianvs/prettier-plugin-sort-imports ^4.4.1 -> ^4.7.0 age confidence devDependencies minor
@t3-oss/env-nextjs (source) ^0.11.1 -> ^0.13.8 age confidence dependencies minor
@tailwindcss/postcss (source) ^4.0.3 -> ^4.1.16 age confidence devDependencies minor
@trpc/client (source) ^11.0.0-rc.700 -> ^11.6.0 age confidence dependencies minor
@trpc/react-query (source) ^11.0.0-rc.700 -> ^11.6.0 age confidence dependencies minor
@trpc/server (source) ^11.0.0-rc.700 -> ^11.6.0 age confidence dependencies minor
@types/node (source) 22.7.5 -> 22.18.12 age confidence devDependencies minor
@types/react (source) ^19.0.8 -> ^19.2.2 age confidence devDependencies minor
@types/react-dom (source) ^19.0.3 -> ^19.2.2 age confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) ^8.22.0 -> ^8.46.2 age confidence devDependencies minor
@typescript-eslint/parser (source) ^8.22.0 -> ^8.46.2 age confidence devDependencies minor
babel-plugin-react-compiler (source) ^19.0.0-beta-e552027-20250112 -> ^19.0.0-beta-ebf51a3-20250411 age confidence devDependencies patch
eslint (source) 9.13.0 -> 9.38.0 age confidence devDependencies minor
eslint-config-next (source) 15.0.1 -> 15.5.6 age confidence devDependencies minor
eslint-config-prettier ^10.0.1 -> ^10.1.8 age confidence devDependencies minor
eslint-plugin-react-compiler (source) ^19.0.0-beta-e552027-20250112 -> ^19.0.0-beta-ebf51a3-20250411 age confidence devDependencies patch
geist (source) ^1.3.1 -> ^1.5.1 age confidence dependencies minor
lint-staged ^15.4.3 -> ^15.5.2 age confidence devDependencies minor
lucide-react (source) 0.474.0 -> 0.546.0 age confidence dependencies minor
next (source) ^15.2.0-canary.33 -> ^15.5.6 age confidence dependencies minor
next-themes 0.4.4 -> 0.4.6 age confidence dependencies patch
node (source) >=22.13.0 -> >=22.21.0 age confidence engines minor
postcss (source) 8.4.47 -> 8.5.6 age confidence devDependencies minor
prettier (source) ^3.4.2 -> ^3.6.2 age confidence devDependencies minor
prettier-plugin-tailwindcss ^0.6.11 -> ^0.7.1 age confidence devDependencies minor
react (source) ^19.0.0 -> ^19.2.0 age confidence dependencies minor
react-dom (source) ^19.0.0 -> ^19.2.0 age confidence dependencies minor
superjson ^2.2.2 -> ^2.2.3 age confidence dependencies patch
tailwind-merge ^3.0.1 -> ^3.3.1 age confidence dependencies minor
tailwindcss (source) ^4.0.3 -> ^4.1.16 age confidence devDependencies minor
typescript (source) 5.6.3 -> 5.9.3 age confidence devDependencies minor
zod (source) ^3.24.1 -> ^3.25.76 age confidence dependencies minor

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.1

Compare Source

Bug Fixes

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v19.8.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/config-conventional

v19.7.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

ianvs/prettier-plugin-sort-imports (@​ianvs/prettier-plugin-sort-imports)

v4.7.0

Compare Source

What's Changed

This project began as a fork because I wanted a plugin that would not move side-effect imports around and mess with my CSS cascade. So its first and most distinguishing feature is that side-effect imports do not move, and other imports are not sorted across them.

This works fine in most cases, but some people have side-effect imports that they know can be sorted safely. For those, there is now an "escape hatch" option named importOrderSafeSideEffects. It is an array of glob pattern strings (similar to importOrder) which, when they match against a side-effect import, allow that import to be sorted as if it were a standard import.

Suggestions for safe use:

  • Use ^ at the start of your pattern and $ at the end, to avoid accidentally matching part of an import name. For example, "^server-only$", to avoid matching against import "not-server-only".
  • Use extreme caution if matching against relative files or CSS files. If you decide to sort CSS imports and a file ever imports more than one CSS file, your cascade may change.
  • You can still use // prettier-ignore to stop sorting a particular import that would otherwise be sorted.

Feedback on this feature is welcome.

Features
Internal

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.3...v4.7.0

v4.6.3

Compare Source

What's Changed

  • Revert "fix: conditionally register ember and oxc parsers when depend… by @​IanVS in IanVS#237

Full Changelog: IanVS/prettier-plugin-sort-imports@4.6.2...v4.6.3

v4.6.2

Compare Source

What's Changed

  • fix: conditionally register ember and oxc parsers when dependencies available by @​jahands in IanVS#234

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.1...4.6.2

v4.6.1

Compare Source

What's Changed

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.0...v4.6.1

v4.6.0

Compare Source

What's Changed

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.1...v4.6.0

v4.5.1

Compare Source

What's Changed

Fixes
Internal

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.5.0...v4.5.1

v4.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.2...v4.5.0

v4.4.2

Compare Source

What's Changed

New Contributors

Full Changelog: IanVS/prettier-plugin-sort-imports@v4.4.1...v4.4.2

t3-oss/t3-env (@​t3-oss/env-nextjs)

v0.13.8

Compare Source

Patch Changes

v0.13.7

Compare Source

Patch Changes

v0.13.6

Compare Source

Patch Changes

v0.13.5

Compare Source

Patch Changes

v0.13.4

Compare Source

Patch Changes

v0.13.3

Compare Source

Patch Changes

v0.13.2

Compare Source

Patch Changes

v0.13.1

Compare Source

Patch Changes

v0.13.0

Compare Source

Minor Changes
  • #​313 35577fc Thanks @​EskiMojo14! - feat!: added ability to customise schema combination

    Combination of schemas can now be customised using the createFinalSchema option. This allows further refinement or transformation of the environment variables.

    For 99% of users, this is a non-breaking change. If you were relying on internal types, there's a type-only breaking change:

    • CreateEnv now has the signature CreateEnv<TFinalSchema, TExtends>, instead of the previous CreateEnv<TServer, TClient, TShared, TExtends>.
      • Previous behaviour can be achieved by using DefaultCombinedSchema<TServer, TClient, TShared> as the type for TFinalSchema.
Patch Changes

v0.12.0

Compare Source

Minor Changes
  • #​299 b13d46b Thanks @​EskiMojo14! - feat!: support standard schema

    Validators can now be any validator that supports Standard Schema,
    for example Zod & Valibot.

    This feature comes with some breaking changes:

    • If using Zod, the minimum required version is now 3.24.
    • onValidationError now gets StandardSchemaV1.Issue[] instead of ZodError
  • #​310 eb37304 Thanks @​EskiMojo14! - feat!: add valibot presets

    Presets using Valibot are now available using the /presets-valibot entrypoint.

    This feature comes with some breaking changes:

    • Zod presets have now been moved to /presets-zod.
Patch Changes
tailwindlabs/tailwindcss (@​tailwindcss/postcss)

v4.1.16

Compare Source

Fixed
  • Discard candidates with an empty data type (#​19172)
  • Fix canonicalization of arbitrary variants with attribute selectors (#​19176)
  • Fix invalid colors due to nested & (#​19184)
  • Improve canonicalization for & > :pseudo and & :pseudo arbitrary variants (#​19178)

v4.1.15

Compare Source

Fixed
  • Fix Safari devtools rendering issue due to color-mix fallback (#​19069)
  • Suppress Lightning CSS warnings about :deep, :slotted, and :global (#​19094)
  • Fix resolving theme keys when starting with the name of another theme key in JS configs and plugins (#​19097)
  • Allow named groups in combination with not-*, has-*, and in-* (#​19100)
  • Prevent important utilities from affecting other utilities (#​19110)
  • Don’t index into strings with the theme(…) function (#​19111)
  • Fix parsing issue when \t is used in at-rules (#​19130)
  • Upgrade: Canonicalize utilities containing 0 values (#​19095)
  • Upgrade: Migrate deprecated break-words to wrap-break-word (#​19157)
Changed

v4.1.14

Compare Source

Fixed
  • Handle ' syntax in ClojureScript when extracting classes (#​18888)
  • Handle @variant inside @custom-variant (#​18885)
  • Merge suggestions when using @utility (#​18900)
  • Ensure that file system watchers created when using the CLI are always cleaned up (#​18905)
  • Do not generate grid-column utilities when configuring grid-column-start or grid-column-end (#​18907)
  • Do not generate grid-row utilities when configuring grid-row-start or grid-row-end (#​18907)
  • Prevent duplicate CSS when overwriting a static utility with a theme key (#​18056)
  • Show Lightning CSS warnings (if any) when optimizing/minifying (#​18918)
  • Use default export condition for @tailwindcss/vite (#​18948)
  • Re-throw errors from PostCSS nodes (#​18373)
  • Detect classes in markdown inline directives (#​18967)
  • Ensure files with only @theme produce no output when built (#​18979)
  • Support Maud templates when extracting classes (#​18988)
  • Upgrade: Do not migrate variant = 'outline' during upgrades (#​18922)
  • Upgrade: Show version mismatch (if any) when running upgrade tool (#​19028)
  • Upgrade: Ensure first class inside className is migrated (#​19031)
  • Upgrade: Migrate classes inside *ClassName and *Class attributes (#​19031)

v4.1.13

Compare Source

Changed
  • Drop warning from browser build (#​18731)
  • Drop exact duplicate declarations when emitting CSS (#​18809)
Fixed
  • Don't transition visibility when using transition (#​18795)
  • Discard matched variants with unknown named values (#​18799)
  • Discard matched variants with non-string values (#​18799)
  • Show suggestions for known matchVariant values (#​18798)
  • Replace deprecated clip with clip-path in sr-only (#​18769)
  • Hide internal fields from completions in matchUtilities (#​18820)
  • Ignore .vercel folders by default (can be overridden by @source … rules) (#​18855)
  • Consider variants starting with @- to be invalid (e.g. @-2xl:flex) (#​18869)
  • Do not allow custom variants to start or end with a - or _ (#​18867, #​18872)
  • Upgrade: Migrate aria theme keys to @custom-variant (#​18815)
  • Upgrade: Migrate data theme keys to @custom-variant (#​18816)
  • Upgrade: Migrate supports theme keys to @custom-variant (#​18817)

v4.1.12

Compare Source

Fixed
  • Don't consider the global important state in @apply (#​18404)
  • Add missing suggestions for flex-<number> utilities (#​18642)
  • Fix trailing ) from interfering with extraction in Clojure keywords (#​18345)
  • Detect classes inside Elixir charlist, word list, and string sigils (#​18432)
  • Track source locations through @plugin and @config (#​18345)
  • Allow boolean values of process.env.DEBUG in @tailwindcss/node (#​18485)
  • Ignore consecutive semicolons in the CSS parser (#​18532)
  • Center the dropdown icon added to an input with a paired datalist by default (#​18511)
  • Extract candidates in Slang templates (#​18565)
  • Improve error messages when encountering invalid functional utility names (#​18568)
  • Discard CSS AST objects with false or undefined properties (#​18571)
  • Allow users to disable URL rebasing in @tailwindcss/postcss via transformAssetUrls: false (#​18321)
  • Fix false-positive migrations in addEventListener and JavaScript variable names (#​18718)
  • Fix Standalone CLI showing default Bun help when run via symlink on Windows (#​18723)
  • Read from --border-color-* theme keys in divide-* utilities for backwards compatibility (#​18704)
  • Don't scan .hdr and .exr files for classes by default (#​18734)

v4.1.11

Compare Source

Fixed
  • Add heuristic to skip candidate migrations inside emit(…) (#​18330)
  • Extract candidates with variants in Clojure/ClojureScript keywords (#​18338)
  • Document --watch=always in the CLI's usage (#​18337)
  • Add support for Vite 7 to @tailwindcss/vite (#​18384)

v4.1.10

Compare Source

Fixed
  • Fix incorrectly generated CSS when using percentages in arbitrary values with calc (e.g. w-[calc(100%-var(--offset))]) (#​18289)

v4.1.9

Compare Source

Fixed
  • Correctly parse custom properties with strings containing semicolons (#​18251)
  • Upgrade: Migrate arbitrary modifiers without percentage signs to bare values (e.g. /[0.16]/16) (#​18184)
  • Upgrade: Migrate CSS variable shorthands where fallback value contains function call (#​18184)
  • Upgrade: Migrate negative arbitrary values to negative bare values (e.g. mb-[-32rem]-mb-128) (#​18212)
  • Upgrade: Do not migrate blur in wire:model.blur (#​18216)
  • Don't add spaces around CSS dashed idents when formatting math expressions (#​18220)

v4.1.8

Compare Source

Added
  • Improve error messages when @apply fails (#​18059)
Fixed
  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#​18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#​18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#​18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#​18126)
  • Support Leptos class: attributes when extracting classes (#​18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#​18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#​18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#​18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#​18163)
  • Fix PostCSS crash when calling toJSON() (#​18083)

v4.1.7

Compare Source

Added
  • Upgrade: Migrate bare values to named values (#​18000)
  • Upgrade: Added cache to improve template migration performance (#​18025)
Fixed
  • Allow _ before numbers during candidate extraction (#​17961)
  • Prevent duplicate suggestions when using @theme and @utility together (#​17675)
  • Ensure that media queries within ::before and ::after pseudo selectors create valid CSS rules in production builds (#​17979)
  • Ensure that the standalone CLI does not leave temporary files behind (#​17981)
  • Ensure -rotate-* utilities properly negate arbitrary values (#​18014)
  • Ignore custom variants using :merge(…) selectors in legacy JS plugins (#​18020)
  • Ensure classes containing . are properly extracted from Clojure files (#​18038)
  • Upgrade: Fix error when using @import … source(…) (#​17963)
  • Upgrade: Change casing of utilities with named values to kebab-case to match updated theme variables (#​18017)
  • Upgrade: Don't migrate strings that match utility names in Vue attribute bindings other than class (#​18025)

v4.1.6

Compare Source

Added
  • Upgrade: Automatically convert arbitrary values to named values when possible (e.g. h-[1lh] to h-lh) (#​17831, #​17854)
  • Upgrade: Update dependencies in parallel for improved performance (#​17898)
  • Add detailed logging about @source directives, discovered f

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 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.

@vercel
Copy link

vercel bot commented Aug 25, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
nextjs-template Error Error Oct 23, 2025 1:04pm

@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 85f9dad to 91c808b Compare August 25, 2025 10:59
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 91c808b to a00d45e Compare August 25, 2025 23:11
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from a00d45e to fc66bfa Compare August 26, 2025 18:05
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from fc66bfa to 44eadf3 Compare August 26, 2025 23:15
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 44eadf3 to 5a7fbd3 Compare August 27, 2025 16:00
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 5a7fbd3 to 9159bd5 Compare August 27, 2025 21:47
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 9159bd5 to 82164b2 Compare August 28, 2025 16:53
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 82164b2 to 0a9a6b2 Compare August 31, 2025 09:03
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 0a9a6b2 to 9dfb514 Compare September 6, 2025 18:51
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 9dfb514 to 435d996 Compare September 8, 2025 18:16
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 435d996 to 5686e02 Compare September 9, 2025 09:03
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 5686e02 to 80db77b Compare September 10, 2025 21:53
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 80db77b to 8f3f502 Compare September 11, 2025 10:36
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 8f3f502 to 6997b17 Compare September 13, 2025 23:05
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 6997b17 to 77919d9 Compare September 15, 2025 20:13
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 2da08c9 to 82b942e Compare October 7, 2025 10:52
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 82b942e to 3ee864b Compare October 9, 2025 18:13
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 3ee864b to 85bb389 Compare October 11, 2025 17:42
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 85bb389 to 3325433 Compare October 13, 2025 18:15
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 3325433 to 1717d3e Compare October 14, 2025 15:56
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 1717d3e to 35f5149 Compare October 16, 2025 13:16
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 35f5149 to 4767841 Compare October 17, 2025 06:29
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 4767841 to e8883d9 Compare October 17, 2025 17:59
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from e8883d9 to 39cf873 Compare October 18, 2025 03:04
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 39cf873 to 84a55c8 Compare October 20, 2025 18:01
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 84a55c8 to 3b82784 Compare October 21, 2025 02:03
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from 3b82784 to dd083fd Compare October 22, 2025 01:04
@renovate renovate bot force-pushed the renovate/trpc-all-minor-patch branch from dd083fd to 8eb7365 Compare October 22, 2025 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants