Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: colinhacks/zod
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.23.3
Choose a base ref
...
head repository: colinhacks/zod
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.23.4
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Apr 23, 2024

  1. Add 3.23 announcement

    colinhacks committed Apr 23, 2024
    Copy the full SHA
    157b18d View commit details
  2. Revert change to default Input

    colinhacks committed Apr 23, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    aedf93f View commit details
  3. v3.23.4

    colinhacks committed Apr 23, 2024
    Copy the full SHA
    45107f7 View commit details
Showing with 7 additions and 3 deletions.
  1. +2 −0 README.md
  2. +2 −0 deno/lib/README.md
  3. +1 −1 deno/lib/types.ts
  4. +1 −1 package.json
  5. +1 −1 src/types.ts
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -37,6 +37,8 @@
<br/>
<br/>

> Zod 3.23 is out! View the [release notes](https://github.com/colinhacks/zod/releases/tag/v3.23.0).
> These docs have been translated into [Chinese](./README_ZH.md).
## Table of contents
2 changes: 2 additions & 0 deletions deno/lib/README.md
Original file line number Diff line number Diff line change
@@ -37,6 +37,8 @@
<br/>
<br/>

> Zod 3.23 is out! View the [release notes](https://github.com/colinhacks/zod/releases/tag/v3.23.0).
> These docs have been translated into [Chinese](./README_ZH.md).
## Table of contents
2 changes: 1 addition & 1 deletion deno/lib/types.ts
Original file line number Diff line number Diff line change
@@ -168,7 +168,7 @@ export type SafeParseReturnType<Input, Output> =
export abstract class ZodType<
Output = any,
Def extends ZodTypeDef = ZodTypeDef,
Input = any
Input = Output
> {
readonly _type!: Output;
readonly _output!: Output;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zod",
"version": "3.23.3",
"version": "3.23.4",
"author": "Colin McDonnell <colin@colinhacks.com>",
"repository": {
"type": "git",
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -168,7 +168,7 @@ export type SafeParseReturnType<Input, Output> =
export abstract class ZodType<
Output = any,
Def extends ZodTypeDef = ZodTypeDef,
Input = any
Input = Output
> {
readonly _type!: Output;
readonly _output!: Output;