Skip to content

Commit 05760be

Browse files
authored
release 4.0.0-beta.7 (#5941)
1 parent e9f2620 commit 05760be

20 files changed

+52
-52
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ Add the plugin to your `build.gradle.kts`:
8787

8888
```kotlin
8989
plugins {
90-
id("com.apollographql.apollo3") version "4.0.0-beta.6"
90+
id("com.apollographql.apollo3") version "4.0.0-beta.7"
9191
}
9292
```
9393

9494
Add the runtime dependency:
9595

9696
```kotlin
9797
dependencies {
98-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6")
98+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
9999
}
100100
```
101101

@@ -187,21 +187,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
187187

188188
```kotlin
189189
plugins {
190-
id("com.apollographql.apollo3") version "4.0.0-beta.6"
190+
id("com.apollographql.apollo3") version "4.0.0-beta.7"
191191
}
192192

193193
repositories {
194194
mavenCentral()
195195
}
196196

197197
dependencies {
198-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6")
198+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
199199

200200
// optional: if you want to use the normalized cache
201-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.6")
201+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
202202
// optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
203203
// and use apollo-api instead
204-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.6")
204+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
205205
}
206206
```
207207

@@ -232,7 +232,7 @@ pluginManagement {
232232
}
233233
```
234234

235-
And then use the `4.0.0-beta.7-SNAPSHOT` version for the plugin and libraries.
235+
And then use the `4.0.0-beta.8-SNAPSHOT` version for the plugin and libraries.
236236

237237
These snapshots are updated on each push to `main`.
238238

docs/source/advanced/apollo-ast.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the `apollo-ast` dependency to your project:
2121
dependencies {
2222
// ...
2323

24-
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-beta.6")
24+
implementation("com.apollographql.apollo3:apollo-ast:4.0.0-beta.7")
2525
}
2626
```
2727

docs/source/advanced/compiler-plugins.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ plugins {
2727

2828
dependencies {
2929
// Add apollo-compiler as a dependency
30-
implementation("com.apollographql.apollo3:apollo-compiler:4.0.0-beta.6")
30+
implementation("com.apollographql.apollo3:apollo-compiler:4.0.0-beta.7")
3131
}
3232
```
3333

docs/source/advanced/java.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
// ...
2727

2828
// Use apollo-runtime-java instead of apollo-runtime
29-
implementation("com.apollographql.apollo3:apollo-runtime-java:4.0.0-beta.6")
29+
implementation("com.apollographql.apollo3:apollo-runtime-java:4.0.0-beta.7")
3030
}
3131
```
3232
Note that the Java runtime currently doesn't support the HTTP or normalized caches.
@@ -145,10 +145,10 @@ dependencies {
145145
// ...
146146

147147
// For RxJava 2
148-
implementation("com.apollographql.apollo3:apollo-rx2-support-java:4.0.0-beta.6")
148+
implementation("com.apollographql.apollo3:apollo-rx2-support-java:4.0.0-beta.7")
149149

150150
// For RxJava 3
151-
implementation("com.apollographql.apollo3:apollo-rx3-support-java:4.0.0-beta.6")
151+
implementation("com.apollographql.apollo3:apollo-rx3-support-java:4.0.0-beta.7")
152152
}
153153
```
154154
Then use the `Rx2Apollo` or `Rx3Apollo` classes to execute GraphQL operations and get RxJava observables:

docs/source/advanced/no-runtime.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Using the models without apollo-runtime
77
For this, remove the `com.apollographql.apollo3:apollo-runtime` dependency and replace it with:
88

99
```kotlin title="build.gradle"
10-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.6")
10+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
1111
```
1212

1313
## Composing an HTTP request body

docs/source/caching/http-cache.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To enable HTTP cache support, add the dependency to your project's `build.gradle
1313

1414
```kotlin title="build.gradle[.kts]"
1515
dependencies {
16-
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-beta.6")
16+
implementation("com.apollographql.apollo3:apollo-http-cache:4.0.0-beta.7")
1717
}
1818
```
1919

docs/source/caching/normalized-cache.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Apollo Kotlin's `MemoryCache` is a normalized, in-memory cache for storing objec
7070

7171
```kotlin title="build.gradle[.kts]"
7272
dependencies {
73-
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-beta.6")
73+
implementation("com.apollographql.apollo3:apollo-normalized-cache:4.0.0-beta.7")
7474
}
7575
```
7676

@@ -106,7 +106,7 @@ To enable SQLite cache support, add the `apollo-normalized-cache-sqlite` depende
106106

107107
```kotlin title="build.gradle.kts"
108108
dependencies {
109-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.6")
109+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
110110
}
111111
```
112112

docs/source/essentials/custom-scalars.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ For example, to use `DateAdapter`, configure your Gradle scripts like so:
150150

151151
```kotlin title="build.gradle[.kts]"
152152
dependencies {
153-
implementation("com.apollographql.apollo3:apollo-adapters:4.0.0-beta.6")
153+
implementation("com.apollographql.apollo3:apollo-adapters:4.0.0-beta.7")
154154
}
155155

156156
apollo {

docs/source/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ Add the plugin to your `build.gradle.kts`:
6767

6868
```kotlin
6969
plugins {
70-
id("com.apollographql.apollo3") version "4.0.0-beta.6"
70+
id("com.apollographql.apollo3") version "4.0.0-beta.7"
7171
}
7272
```
7373

7474
Add the runtime dependency:
7575

7676
```kotlin
7777
dependencies {
78-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6")
78+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
7979
}
8080
```
8181

@@ -168,21 +168,21 @@ Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollo
168168

169169
```kotlin
170170
plugins {
171-
id("com.apollographql.apollo3") version "4.0.0-beta.6"
171+
id("com.apollographql.apollo3") version "4.0.0-beta.7"
172172
}
173173

174174
repositories {
175175
mavenCentral()
176176
}
177177

178178
dependencies {
179-
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.6")
179+
implementation("com.apollographql.apollo3:apollo-runtime:4.0.0-beta.7")
180180

181181
// optional: if you want to use the normalized cache
182-
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.6")
182+
implementation("com.apollographql.apollo3:apollo-normalized-cache-sqlite:4.0.0-beta.7")
183183
// optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
184184
// and use apollo-api instead
185-
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.6")
185+
implementation("com.apollographql.apollo3:apollo-api:4.0.0-beta.7")
186186
}
187187
```
188188

@@ -212,7 +212,7 @@ pluginManagement {
212212
}
213213
}
214214
```
215-
And then use the `4.0.0-beta.7-SNAPSHOT` version for the plugin and libraries.
215+
And then use the `4.0.0-beta.8-SNAPSHOT` version for the plugin and libraries.
216216

217217
These snapshots are updated on each push to `main`.
218218

docs/source/testing/apollo-debug-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
// ...
1818

1919
// For security, add the dependency to your debug builds only
20-
debugImplementation("com.apollographql.apollo3:apollo-debug-server:4.0.0-beta.6")
20+
debugImplementation("com.apollographql.apollo3:apollo-debug-server:4.0.0-beta.7")
2121
}
2222
```
2323

0 commit comments

Comments
 (0)