Skip to content

chore(deps): update apollo graphql packages to v5.0.1#5444

Merged
renovate[bot] merged 1 commit into
masterfrom
renovate/patch-apollo-graphql-packages
Jun 27, 2026
Merged

chore(deps): update apollo graphql packages to v5.0.1#5444
renovate[bot] merged 1 commit into
masterfrom
renovate/patch-apollo-graphql-packages

Conversation

@renovate

@renovate renovate Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
com.apollographql.apollo 5.0.05.0.1 age confidence
com.apollographql.apollo:apollo-runtime 5.0.05.0.1 age confidence

Release Notes

apollographql/apollo-kotlin (com.apollographql.apollo)

v5.0.1: 5.0.1

A few bugfixes, support for onError, and promote "directives on directives" which was merged in the specification recently.

Experimental onError support

If your server supports the onError request parameter, you can now use it to control error propagation:

val response = apolloClient.query(FooQuery())
                .onError(OnError.NULL)
                .execute()

When using OnError.NULL, error propagation is disabled, meaning you get more partial data:

type Query {
  user: User
}

type User {
  name: String!
  email: String!
}

If an error occurs at user.email, you will get a partial response with user.name but no user.email, instead of propagating the error to the parent user field:

{
  "errors": [{"path": ["user", "email"] }],
  "data": {
    "user": {
      "name": "John Doe",
      "email": null
    }
  }
}

Coupled with error aware parsing, it allows for more granular error handling.

Note: onError achieves the same functionality as @experimental_DisableErrorPropagation. It is expected that onError ultimately replaces the directive.

👷‍♂️ All changes
  • [compiler] Add missing dependency on kotlinx-serialization-core (#​6973)
  • [compiler] Exclude invalid fields from field merging validation, fixes validation could hang on some invalid operations (#​6972)
  • [runtime] Expose a proper [JsonDataException] in case null is returned in an unexpected position (#​6971)
  • [runtime] Add NullableLongAdapter (#​6968)
  • [runtime] Add ApolloClient support for onError (#​6963)
  • [runtime] Fix bug with duplicate headers being added when using batching (#​6961)
  • [runtime] Deprecate allowDirectivesOnDirectives, it is now merged (#​6965)
  • [runtime] Fix allowDirectivesOnDirectives not being honored (#​6953)
  • [runtime] Workaround introspection for servers that do not support isOneOf despite advertizing it (#​6949)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 these updates 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 added the dependencies Pull requests that update a dependency file label Jun 25, 2026
@renovate renovate Bot enabled auto-merge (squash) June 25, 2026 16:36
@codecov

codecov Bot commented Jun 25, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 61.53%. Comparing base (9fa06b4) to head (3d6c603).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff            @@
##             master    #5444   +/-   ##
=========================================
  Coverage     61.53%   61.53%           
  Complexity       14       14           
=========================================
  Files             2        2           
  Lines            78       78           
  Branches          4        4           
=========================================
  Hits             48       48           
  Misses           24       24           
  Partials          6        6           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@DanySK DanySK force-pushed the renovate/patch-apollo-graphql-packages branch 2 times, most recently from 63532eb to 083a55e Compare June 26, 2026 23:35
@renovate renovate Bot force-pushed the renovate/patch-apollo-graphql-packages branch 2 times, most recently from 3c6e713 to 5139a20 Compare June 27, 2026 02:54
@DanySK DanySK force-pushed the renovate/patch-apollo-graphql-packages branch from 5139a20 to d9021fe Compare June 27, 2026 13:26
@DanySK DanySK force-pushed the renovate/patch-apollo-graphql-packages branch from d9021fe to 3d6c603 Compare June 27, 2026 15:11
@renovate renovate Bot merged commit c200439 into master Jun 27, 2026
28 checks passed
@renovate renovate Bot deleted the renovate/patch-apollo-graphql-packages branch June 27, 2026 17:31
@sonarqubecloud

Copy link
Copy Markdown

DanySK pushed a commit that referenced this pull request Jun 28, 2026
## [43.1.11](43.1.10...43.1.11) (2026-06-28)

### Dependency updates

* **core-deps:** update react to v2026.6.7-19.2.7 ([#5441](#5441)) ([12d9e71](12d9e71))
* **core-deps:** update react to v2026.6.8-19.2.7 ([#5456](#5456)) ([5c78cf3](5c78cf3))
* **core-deps:** update react to v2026.6.9-19.2.7 ([#5458](#5458)) ([a906c9c](a906c9c))
* **deps:** update apollo graphql packages to v5.0.1 ([#5444](#5444)) ([c200439](c200439))
* **deps:** update gradle to v9.6.1 ([#5450](#5450)) ([4931d30](4931d30))
* **deps:** update junit-framework monorepo to v6.1.1 ([#5457](#5457)) ([8e21a62](8e21a62))
* **deps:** update logback monorepo ([#5442](#5442)) ([d543dad](d543dad))
* **deps:** update node.js to 24.18 ([#5447](#5447)) ([7b8638f](7b8638f))
* **deps:** update plugin jpackage to v2.1.0 ([#5455](#5455)) ([19f68e1](19f68e1))
* **deps:** update plugin multijvmtesting to v4.5.3 ([#5451](#5451)) ([97e09bc](97e09bc))
* **deps:** update plugin org.danilopianini.gradle-pre-commit-git-hooks to v2.1.20 ([#5453](#5453)) ([2ecefae](2ecefae))
* **deps:** update plugin shadowjar to v9.4.3 ([#5449](#5449)) ([f722c5d](f722c5d))

### Build and continuous integration

* **deps:** update danysk/build-check-deploy-gradle-action action to v4.0.37 ([#5443](#5443)) ([60eb286](60eb286))
* **website:** prefer link replacement over 404 ignore ([#5454](#5454)) ([b154e49](b154e49))

### General maintenance

* **build:** update the javadoc.io cache ([1e14768](1e14768))
* **build:** update the javadoc.io cache ([f7dd081](f7dd081))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant