-
-
Notifications
You must be signed in to change notification settings - Fork 14
chore(deps): update dependencies #336
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
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 4dd2f4f The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Comment |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
|
All alerts resolved. Learn more about Socket for GitHub. This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
3adf196 to
4a6d6da
Compare
b681d28 to
2627eac
Compare
0bbf7dc to
6af71be
Compare
This PR contains the following updates:
0.13.8→0.13.1024.10.1→24.10.80.38.36→0.38.374.0.13→4.0.140.555.0→0.562.019.2.1→19.2.319.2.1→19.2.38.18.3→8.19.04.1.13→4.3.5Release Notes
t3-oss/t3-env (@t3-oss/env-nextjs)
v0.13.10Compare Source
Patch Changes
a778bf3]:v0.13.9Compare Source
Patch Changes
5987d5a]:discordjs/discord-api-types (discord-api-types)
v0.38.37Compare Source
fuma-nama/fumadocs (fumadocs-typescript)
v4.0.14Compare Source
Patch Changes
f728e67: Support customising full type with@fumadocsTypetagda87713]d17499b]lucide-icons/lucide (lucide-react)
v0.562.0Compare Source
v0.561.0: Version 0.561.0Compare Source
What's Changed
stoneicon by @Alportan in #3850Full Changelog: lucide-icons/lucide@0.560.0...0.561.0
v0.560.0: Version 0.560.0Compare Source
What's Changed
cannabis-officon by @NickVeles in #3748New Contributors
Full Changelog: lucide-icons/lucide@0.559.0...0.560.0
v0.559.0: Version 0.559.0Compare Source
What's Changed
fishing-hookicon by @7ender in #3837New Contributors
Full Changelog: lucide-icons/lucide@0.558.0...0.559.0
v0.558.0: Version 0.558.0Compare Source
What's Changed
hdicon by @jamiemlaw in #2958Full Changelog: lucide-icons/lucide@0.557.0...0.558.0
v0.557.0: Version 0.557.0Compare Source
What's Changed
memory-stickicon by @karsa-mistmere in #3017microchipicon by @karsa-mistmere in #3018paint-bucketicon by @jguddas in #3865brush-cleaningicon by @jguddas in #3863thumbs-upthumbs-downpaths to fix fill issue by @theianjones in #3873ticketsicon by @karsa-mistmere in #3859layers-plusicon by @juanisidoro in #3367search-erroricon by @Veatec22 in #3292cloud-syncandcloud-backupby @ericfennis in #3466circle-pileicon by @nathan-de-pachtere in #3681balloonicon by @peteruithoven in #2519New Contributors
Full Changelog: lucide-icons/lucide@0.556.0...0.557.0
v0.556.0: Version 0.556.0Compare Source
What's Changed
book-searchicon (#3573) by @Muhammad-Aqib-Bashir in #3580scootericon by @Ahmed-Dghaies in #3818plugicon by @jamiemlaw in #3841thermometer-sunicon by @jguddas in #3773estimated-weighticon by @nathan-de-pachtere in #3822flashlighticons by @jamiemlaw in #3843bubblesicon by @jguddas in #3774vanicon by @Ahmed-Dghaies in #3821New Contributors
Full Changelog: lucide-icons/lucide@0.555.0...0.556.0
facebook/react (react)
v19.2.3: 19.2.3 (December 11th, 2025)Compare Source
React Server Components
v19.2.2: 19.2.2 (December 11th, 2025)Compare Source
React Server Components
react-server-dom-webpack/*.unbundledto privatereact-server-dom-unbundled(@eps1lon #35290)websockets/ws (ws)
v8.19.0Compare Source
Features
closeTimeoutoption (#2308).Bug fixes
1998485).colinhacks/zod (zod)
v4.3.5Compare Source
Commits:
21afffd[Docs] Update migration guide docs for deprecation of message (#5595)e36743eImprove mini treeshaking0cdc0b84.3.5v4.3.4Compare Source
Commits:
1a8bea3Add integration testse01cd02Support patternProperties for looserecord (#5592)089e5fbImprove looseRecord docsdecef9cFix lint9443aabDrop iso time in fromJSONSchema66bda74Remove .refine() from ZodMiniTypeb4ab94c4.3.4v4.3.3Compare Source
v4.3.2Compare Source
v4.3.1Compare Source
Commits:
0fe8840allow non-overwriting extends with refinements. 4.3.1v4.3.0Compare Source
This is Zod's biggest release since 4.0. It addresses several of Zod's longest-standing feature requests.
z.fromJSONSchema()Convert JSON Schema to Zod (#5534, #5586)
You can now convert JSON Schema definitions directly into Zod schemas. This function supports JSON Schema
"draft-2020-12","draft-7","draft-4", and OpenAPI 3.0.The API should be considered experimental. There are no guarantees of 1:1 "round-trip soundness":
MySchema>z.toJSONSchema()>z.fromJSONSchema(). There are several features of Zod that don't exist in JSON Schema and vice versa, which makes this virtually impossible.Features supported:
string,number,integer,boolean,null,object,array)email,uri,uuid,date-time,date,time,ipv4,ipv6, and more)anyOf,oneOf,allOf)additionalProperties,patternProperties,propertyNames)prefixItems,items,minItems,maxItems)$reffor local references and circular schemasz.xor()— exclusive union (#5534)A new exclusive union type that requires exactly one option to match. Unlike
z.union()which passes if any option matches,z.xor()fails if zero or more than one option matches.When converted to JSON Schema,
z.xor()producesoneOfinstead ofanyOf.z.looseRecord()— partial record validation (#5534)A new record variant that only validates keys matching the key schema, passing through non-matching keys unchanged. This is used to represent
patternPropertiesin JSON Schema..exactOptional()— strict optional properties (#5589)A new wrapper that makes a property key-optional (can be omitted) but does not accept
undefinedas an explicit value.This makes it possible to accurately represent the full spectrum of optionality expressible using
exactOptionalPropertyTypes..apply()A utility method for applying arbitrary transformations to a schema, enabling cleaner schema composition. (#5463)
.brand()cardinalityThe
.brand()method now accepts a second argument to control whether the brand applies to input, output, or both. Closes #4764, #4836.Type predicates on
.refine()(#5575)The
.refine()method now supports type predicates to narrow the output type:ZodMapmethods:min,max,nonempty,size(#5316)ZodMapnow has parity withZodSetandZodArray:.with()alias for.check()(359c0db)A new
.with()method has been added as a more readable alias for.check(). Over time, more APIs have been added that don't qualify as "checks". The new method provides a readable alternative that doesn't muddy semantics.z.slugify()transformTransform strings into URL-friendly slugs. Works great with
.with():z.meta()andz.describe()in Zod Mini (947b4eb)Zod Mini now exports
z.meta()andz.describe()as top-level functions for adding metadata to schemas:New locales
am) (#5531)uz) (#5519)Bug fixes
All of these changes fix soundness issues in Zod. As with any bug fix there's some chance of breakage if you were intentionally or unintentionally relying on this unsound behavior.
.pick()and.omit()disallowed on object schemas containing refinements (#5317)Using
.pick()or.omit()on object schemas with refinements now throws an error. Previously, this would silently drop the refinements, leading to unexpected behavior.Migration: The easiest way to migrate is to create a new schema using the
shapeof the old one..extend()disallowed on refined schemas (#5317)Similarly,
.extend()now throws on schemas with refinements. Use.safeExtend()if you need to extend refined schemas.Object masking methods (
.pick(),.omit()) now validate that the keys provided actually exist in the schema:Additional changes
z.iso.timewith minute precision (#5557)includesmethod params typing to acceptstring | $ZodCheckIncludesParams(#5556)implementAsyncinferred type to always be a promise (#5476)Dateinstances to numbers inminimum/maximumchecks (#5351)z.record()(#5585)~standardschema property (#5363)@__NO_SIDE_EFFECTS__for better tree-shaking (#5475)v4.2.1Compare Source
v4.2.0Compare Source
Features
Implement Standard JSON Schema
standard-schema/standard-schema#134
Implement
z.fromJSONSchema()Implement
z.xor()Implement
z.looseRecord()Commits:
af49c08Update docs for JSON Schema conversion ofz.undefined()(#5504)767f320Add.toJSONSchema()method (#5477)e17dcb6Addz.fromJSONSchema(),z.looseRecord(),z.xor()(#5534)Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 12:59 AM, every 7 days ( * 0 */7 * * ) (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.