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
@WilliamsDHIfor 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
@eduardbfor diving into #2818 💙What's Changed
- Fix converting introspection to SDL by
@martinbonninin apollographql/apollo-kotlin#4316- Fix writing fragments overwrites cache entries (#2818) by
@eduardbin apollographql/apollo-kotlin#4358Full Changelog: apollographql/apollo-kotlin@v2.5.12...v2.5.13
v2.5.12
Version
2.5.12is a maintenance release with a fix to restore downloading schemas as SDL, and a fix for Kotlin 1.7 compatibility.💜 Many thanks to
@eg-ndobrijevicand@remcomokveldfor raising these issues! 💜👷 All Changes
v2.5.11
Version
2.5.11is a maintenance release with fixes forregisterApolloOperationsand query batching.💜 Many thanks to
@AOrobatorand@rocketramanfor their awesome contributions and feedback !💜👷 All Changes
- Added toString method for Input by
@AOrobatorin apollographql/apollo-android#3427- Make safelistingHash closer to its apollo-tooling counterpart by
@martinbonninin apollographql/apollo-android#3471- Make sure Response is always closed when batching by
@martinbonninin apollographql/apollo-android#3541Full Changelog: apollographql/apollo-kotlin@v2.5.10...v2.5.11
v2.5.10
Version
2.5.10is a maintenance release with a few bugfixes, mutiny support and a new Gradleregister${VariantName}ApolloOperationstask to register your operations to the Apollo registry.💜 Many thanks to
@ProVir,@aoudiamoncefand@jgarrowfor their contributions !💜✨[new] Mutiny support (#3213)
Version
2.5.10adds 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
@WilliamsDHIfor 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
ifstatements. For an example, with a query like so:
... (truncated)
Commits
0f30a14release 2.5.1453305e9removes safelisting doc from v2 branchdeee859update terminate and responseCallback methods to return Optional.absent() in ...a711e8fDoc: Fixed title in schema download instructions (#4473)b65d282version is now 2.5.14-SNAPSHOTb711ef9release 2.5.13461c5f7Fix #2818 (#4358)66cd446[release-2.x] fix converting introspection to SDL (#4316)b6defa3Update v2 docs now that v3 is available (#4296)89de9a6version is now 2.5.13-SNAPSHOT- Additional commits viewable in compare view
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
@WilliamsDHIfor 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
@eduardbfor diving into #2818 💙What's Changed
- Fix converting introspection to SDL by
@martinbonninin apollographql/apollo-kotlin#4316- Fix writing fragments overwrites cache entries (#2818) by
@eduardbin apollographql/apollo-kotlin#4358Full Changelog: apollographql/apollo-kotlin@v2.5.12...v2.5.13
v2.5.12
Version
2.5.12is a maintenance release with a fix to restore downloading schemas as SDL, and a fix for Kotlin 1.7 compatibility.💜 Many thanks to
@eg-ndobrijevicand@remcomokveldfor raising these issues! 💜👷 All Changes
v2.5.11
Version
2.5.11is a maintenance release with fixes forregisterApolloOperationsand query batching.💜 Many thanks to
@AOrobatorand@rocketramanfor their awesome contributions and feedback !💜👷 All Changes
- Added toString method for Input by
@AOrobatorin apollographql/apollo-android#3427- Make safelistingHash closer to its apollo-tooling counterpart by
@martinbonninin apollographql/apollo-android#3471- Make sure Response is always closed when batching by
@martinbonninin apollographql/apollo-android#3541Full Changelog: apollographql/apollo-kotlin@v2.5.10...v2.5.11
v2.5.10
Version
2.5.10is a maintenance release with a few bugfixes, mutiny support and a new Gradleregister${VariantName}ApolloOperationstask to register your operations to the Apollo registry.💜 Many thanks to
@ProVir,@aoudiamoncefand@jgarrowfor their contributions !💜✨[new] Mutiny support (#3213)
Version
2.5.10adds 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
@WilliamsDHIfor 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
ifstatements. For an example, with a query like so:
... (truncated)
Commits
0f30a14release 2.5.1453305e9removes safelisting doc from v2 branchdeee859update terminate and responseCallback methods to return Optional.absent() in ...a711e8fDoc: Fixed title in schema download instructions (#4473)b65d282version is now 2.5.14-SNAPSHOTb711ef9release 2.5.13461c5f7Fix #2818 (#4358)66cd446[release-2.x] fix converting introspection to SDL (#4316)b6defa3Update v2 docs now that v3 is available (#4296)89de9a6version is now 2.5.13-SNAPSHOT- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.