Skip to content
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

⬆️ Update dependency zod to v3.23.8 - autoclosed #356

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 14, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
zod (source) 3.19.1 -> 3.23.8 age adoption passing confidence

Release Notes

colinhacks/zod (zod)

v3.23.8

Compare Source

Commits:

v3.23.7

Compare Source

v3.23.6

Compare Source

v3.23.5

Compare Source

v3.23.4

Compare Source

Commits:

v3.23.3

Compare Source

v3.23.2

Compare Source

Commits:

v3.23.1

Compare Source

v3.23.0

Compare Source

Zod 3.23 is now available. This is the final 3.x release before Zod 4.0. To try it out:

npm install zod

Features

z.string().date()

Zod can now validate ISO 8601 date strings. Thanks @​igalklebanov! https://github.com/colinhacks/zod/pull/1766

const schema = z.string().date();
schema.parse("2022-01-01"); // OK
z.string().time()

Zod can now validate ISO 8601 time strings. Thanks @​igalklebanov! https://github.com/colinhacks/zod/pull/1766

const schema = z.string().time();
schema.parse("12:00:00"); // OK

You can specify sub-second precision using the precision option:

const schema = z.string().time({ precision: 3 });
schema.parse("12:00:00.123"); // OK
schema.parse("12:00:00.123456"); // Error
schema.parse("12:00:00"); // Error
z.string().duration()

Zod can now validate ISO 8601 duration strings. Thanks @​mastermatt! https://github.com/colinhacks/zod/pull/3265

const schema = z.string().duration();
schema.parse("P3Y6M4DT12H30M5S"); // OK
Improvements to z.string().datetime()

Thanks @​bchrobot https://github.com/colinhacks/zod/pull/2522

You can now allow unqualified (timezone-less) datetimes using the local: true flag.

const schema = z.string().datetime({ local: true });
schema.parse("2022-01-01T12:00:00"); // OK

Plus, Zod now validates the day-of-month correctly to ensure no invalid dates (e.g. February 30th) pass validation. Thanks @​szamanr! https://github.com/colinhacks/zod/pull/3391

z.string().base64()

Zod can now validate base64 strings. Thanks @​StefanTerdell! https://github.com/colinhacks/zod/pull/3047

const schema = z.string().base64();
schema.parse("SGVsbG8gV29ybGQ="); // OK
Improved discriminated unions

The following can now be used as discriminator keys in z.discriminatedUnion():

  • ZodOptional
  • ZodNullable
  • ZodReadonly
  • ZodBranded
  • ZodCatch
const schema = z.discriminatedUnion("type", [
  z.object({ type: z.literal("A").optional(), value: z.number() }),
  z.object({ type: z.literal("B").nullable(), value: z.string() }),
  z.object({ type: z.literal("C").readonly(), value: z.boolean() }),
  z.object({ type: z.literal("D").brand<"D">(), value: z.boolean() }),
  z.object({ type: z.literal("E").catch("E"), value: z.unknown() }),
]);
Misc

Breaking changes

There are no breaking changes to the public API of Zod. However some changes can impact ecosystem tools that rely on Zod internals.

ZodFirstPartySchemaTypes

Three new types have been added to the ZodFirstPartySchemaTypes union. This may impact some codegen libraries. https://github.com/colinhacks/zod/pull/3247

+  | ZodPipeline<any, any>
+  | ZodReadonly<any>
+  | ZodSymbol;
Default generics in ZodType

The third argument of the ZodType base class now defaults to unknown. This makes it easier to define recursive schemas and write generic functions that accept Zod schemas.

- class ZodType<Output = any, Def extends ZodTypeDef = ZodTypeDef, Input = Output> {}
+ class ZodType<Output = unknown, Def extends ZodTypeDef = ZodTypeDef, Input = unknown> {}
Unrecognized keys in .pick() and .omit()

This version fixes a bug where unknown keys were accidentally accepted in .pick() and omit(). This has been fixed, which could cause compiler errors in some user code. https://github.com/colinhacks/zod/pull/3255

