storm-software / acidic

🧪 Acidic is a modeling tool that can be used to describe and generate code for API end points, database tables, type definitions, client components, and so much more!
Apache License 2.0
3 stars 0 forks source link

build(deps): Bump zod-validation-error from 2.1.0 to 3.0.2 #37

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps zod-validation-error from 2.1.0 to 3.0.2.

Release notes

Sourced from zod-validation-error's releases.

v3.0.2

Patch Changes

  • 24b773c: Revert package.json exports causing dependant projects to fail

v3.0.1

Patch Changes

  • 3382fbc: 1. Fix issue with ErrorOptions not being found in earlier to es2022 typescript configs. 2. Add exports definition to package.json to help bundlers (e.g. rollup) identify the right module to use.

v3.0.0

Major Changes

  • deb4639: BREAKING CHANGE: Refactor ValidationError to accept ErrorOptions as second parameter.

    What changed?

    Previously, ValidationError accepted Array<ZodIssue> as 2nd parameter. Now, it accepts ErrorOptions which contains a cause property. If cause is a ZodError then it will extract the attached issues and expose them over error.details.

    Why?

    This change allows us to use ValidationError like a native JavaScript Error. For example, we can now do:

    import { ValidationError } from 'zod-validation-error';
    

    try { // attempt to do something that might throw an error } catch (err) { throw new ValidationError('Something went deeply wrong', { cause: err }); }

    How can you update your code?

    If you are using ValidationError directly, then you need to update your code to pass ErrorOptions as a 2nd parameter.

    import { ValidationError } from 'zod-validation-error';
    

    // before const err = new ValidationError('Something went wrong', zodError.issues);

    // after const err = new ValidationError('Something went wrong', { cause: zodError });

    If you were never using ValidationError directly, then you don't need to do anything.

Changelog

Sourced from zod-validation-error's changelog.

3.0.2

Patch Changes

  • 24b773c: Revert package.json exports causing dependant projects to fail

3.0.1

Patch Changes

  • 3382fbc: 1. Fix issue with ErrorOptions not being found in earlier to es2022 typescript configs. 2. Add exports definition to package.json to help bundlers (e.g. rollup) identify the right module to use.

3.0.0

Major Changes

  • deb4639: BREAKING CHANGE: Refactor ValidationError to accept ErrorOptions as second parameter.

    What changed?

    Previously, ValidationError accepted Array<ZodIssue> as 2nd parameter. Now, it accepts ErrorOptions which contains a cause property. If cause is a ZodError then it will extract the attached issues and expose them over error.details.

    Why?

    This change allows us to use ValidationError like a native JavaScript Error. For example, we can now do:

    import { ValidationError } from 'zod-validation-error';
    

    try { // attempt to do something that might throw an error } catch (err) { throw new ValidationError('Something went deeply wrong', { cause: err }); }

    How can you update your code?

    If you are using ValidationError directly, then you need to update your code to pass ErrorOptions as a 2nd parameter.

    import { ValidationError } from 'zod-validation-error';
    

    // before const err = new ValidationError('Something went wrong', zodError.issues);

    // after const err = new ValidationError('Something went wrong', { cause: zodError });

... (truncated)

Commits
  • a7e970f chore: update version in package-lock.json
  • 2ebdc61 chore: version packages
  • 24b773c chore: add changesets
  • b547338 fix: drop exports declaration causing dependant projects to fail
  • 11df108 chore: version packages
  • 3382fbc chore: add changeset
  • d00d94b fix: define ErrorOptions for earlier to es2022 typescript configs
  • 0234848 fix: esm module import in bundlers
  • 722e993 chore: bump @​types/node from 20.11.16 to 20.11.17
  • d84ea05 chore: bump lint-staged from 15.2.1 to 15.2.2
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
socket-security[bot] commented 4 months ago

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/zod-validation-error@3.0.2 None +1 669 kB jmike

🚮 Removed packages: npm/zod-validation-error@2.1.0

View full report↗︎

dependabot[bot] commented 4 months ago

Superseded by #40.