Skip to content

chore(deps): bump apollo from 2.5.9 to 2.5.14#5437

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/apollo-2.5.14
Open

chore(deps): bump apollo from 2.5.9 to 2.5.14#5437
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/apollo-2.5.14

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 14, 2026

Bumps apollo from 2.5.9 to 2.5.14.
Updates com.apollographql.apollo:apollo-coroutines-support from 2.5.9 to 2.5.14

Release notes

Sourced from com.apollographql.apollo:apollo-coroutines-support's releases.

v2.5.14

A patch release to fix an issue where the ApolloCall could end up in a bad state. Many thanks to @​WilliamsDHI for diving into this 💙!

👷‍ All changes

  • update terminate and responseCallback methods to return Optional.absent() in IDLE/TERMINATED state (#4383)

v2.5.13

A 2.x maintainance release with a couple of bugfixes. Many thanks to @​eduardb for diving into #2818 💙

What's Changed

Full Changelog: apollographql/apollo-kotlin@v2.5.12...v2.5.13

v2.5.12

Version 2.5.12 is a maintenance release with a fix to restore downloading schemas as SDL, and a fix for Kotlin 1.7 compatibility.

💜 Many thanks to @​eg-ndobrijevic and @​remcomokveld for raising these issues! 💜

👷 All Changes

  • [2.x] restore SDL download (#4046)
  • Fix Kotlin 1.7 compatibility (#4187)

v2.5.11

Version 2.5.11 is a maintenance release with fixes for registerApolloOperations and query batching.

💜 Many thanks to @​AOrobator and @​rocketraman for their awesome contributions and feedback !💜

👷 All Changes

Full Changelog: apollographql/apollo-kotlin@v2.5.10...v2.5.11

v2.5.10

Version 2.5.10 is a maintenance release with a few bugfixes, mutiny support and a new Gradle register${VariantName}ApolloOperations task to register your operations to the Apollo registry.

💜 Many thanks to @​ProVir, @​aoudiamoncef and @​jgarrow for their contributions !💜

✨[new] Mutiny support (#3213)

Version 2.5.10 adds support for the Mutiny reactive library.

Add the dependency:

... (truncated)

Changelog

Sourced from com.apollographql.apollo:apollo-coroutines-support's changelog.

Version 2.5.14

2022-11-18

A patch release to fix an issue where the ApolloCall could end up in a bad state. Many thanks to @​WilliamsDHI for diving into this 💙!

👷‍ All changes

  • update terminate and responseCallback methods to return Optional.absent() in IDLE/TERMINATED state (#4383)

Version 3.7.0

2022-11-08

This version adds multiple new low level features. These new features expose a lot of API surface, and they will probably stay experimental until 4.0. Feedback is always very welcome.

✨️ [new & experimental] compiler hooks API (#4474, #4026)

Compiler hooks allow you to tweak the generated models by exposing the underlying JavaPoet/KotlinPoet structures. You can use it for an example to:

  • Add a 'null' default value to model arguments (source)
  • Introduce a common interface for all models that implement __typename (source)
  • Add a prefix to generated models (source)
  • Any other thing you can think of

To do so, make sure to use the "external" version of the plugin:

plugins {
  // Note: using the external plugin here to be able to reference KotlinPoet classes
  id("com.apollographql.apollo3.external")
}

And then register your hook to the plugin:

apollo {
  service("defaultnullvalues") {
    packageName.set("hooks.defaultnullvalues")
    compilerKotlinHooks.set(listOf(DefaultNullValuesHooks()))
  }
}

✨️ [new & experimental] operationBasedWithInterfaces codegen (#4370)

By default, Apollo Kotlin models fragments with synthetic nullable fields. If you have a lot of fragments, checking these fields requires using if statements. For an example, with a query like so:

</tr></table> 

... (truncated)

Commits

Updates com.apollographql.apollo:apollo-runtime from 2.5.9 to 2.5.14

Release notes

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

v2.5.14

A patch release to fix an issue where the ApolloCall could end up in a bad state. Many thanks to @​WilliamsDHI for diving into this 💙!

👷‍ All changes

  • update terminate and responseCallback methods to return Optional.absent() in IDLE/TERMINATED state (#4383)

v2.5.13

A 2.x maintainance release with a couple of bugfixes. Many thanks to @​eduardb for diving into #2818 💙

What's Changed

Full Changelog: apollographql/apollo-kotlin@v2.5.12...v2.5.13

v2.5.12

Version 2.5.12 is a maintenance release with a fix to restore downloading schemas as SDL, and a fix for Kotlin 1.7 compatibility.

💜 Many thanks to @​eg-ndobrijevic and @​remcomokveld for raising these issues! 💜

👷 All Changes

  • [2.x] restore SDL download (#4046)
  • Fix Kotlin 1.7 compatibility (#4187)

v2.5.11

Version 2.5.11 is a maintenance release with fixes for registerApolloOperations and query batching.

💜 Many thanks to @​AOrobator and @​rocketraman for their awesome contributions and feedback !💜

👷 All Changes

Full Changelog: apollographql/apollo-kotlin@v2.5.10...v2.5.11

v2.5.10

Version 2.5.10 is a maintenance release with a few bugfixes, mutiny support and a new Gradle register${VariantName}ApolloOperations task to register your operations to the Apollo registry.

💜 Many thanks to @​ProVir, @​aoudiamoncef and @​jgarrow for their contributions !💜

✨[new] Mutiny support (#3213)

Version 2.5.10 adds support for the Mutiny reactive library.

Add the dependency:

... (truncated)

Changelog

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

Version 2.5.14

2022-11-18

A patch release to fix an issue where the ApolloCall could end up in a bad state. Many thanks to @​WilliamsDHI for diving into this 💙!

👷‍ All changes

  • update terminate and responseCallback methods to return Optional.absent() in IDLE/TERMINATED state (#4383)

Version 3.7.0

2022-11-08

This version adds multiple new low level features. These new features expose a lot of API surface, and they will probably stay experimental until 4.0. Feedback is always very welcome.

✨️ [new & experimental] compiler hooks API (#4474, #4026)

Compiler hooks allow you to tweak the generated models by exposing the underlying JavaPoet/KotlinPoet structures. You can use it for an example to:

  • Add a 'null' default value to model arguments (source)
  • Introduce a common interface for all models that implement __typename (source)
  • Add a prefix to generated models (source)
  • Any other thing you can think of

To do so, make sure to use the "external" version of the plugin:

plugins {
  // Note: using the external plugin here to be able to reference KotlinPoet classes
  id("com.apollographql.apollo3.external")
}

And then register your hook to the plugin:

apollo {
  service("defaultnullvalues") {
    packageName.set("hooks.defaultnullvalues")
    compilerKotlinHooks.set(listOf(DefaultNullValuesHooks()))
  }
}

✨️ [new & experimental] operationBasedWithInterfaces codegen (#4370)

By default, Apollo Kotlin models fragments with synthetic nullable fields. If you have a lot of fragments, checking these fields requires using if statements. For an example, with a query like so:

</tr></table> 

... (truncated)

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 2.5.9 to 2.5.14.

Updates `com.apollographql.apollo:apollo-coroutines-support` from 2.5.9 to 2.5.14
- [Release notes](https://github.com/apollographql/apollo-android/releases)
- [Changelog](https://github.com/apollographql/apollo-kotlin/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-kotlin@v2.5.9...v2.5.14)

Updates `com.apollographql.apollo:apollo-runtime` from 2.5.9 to 2.5.14
- [Release notes](https://github.com/apollographql/apollo-android/releases)
- [Changelog](https://github.com/apollographql/apollo-kotlin/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-kotlin@v2.5.9...v2.5.14)

---
updated-dependencies:
- dependency-name: com.apollographql.apollo:apollo-coroutines-support
  dependency-version: 2.5.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.apollographql.apollo:apollo-runtime
  dependency-version: 2.5.14
  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 SDK labels May 14, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file Java SDK labels May 14, 2026
Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 3fc9088. Configure here.

Comment thread gradle/libs.versions.toml
apollo2-runtime = { module = "com.apollographql.apollo:apollo-runtime", version.ref = "apollo" }
apollo3-kotlin = { module = "com.apollographql.apollo3:apollo-runtime", version = "3.8.2" }
apollo4-kotlin = { module = "com.apollographql.apollo:apollo-runtime", version = "4.1.1" }
apollo4-kotlin = { module = "com.apollographql.apollo:apollo-runtime", version = "2.5.14" }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apollo 4 dependency accidentally downgraded to version 2.5.14

High Severity

Dependabot incorrectly changed apollo4-kotlin version from 4.1.1 to 2.5.14. Both apollo2-runtime and apollo4-kotlin share the same Maven coordinate (com.apollographql.apollo:apollo-runtime), so Dependabot treated them as the same dependency. The sentry-apollo-4 module imports Apollo 4-specific APIs (e.g., com.apollographql.apollo.network.http.HttpInterceptor, ApolloInterceptorChain) that don't exist in 2.x, so this change will break compilation of that module entirely.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 3fc9088. Configure here.

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 SDK

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants