Skip to content

chore(deps): bump apollo from 5.0.0 to 5.0.1#8

Merged
ghostbear merged 1 commit into
mainfrom
dependabot/gradle/apollo-5.0.1
Jun 27, 2026
Merged

chore(deps): bump apollo from 5.0.0 to 5.0.1#8
ghostbear merged 1 commit into
mainfrom
dependabot/gradle/apollo-5.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 26, 2026

Copy link
Copy Markdown
Contributor

Bumps apollo from 5.0.0 to 5.0.1.
Updates com.apollographql.apollo:apollo-runtime from 5.0.0 to 5.0.1

Release notes

Sourced from com.apollographql.apollo:apollo-runtime's releases.

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)

... (truncated)

Changelog

Sourced from com.apollographql.apollo:apollo-runtime's changelog.

Change Log

Commits

Updates com.apollographql.apollo from 5.0.0 to 5.0.1

Release notes

Sourced from com.apollographql.apollo's releases.

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)

... (truncated)

Changelog

Sourced from com.apollographql.apollo's changelog.

Change Log

Commits

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 show <dependency name> 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)

Bumps `apollo` from 5.0.0 to 5.0.1.

Updates `com.apollographql.apollo:apollo-runtime` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/apollographql/apollo-kotlin/releases)
- [Changelog](https://github.com/apollographql/apollo-kotlin/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-kotlin@v5.0.0...v5.0.1)

Updates `com.apollographql.apollo` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/apollographql/apollo-kotlin/releases)
- [Changelog](https://github.com/apollographql/apollo-kotlin/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-kotlin@v5.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: com.apollographql.apollo:apollo-runtime
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.apollographql.apollo
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jun 26, 2026
@ghostbear ghostbear merged commit c7f2b3e into main Jun 27, 2026
1 check failed
@dependabot dependabot Bot deleted the dependabot/gradle/apollo-5.0.1 branch June 27, 2026 20:18
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 java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant