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

Version Packages #666

Merged
merged 1 commit into from
Oct 25, 2023
Merged

Version Packages #666

merged 1 commit into from
Oct 25, 2023

Conversation

belgattitude
Copy link
Owner

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@httpx/[email protected]

Minor Changes

  • 81311de Thanks @belgattitude! - Deprecate ValidationError type in favour of HttpValidationIssue

    // @deprecated errors
    // const errors: ValidationError[] = [
    
    // becomes
    const issues: HttpValidationIssue[] = [
      {
        message: 'Invalid email',
        path: 'email',
        code: 'invalid_email',
      },
      {
        message: 'Invalid address',
        path: ['addresses', 0, 'line1'],
        code: 'empty_string',
      },
    ];
    
    const e422 = new HttpUnprocessableEntity({
      // @deprecated name
      // errors: errors,
    
      // becomes issues
      issues: [],
    });

@httpx/[email protected]

Patch Changes

@examples/[email protected]

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch from 9169b34 to 788baad Compare October 25, 2023 22:09
@ghost
Copy link

ghost commented Oct 25, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@github-actions github-actions bot force-pushed the changeset-release/main branch from 788baad to aa2e838 Compare October 25, 2023 22:16
@belgattitude belgattitude merged commit d42ac24 into main Oct 25, 2023
@belgattitude belgattitude deleted the changeset-release/main branch October 25, 2023 22:17
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.

1 participant