◐ Shell
clean mode source ↗

chore(deps): bump apollo from 2.5.9 to 2.5.14 by dependabot[bot] · Pull Request #5437 · getsentry/sentry-java

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:

... (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:

... (truncated)

Commits

You can trigger a rebase of this PR 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.