Skip to content

Update dependency apollo-angular to v14#624

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/apollo-angular-14.x
Open

Update dependency apollo-angular to v14#624
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/apollo-angular-14.x

Conversation

@renovate

@renovate renovate Bot commented May 14, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
apollo-angular (source) 13.0.014.1.0 age confidence

Release Notes

the-guild-org/apollo-angular (apollo-angular)

v14.1.0

Compare Source

Minor Changes
Patch Changes

v14.0.0

Compare Source

Major Changes
  • #​2395
    4e9f107
    Thanks @​JesseZomer! - BREAKING CHANGE: HTTP errors now return
    Apollo Client's ServerError instead of Angular's HttpErrorResponse

    When Apollo Server returns non-2xx HTTP status codes (status >= 300), apollo-angular's HTTP links
    now return ServerError from @apollo/client/errors instead of Angular's HttpErrorResponse.
    This enables proper error detection in errorLinks using ServerError.is(error) and provides
    consistent error handling with Apollo Client's ecosystem.

    Migration Guide:

    Before:

    import { HttpErrorResponse } from '@​angular/common/http';
    
    link.request(operation).subscribe({
      error: err => {
        if (err instanceof HttpErrorResponse) {
          console.log(err.status);
          console.log(err.error);
        }
      },
    });

    After:

    import { ServerError } from '@​apollo/client/errors';
    
    link.request(operation).subscribe({
      error: err => {
        if (ServerError.is(err)) {
          console.log(err.statusCode);
          console.log(err.bodyText);
          console.log(err.response.headers);
        }
      },
    });

    Properties Changed:

    • err.statuserr.statusCode
    • err.errorerr.bodyText (always string, JSON stringified for objects)
    • err.headers (Angular HttpHeaders) → err.response.headers (native Headers)
    • Access response via err.response which includes: status, statusText, ok, url, type,
      redirected

    Note: This only affects HTTP-level errors (status >= 300). Network errors and other error
    types remain unchanged. GraphQL errors in the response body are still processed normally through
    Apollo Client's error handling.

    Fixes #​2394

Patch Changes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM (* 0-3 * * *)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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 force-pushed the renovate/apollo-angular-14.x branch 12 times, most recently from 943d0ff to 29fe7f3 Compare May 21, 2026 00:34
@renovate renovate Bot force-pushed the renovate/apollo-angular-14.x branch 3 times, most recently from 54cd2bb to 5986989 Compare May 28, 2026 00:47
@renovate renovate Bot force-pushed the renovate/apollo-angular-14.x branch 10 times, most recently from dbbc054 to 912778c Compare June 4, 2026 02:24
@renovate renovate Bot force-pushed the renovate/apollo-angular-14.x branch 4 times, most recently from cfb44a4 to 5cccaa0 Compare June 9, 2026 05:05
@renovate renovate Bot force-pushed the renovate/apollo-angular-14.x branch from 5cccaa0 to 2016f54 Compare June 10, 2026 00:42
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