diff --git a/README.md b/README.md index 489dc03a902..19e97b07806 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ Add the runtime dependency: ```kotlin dependencies { - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") } ``` @@ -171,13 +171,13 @@ repositories { } dependencies { - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") // optional: if you want to use the normalized cache - implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.1") + implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.2") // optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime // and use apollo-api instead - implementation("com.apollographql.apollo3:apollo-api:3.8.1") + implementation("com.apollographql.apollo3:apollo-api:3.8.2") } ``` @@ -208,7 +208,7 @@ pluginManagement { } ``` -And then use the `3.8.2-SNAPSHOT` version for the plugin and libraries. +And then use the `3.8.3-SNAPSHOT` version for the plugin and libraries. ## Requirements diff --git a/docs/source/advanced/apollo-ast.mdx b/docs/source/advanced/apollo-ast.mdx index de311842dcb..0512c45b8fc 100644 --- a/docs/source/advanced/apollo-ast.mdx +++ b/docs/source/advanced/apollo-ast.mdx @@ -21,7 +21,7 @@ Add the `apollo-ast` dependency to your project: dependencies { // ... - implementation("com.apollographql.apollo3:apollo-ast:3.8.1") + implementation("com.apollographql.apollo3:apollo-ast:3.8.2") } ``` diff --git a/docs/source/advanced/multi-modules.mdx b/docs/source/advanced/multi-modules.mdx index 3a7f8574168..904f95c0461 100644 --- a/docs/source/advanced/multi-modules.mdx +++ b/docs/source/advanced/multi-modules.mdx @@ -27,7 +27,7 @@ And declare your schema module as a dependency of your feature module: ```kotlin // feature/build.gradle.kts dependencies { - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") // more regular dependencies // Apollo dependencies diff --git a/docs/source/advanced/no-runtime.mdx b/docs/source/advanced/no-runtime.mdx index a7ebe97cf8b..7436126fd45 100644 --- a/docs/source/advanced/no-runtime.mdx +++ b/docs/source/advanced/no-runtime.mdx @@ -7,7 +7,7 @@ title: Using the models without apollo-runtime For this, remove the `com.apollographql.apollo3:apollo-runtime` dependency and replace it with: ```kotlin title="build.gradle" -implementation("com.apollographql.apollo3:apollo-api:3.8.1") +implementation("com.apollographql.apollo3:apollo-api:3.8.2") ``` ## Composing an HTTP request body diff --git a/docs/source/advanced/rxjava.mdx b/docs/source/advanced/rxjava.mdx index 0191e5d9240..841d1454456 100644 --- a/docs/source/advanced/rxjava.mdx +++ b/docs/source/advanced/rxjava.mdx @@ -11,10 +11,10 @@ dependencies { // ... // For RxJava 2 - implementation("com.apollographql.apollo3:apollo-rx2-support:3.8.1") + implementation("com.apollographql.apollo3:apollo-rx2-support:3.8.2") // For RxJava 3 - implementation("com.apollographql.apollo3:apollo-rx3-support:3.8.1") + implementation("com.apollographql.apollo3:apollo-rx3-support:3.8.2") } ``` diff --git a/docs/source/caching/http-cache.mdx b/docs/source/caching/http-cache.mdx index 60d6edacc01..0fd28d35f7f 100644 --- a/docs/source/caching/http-cache.mdx +++ b/docs/source/caching/http-cache.mdx @@ -13,7 +13,7 @@ To enable HTTP cache support, add the dependency to your project's `build.gradle ```kotlin title="build.gradle[.kts]" dependencies { - implementation("com.apollographql.apollo3:apollo-http-cache:3.8.1") + implementation("com.apollographql.apollo3:apollo-http-cache:3.8.2") } ``` diff --git a/docs/source/caching/normalized-cache.mdx b/docs/source/caching/normalized-cache.mdx index 4c4e23f0d7d..bae3132c122 100644 --- a/docs/source/caching/normalized-cache.mdx +++ b/docs/source/caching/normalized-cache.mdx @@ -70,7 +70,7 @@ Apollo Kotlin's `MemoryCache` is a normalized, in-memory cache for storing objec ```kotlin title="build.gradle[.kts]" dependencies { - implementation("com.apollographql.apollo3:apollo-normalized-cache:3.8.1") + implementation("com.apollographql.apollo3:apollo-normalized-cache:3.8.2") } ``` @@ -106,7 +106,7 @@ To enable SQLite cache support, add the `apollo-normalized-cache-sqlite` depende ```kotlin title="build.gradle.kts" dependencies { - implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.1") + implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.2") } ``` diff --git a/docs/source/essentials/custom-scalars.mdx b/docs/source/essentials/custom-scalars.mdx index a2fa83dd694..ee37284fdee 100644 --- a/docs/source/essentials/custom-scalars.mdx +++ b/docs/source/essentials/custom-scalars.mdx @@ -150,7 +150,7 @@ For example, to use `DateAdapter`, configure your Gradle scripts like so: ```kotlin title="build.gradle[.kts]" dependencies { - implementation("com.apollographql.apollo3:apollo-adapters:3.8.1") + implementation("com.apollographql.apollo3:apollo-adapters:3.8.2") } apollo { diff --git a/docs/source/index.md b/docs/source/index.md index f644732cfab..0c093dd6ce2 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -76,7 +76,7 @@ Add the runtime dependency: ```kotlin dependencies { - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") } ``` @@ -174,13 +174,13 @@ repositories { } dependencies { - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") // optional: if you want to use the normalized cache - implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.1") + implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:3.8.2") // optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime // and use apollo-api instead - implementation("com.apollographql.apollo3:apollo-api:3.8.1") + implementation("com.apollographql.apollo3:apollo-api:3.8.2") } ``` @@ -210,7 +210,7 @@ pluginManagement { } } ``` -And then use the `3.8.2-SNAPSHOT` version for the plugin and libraries. +And then use the `3.8.3-SNAPSHOT` version for the plugin and libraries. ## Contributing diff --git a/docs/source/testing/mocking-graphql-responses.mdx b/docs/source/testing/mocking-graphql-responses.mdx index 244d0e09479..1bdb568c97f 100644 --- a/docs/source/testing/mocking-graphql-responses.mdx +++ b/docs/source/testing/mocking-graphql-responses.mdx @@ -10,7 +10,7 @@ Add the dependency to your project's `build.gradle` file: ```kotlin title="build.gradle[.kts]" dependencies { - testImplementation("com.apollographql.apollo3:apollo-testing-support:3.8.1") + testImplementation("com.apollographql.apollo3:apollo-testing-support:3.8.2") } // Also add jcenter() to your repositories diff --git a/docs/source/testing/mocking-http-responses.mdx b/docs/source/testing/mocking-http-responses.mdx index 3ae750e0d78..29d0e65460b 100644 --- a/docs/source/testing/mocking-http-responses.mdx +++ b/docs/source/testing/mocking-http-responses.mdx @@ -12,7 +12,7 @@ Add the dependency to your project's `build.gradle` file: ```kotlin title="build.gradle[.kts]" dependencies { - testImplementation("com.apollographql.apollo3:apollo-mockserver:3.8.1") + testImplementation("com.apollographql.apollo3:apollo-mockserver:3.8.2") } ``` diff --git a/docs/source/testing/ui-tests.mdx b/docs/source/testing/ui-tests.mdx index cf8c8e7b87a..8a4a11c3caa 100644 --- a/docs/source/testing/ui-tests.mdx +++ b/docs/source/testing/ui-tests.mdx @@ -7,7 +7,7 @@ Apollo Kotlin provides a built-in [`IdlingResource`](https://developer.android.c Add the `apollo-idling-resource` dependency: ```kotlin title="build.gradle[.kts]" -implementation("com.apollographql.apollo3:apollo-idling-resource:3.8.1") +implementation("com.apollographql.apollo3:apollo-idling-resource:3.8.2") ``` > If you have multiple `ApolloClient`s, you need to create and register a different `ApolloIdlingResource` with a different name for each. Registering multiple `IdlingResource`s with the same name will cause your test suite to crash. diff --git a/docs/source/tutorial/01-configure-project.mdx b/docs/source/tutorial/01-configure-project.mdx index e3db893ebc2..1be9a88b1c7 100644 --- a/docs/source/tutorial/01-configure-project.mdx +++ b/docs/source/tutorial/01-configure-project.mdx @@ -35,7 +35,7 @@ Now let's add Apollo Kotlin to the project. You can find the latest version of Apollo Kotlin from the [GitHub releases page](https://github.com/apollographql/apollo-kotlin/releases). It is also displayed at the top of the [apollo-kotlin repo](https://github.com/apollographql/apollo-kotlin/). -This tutorial uses `3.8.1` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available. +This tutorial uses `3.8.2` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available. ## Apply the plugin @@ -72,7 +72,7 @@ Now add `apollo-runtime` to the list of dependencies. This is the code that exec ```kotlin title="app/build.gradle.kts" dependencies { // ... - implementation("com.apollographql.apollo3:apollo-runtime:3.8.1") + implementation("com.apollographql.apollo3:apollo-runtime:3.8.2") } ``` diff --git a/gradle.properties b/gradle.properties index 38dfe70fe95..af1c3497189 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Publishing defaults, could ultimately be moved to build scripts GROUP=com.apollographql.apollo3 -VERSION_NAME=3.8.2-SNAPSHOT +VERSION_NAME=3.8.2 POM_URL=https://github.com/apollographql/apollo-kotlin/ POM_SCM_URL=https://github.com/apollographql/apollo-kotlin/ diff --git a/gradle/libraries.toml b/gradle/libraries.toml index 6f2d09bce1b..7b11bc82eef 100644 --- a/gradle/libraries.toml +++ b/gradle/libraries.toml @@ -8,7 +8,7 @@ android-sdkversion-target = "30" androidx-sqlite = "2.1.0" antlr = "4.9.3" # This is used by the gradle integration tests to get the artifacts locally -apollo = "3.8.2-SNAPSHOT" +apollo = "3.8.2" cache = "2.0.2" # See https://developer.android.com/jetpack/androidx/releases/compose-kotlin compose-compiler = "1.4.4"