-
Notifications
You must be signed in to change notification settings - Fork 5
chore(deps): update all non-major dependencies (trpc) #190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
trpc
Choose a base branch
from
renovate/trpc-all-minor-patch
base: trpc
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+34
−34
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for GitHub.
|
85f9dad
to
91c808b
Compare
91c808b
to
a00d45e
Compare
a00d45e
to
fc66bfa
Compare
fc66bfa
to
44eadf3
Compare
44eadf3
to
5a7fbd3
Compare
5a7fbd3
to
9159bd5
Compare
9159bd5
to
82164b2
Compare
82164b2
to
0a9a6b2
Compare
0a9a6b2
to
9dfb514
Compare
9dfb514
to
435d996
Compare
435d996
to
5686e02
Compare
5686e02
to
80db77b
Compare
80db77b
to
8f3f502
Compare
8f3f502
to
6997b17
Compare
6997b17
to
77919d9
Compare
2da08c9
to
82b942e
Compare
82b942e
to
3ee864b
Compare
3ee864b
to
85bb389
Compare
85bb389
to
3325433
Compare
3325433
to
1717d3e
Compare
1717d3e
to
35f5149
Compare
35f5149
to
4767841
Compare
4767841
to
e8883d9
Compare
e8883d9
to
39cf873
Compare
39cf873
to
84a55c8
Compare
84a55c8
to
3b82784
Compare
3b82784
to
dd083fd
Compare
dd083fd
to
8eb7365
Compare
8eb7365
to
f8d7e24
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^19.6.1
->^19.8.1
^19.6.0
->^19.8.1
^4.4.1
->^4.7.0
^0.11.1
->^0.13.8
^4.0.3
->^4.1.16
^11.0.0-rc.700
->^11.6.0
^11.0.0-rc.700
->^11.6.0
^11.0.0-rc.700
->^11.6.0
22.7.5
->22.18.12
^19.0.8
->^19.2.2
^19.0.3
->^19.2.2
^8.22.0
->^8.46.2
^8.22.0
->^8.46.2
^19.0.0-beta-e552027-20250112
->^19.0.0-beta-ebf51a3-20250411
9.13.0
->9.38.0
15.0.1
->15.5.6
^10.0.1
->^10.1.8
^19.0.0-beta-e552027-20250112
->^19.0.0-beta-ebf51a3-20250411
^1.3.1
->^1.5.1
^15.4.3
->^15.5.2
0.474.0
->0.546.0
^15.2.0-canary.33
->^15.5.6
0.4.4
->0.4.6
>=22.13.0
->>=22.21.0
8.4.47
->8.5.6
^3.4.2
->^3.6.2
^0.6.11
->^0.7.1
^19.0.0
->^19.2.0
^19.0.0
->^19.2.0
^2.2.2
->^2.2.3
^3.0.1
->^3.3.1
^4.0.3
->^4.1.16
5.6.3
->5.9.3
^3.24.1
->^3.25.76
Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.8.1
Compare Source
Bug Fixes
v19.8.0
Compare Source
Performance Improvements
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
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 toimportOrder
) 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:
^
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 againstimport "not-server-only"
.// prettier-ignore
to stop sorting a particular import that would otherwise be sorted.Feedback on this feature is welcome.
Features
importOrderSafeSideEffects
option by @IanVS in IanVS#240Internal
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.6.3...v4.7.0
v4.6.3
Compare Source
What's Changed
Full Changelog: IanVS/prettier-plugin-sort-imports@4.6.2...v4.6.3
v4.6.2
Compare Source
What's Changed
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
#353
31202b8
Thanks @mmikhan! - feat: add Vite preset (https://vite.dev/guide/env-and-mode)#362
21d6d95
Thanks @mmikhan! - feat: add WXT preset (https://wxt.dev/guide/essentials/config/environment-variables.html#built-in-environment-variables)Updated dependencies [
31202b8
,21d6d95
]:v0.13.7
Compare Source
Patch Changes
#357
216bc2d
Thanks @juliusmarminge! - feat: add arktype presets#354
221bdb5
Thanks @mmikhan! - feat: add supabase vercel preset (https://vercel.com/marketplace/supabase)Updated dependencies [
216bc2d
,221bdb5
]:v0.13.6
Compare Source
Patch Changes
aa245ed
]:v0.13.5
Compare Source
Patch Changes
73e90f5
]:v0.13.4
Compare Source
Patch Changes
9872066
Thanks @juliusmarminge! - note: this release does not contain any changesUpdated dependencies [
9872066
]:v0.13.3
Compare Source
Patch Changes
#337
2231713
Thanks @juliusmarminge! - note: this release does not contain any changesUpdated dependencies [
2231713
]:v0.13.2
Compare Source
Patch Changes
#335
91db4ac
Thanks @juliusmarminge! - note: this release does not contain any new changesUpdated dependencies [
91db4ac
]:v0.13.1
Compare Source
Patch Changes
567491b
]:v0.13.0
Compare Source
Minor Changes
#313
35577fc
Thanks @EskiMojo14! - feat!: added ability to customise schema combinationCombination 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 signatureCreateEnv<TFinalSchema, TExtends>
, instead of the previousCreateEnv<TServer, TClient, TShared, TExtends>
.DefaultCombinedSchema<TServer, TClient, TShared>
as the type forTFinalSchema
.Patch Changes
35577fc
,00c35f2
]:v0.12.0
Compare Source
Minor Changes
#299
b13d46b
Thanks @EskiMojo14! - feat!: support standard schemaValidators can now be any validator that supports Standard Schema,
for example Zod & Valibot.
This feature comes with some breaking changes:
onValidationError
now getsStandardSchemaV1.Issue[]
instead ofZodError
#310
eb37304
Thanks @EskiMojo14! - feat!: add valibot presetsPresets using Valibot are now available using the
/presets-valibot
entrypoint.This feature comes with some breaking changes:
/presets-zod
.Patch Changes
b13d46b
,7c09bc3
,eb37304
,bb80923
,bb80923
]:tailwindlabs/tailwindcss (@tailwindcss/postcss)
v4.1.16
Compare Source
Fixed
&
(#19184)& > :pseudo
and& :pseudo
arbitrary variants (#19178)v4.1.15
Compare Source
Fixed
color-mix
fallback (#19069):deep
,:slotted
, and:global
(#19094)not-*
,has-*
, andin-*
(#19100)theme(…)
function (#19111)\t
is used in at-rules (#19130)0
values (#19095)break-words
towrap-break-word
(#19157)Changed
postinstall
script from oxide ([#19149])(#19149)v4.1.14
Compare Source
Fixed
'
syntax in ClojureScript when extracting classes (#18888)@variant
inside@custom-variant
(#18885)@utility
(#18900)grid-column
utilities when configuringgrid-column-start
orgrid-column-end
(#18907)grid-row
utilities when configuringgrid-row-start
orgrid-row-end
(#18907)default
export condition for@tailwindcss/vite
(#18948)@theme
produce no output when built (#18979)variant = 'outline'
during upgrades (#18922)className
is migrated (#19031)*ClassName
and*Class
attributes (#19031)v4.1.13
Compare Source
Changed
Fixed
visibility
when usingtransition
(#18795)matchVariant
values (#18798)clip
withclip-path
insr-only
(#18769)matchUtilities
(#18820).vercel
folders by default (can be overridden by@source …
rules) (#18855)@-
to be invalid (e.g.@-2xl:flex
) (#18869)-
or_
(#18867, #18872)aria
theme keys to@custom-variant
(#18815)data
theme keys to@custom-variant
(#18816)supports
theme keys to@custom-variant
(#18817)v4.1.12
Compare Source
Fixed
@apply
(#18404)flex-<number>
utilities (#18642))
from interfering with extraction in Clojure keywords (#18345)@plugin
and@config
(#18345)process.env.DEBUG
in@tailwindcss/node
(#18485)false
orundefined
properties (#18571)@tailwindcss/postcss
viatransformAssetUrls: false
(#18321)addEventListener
and JavaScript variable names (#18718)--border-color-*
theme keys individe-*
utilities for backwards compatibility (#18704).hdr
and.exr
files for classes by default (#18734)v4.1.11
Compare Source
Fixed
emit(…)
(#18330)--watch=always
in the CLI's usage (#18337)@tailwindcss/vite
(#18384)v4.1.10
Compare Source
Fixed
w-[calc(100%-var(--offset))]
) (#18289)v4.1.9
Compare Source
Fixed
/[0.16]
→/16
) (#18184)mb-[-32rem]
→-mb-128
) (#18212)blur
inwire:model.blur
(#18216)v4.1.8
Compare Source
Added
@apply
fails (#18059)Fixed
<style>
blocks (#18057, 18068)tailwindcss
in pnpm monorepos (#18065)order-none
toorder-0
(#18126)class:
attributes when extracting classes (#18093)-mt-[0px]
tomt-[0px]
instead of the other way around (#18154)\n
at the end of the file (#18155).pnpm-store
folders by default (can be overridden by@source …
rules) (#18163)toJSON()
(#18083)v4.1.7
Compare Source
Added
Fixed
_
before numbers during candidate extraction (#17961)@theme
and@utility
together (#17675)::before
and::after
pseudo selectors create valid CSS rules in production builds (#17979)-rotate-*
utilities properly negate arbitrary values (#18014):merge(…)
selectors in legacy JS plugins (#18020).
are properly extracted from Clojure files (#18038)@import … source(…)
(#17963)class
(#18025)v4.1.6
Compare Source
Added
h-[1lh]
toh-lh
) (#17831, #17854)@source
directives, discovered fConfiguration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.