z.object({ 
  name: z.string() 
}).pick({
  notAKey: true // no longer allowed
})

Bugfixes and performance

Docs and ecosystem

New Contributors

Full Changelog: colinhacks/zod@v3.22.4...v3.23.0

v3.22.5

Compare Source

v3.22.4

Compare Source

Commits:

v3.22.3

Compare Source

Commits:

v3.22.2

Compare Source

Commits:

v3.22.1

Compare Source

Commits:

Fix handing of this in ZodFunction schemas. The parse logic for function schemas now requires the Reflect API.

const methodObject = z.object({
  property: z.number(),
  method: z.function().args(z.string()).returns(z.number()),
});
const methodInstance = {
  property: 3,
  method: function (s: string) {
    return s.length + this.property;
  },
};
const parsed = methodObject.parse(methodInstance);
parsed.method("length=8"); // => 11 (8 length + 3 property)

v3.22.0

Compare Source

ZodReadonly

This release introduces ZodReadonly and the .readonly() method on ZodType.

Calling .readonly() on any schema returns a ZodReadonly instance that wraps the original schema. The new schema parses all inputs using the original schema, then calls Object.freeze() on the result. The inferred type is also marked as readonly.

const schema = z.object({ name: string }).readonly();
type schema = z.infer<typeof schema>;
// Readonly<{name: string}>

const result = schema.parse({ name: "fido" });
result.name = "simba"; // error

The inferred type uses TypeScript's built-in readonly types when relevant.

z.array(z.string()).readonly();
// readonly string[]

z.tuple([z.string(), z.number()]).readonly();
// readonly [string, number]

z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>

Commits:

v3.21.4

Compare Source

Commits:

v3.21.3

Compare Source

Commits:

v3.21.2

Compare Source

Commits:

  • b276d71 Improve typings in generics
  • 4d016b7 Improve type inference in generics
  • f9895ab Improve types inside generic functions
  • ac0135e Pass input into catchValue

v3.21.1

Compare Source

Features

Support for ULID validation

z.string().ulid();

Commits:

v3.21.0

Compare Source

Features

z.string().emoji()

Thanks @​joseph-lozano for https://github.com/colinhacks/zod/pull/2045! To validate that all characters in a string are emoji:

z.string().emoji()

...if that's something you want to do for some reason.

z.string().cuid2()

Thanks @​joulev for https://github.com/colinhacks/zod/pull/1813! To validate CUIDv2:

z.string().cuid2()
z.string().ip()

Thanks @​fvckDesa for https://github.com/colinhacks/zod/pull/2066. To validate that a string is a valid IP address:

const v4IP = "122.122.122.122";
const v6IP = "6097:adfa:6f0b:220d:db08:5021:6191:7990";

// matches both IPv4 and IPv6 by default
const ipSchema = z.string().ip();
ipSchema.parse(v4IP) //  pass
ipSchema.parse(v6IP) //  pass

To specify a particular version:

const ipv4Schema = z.string().ip({ version: "v4" });
const ipv6Schema = z.string().ip({ version: "v6" });
z.bigint().{gt|gte|lt|lte}()

Thanks @​igalklebanov for #1711! ZodBigInt gets the same set of methods found on ZodNumber:

z.bigint().gt(BigInt(5));
z.bigint().gte(BigInt(5));
z.bigint().lt(BigInt(5));
z.bigint().lte(BigInt(5));
z.bigint().positive();
z.bigint().negative();
z.bigint().nonnegative();
z.bigint().nonpositive();
z.bigint().multipleOf(BigInt(5));
z.enum(...).extract() and z.enum(...).exclude()

Thanks @​santosmarco-caribou for https://github.com/colinhacks/zod/pull/1652! To add or remove elements from a ZodEnum:

const FoodEnum = z.enum(["Pasta", "Pizza", "Tacos", "Burgers", "Salad"]);
const ItalianEnum = FoodEnum.extract(["Pasta", "Pizza"]); // ZodEnum<["Pasta", "Pizza"]>
const UnhealthyEnum = FoodEnum.exclude(["Salad"]); // ZodEnum<["Pasta", "Pizza", "Tacos", "Burgers"]>

This API is inspired by the Exclude and Extract TypeScript built-ins.

Pass a function to .catch()

Thanks @​0xWryth for https://github.com/colinhacks/zod/pull/2087! The .catch() method now accepts a function that receives the caught error:

const numberWithErrorCatch = z.number().catch((ctx) => {
  ctx.error; // ZodError
  return 42;
});

Compiler performance

Zod 3.20.2 introduced an accidental type recursion that caused long compilation times for some users. These kinds of bugs are very hard to diagnose. Big shoutout to @​gydroperit for some heroic efforts here: https://github.com/colinhacks/zod/pull/2107 Zod 3.21 resolves these issues:

Commits:

v3.20.6

Compare Source

Commits:

v3.20.5

Compare Source

Commits:

  • e71c7be Fix extract/exclude type error

v3.20.4

Compare Source

Commits:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.21.4 ⬆️ Update dependency zod to v3.22.0 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/zod-3.x branch from c846b98 to f2d3aa4 Compare August 14, 2023 22:15
@github-actions
Copy link
Contributor

github-actions bot commented Aug 14, 2023

Coverage Summary

Status Category Percentage Covered / Total
🔵 Lines 100% 518 / 518
🔵 Statements 100% 518 / 518
🔵 Functions 100% 29 / 29
🔵 Branches 100% 42 / 42
File Coverage
File Stmts % Branch % Funcs % Lines Uncovered Lines
src/App.tsx 100% 100% 100% 100%
src/dayjs.setup.ts 100% 100% 100% 100%
src/main.tsx 100% 100% 100% 100%
src/style.ts 100% 100% 100% 100%
src/api/fetchAjaxIllust.ts 100% 100% 100% 100%
src/api/index.ts 100% 100% 100% 100%
src/api/mock/db.ts 100% 100% 100% 100%
src/api/mock/handlers.ts 100% 100% 100% 100%
src/api/mock/index.ts 100% 100% 100% 100%
src/api/mock/server.ts 100% 100% 100% 100%
src/api/types/AjaxIllust.ts 100% 100% 100% 100%
src/api/types/IllustId.ts 100% 100% 100% 100%
src/api/types/index.ts 100% 100% 100% 100%
src/components/BookmarkRate/BookmarkRate.tsx 100% 100% 100% 100%
src/components/BookmarkRate/index.ts 100% 100% 100% 100%
src/components/ErrorFallback/ErrorFallback.tsx 100% 100% 100% 100%
src/components/ErrorFallback/index.ts 100% 100% 100% 100%
src/components/Icon/Eye.tsx 100% 100% 100% 100%
src/components/Icon/Heart.tsx 100% 100% 100% 100%
src/components/Icon/SVGBase.tsx 100% 100% 100% 100%
src/components/Icon/index.ts 100% 100% 100% 100%
src/components/IllustMeta/IllustMeta.tsx 100% 100% 100% 100%
src/components/IllustMeta/IllustMetaSkeleton.tsx 100% 100% 100% 100%
src/components/IllustMeta/index.ts 100% 100% 100% 100%
src/components/Layout/Column.tsx 100% 100% 100% 100%
src/components/Layout/Container.tsx 100% 100% 100% 100%
src/components/Layout/Row.tsx 100% 100% 100% 100%
src/components/Layout/index.ts 100% 100% 100% 100%
src/components/Number/Number.tsx 100% 100% 100% 100%
src/components/Number/index.ts 100% 100% 100% 100%
src/components/Time/Time.tsx 100% 100% 100% 100%
src/components/Time/index.ts 100% 100% 100% 100%
src/hooks/useIllustMeta/index.ts 100% 100% 100% 100%
src/hooks/useIllustMeta/useIllustMeta.ts 100% 100% 100% 100%

@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.0 ⬆️ Update dependency zod to v3.22.1 Aug 15, 2023
@renovate renovate bot force-pushed the renovate/zod-3.x branch from f2d3aa4 to 2dac5ac Compare August 15, 2023 20:11
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.1 ⬆️ Update dependency zod to v3.22.2 Aug 19, 2023
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 2dac5ac to 819982c Compare August 19, 2023 03:26
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 819982c to abc0774 Compare October 3, 2023 20:07
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.2 ⬆️ Update dependency zod to v3.22.3 Oct 3, 2023
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.3 ⬆️ Update dependency zod to v3.22.4 Oct 4, 2023
@renovate renovate bot force-pushed the renovate/zod-3.x branch from abc0774 to 0025233 Compare October 4, 2023 23:01
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 0025233 to afc741d Compare April 19, 2024 01:32
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.4 ⬆️ Update dependency zod to v3.22.5 Apr 19, 2024
Copy link
Contributor Author

renovate bot commented Apr 19, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
 WARN  GET https://registry.npmjs.org/@crxjs/vite-plugin/-/vite-plugin-1.0.13.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@mswjs/data/-/data-0.11.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@tsconfig/vite-react/-/vite-react-1.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.0.21.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.45.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.45.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-2.2.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@vitest/coverage-c8/-/coverage-c8-0.25.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/zod error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@crxjs/vite-plugin/-/vite-plugin-1.0.13.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@mswjs/data/-/data-0.11.2.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@testing-library/react/-/react-13.4.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@tsconfig/vite-react/-/vite-react-1.0.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/react/-/react-18.0.21.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.45.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.45.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-2.2.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@vitest/coverage-c8/-/coverage-c8-0.25.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-17.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/zod error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-define-config/-/eslint-define-config-1.12.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
undefined
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

TypeError [ERR_INVALID_THIS]: Value of "this" must be of type URLSearchParams
    at Proxy.getAll (node:internal/url:535:13)
    at Proxy.<anonymous> (/opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53216:55)
    at /opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53269:31
    at Array.reduce (<anonymous>)
    at Proxy.raw (/opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53268:33)
    at new Headers (/opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53162:28)
    at getNodeRequestOptions (/opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53481:23)
    at /opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53538:25
    at new Promise (<anonymous>)
    at fetch (/opt/containerbase/tools/pnpm/7.14.2/20.13.0/node_modules/pnpm/dist/pnpm.cjs:53536:14)
 WARN  GET https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.2.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.9.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/msw/-/msw-0.49.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/vite/-/vite-3.2.3.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/vitest/-/vitest-0.28.5.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/vitest-github-actions-reporter/-/vitest-github-actions-reporter-0.9.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@stitches/react/-/react-1.2.8.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.

@renovate renovate bot force-pushed the renovate/zod-3.x branch from afc741d to 889fe55 Compare April 22, 2024 01:35
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.22.5 ⬆️ Update dependency zod to v3.23.0 Apr 22, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 889fe55 to 9d0b4f0 Compare April 23, 2024 02:06
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.0 ⬆️ Update dependency zod to v3.23.3 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 9d0b4f0 to e83df27 Compare April 23, 2024 18:57
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.3 ⬆️ Update dependency zod to v3.23.4 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from e83df27 to 8f2310d Compare April 29, 2024 21:12
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.4 ⬆️ Update dependency zod to v3.23.5 Apr 29, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 8f2310d to 59a0c36 Compare May 3, 2024 01:26
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.5 ⬆️ Update dependency zod to v3.23.6 May 3, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 59a0c36 to 94cc19f Compare May 7, 2024 21:43
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.6 ⬆️ Update dependency zod to v3.23.7 May 7, 2024
@renovate renovate bot force-pushed the renovate/zod-3.x branch from 94cc19f to 27ab076 Compare May 8, 2024 19:52
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.7 ⬆️ Update dependency zod to v3.23.8 May 8, 2024
@renovate renovate bot changed the title ⬆️ Update dependency zod to v3.23.8 ⬆️ Update dependency zod to v3.23.8 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/zod-3.x branch December 8, 2024 18:35
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