Skip to content

Commit 12b46ab

Browse files
authored
Version is now 5.0.0-alpha.2-SNAPSHOT (#6606)
* Version is now 5.0.0-alpha.2-SNAPSHOT * update CHANGELOG * update package-lock.json
1 parent d06ab61 commit 12b46ab

18 files changed

+129
-78
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ Change Log
22
==========
33

44
# Next version
5+
# Version 5.0.0-alpha.1
6+
7+
* [fix] Fix `can't resolve apollo-gradle-plugin-tasks` ([#6603](https://github.com/apollographql/apollo-kotlin/pull/6603))
8+
* [new] Warn on unused fragments ([#6601](https://github.com/apollographql/apollo-kotlin/pull/6601))
9+
10+
511
# Version 5.0.0-alpha.0
612

713
This is the first alpha release of version 5.0.0. Previous `DeprecationLevel.WARNING` are turned into `DeprecationLevel.ERROR`. Previous `DeprecationLevel.ERROR` are removed.

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.apollo:apollo-ast:5.0.0-alpha.0")
24+
implementation("com.apollographql.apollo:apollo-ast:5.0.0-alpha.1")
2525
}
2626
```
2727

docs/source/advanced/compiler-plugins.mdx

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

3434
dependencies {
3535
// Add apollo-compiler as a compileOnly dependency
36-
compileOnly("com.apollographql.apollo:apollo-compiler:5.0.0-alpha.0")
36+
compileOnly("com.apollographql.apollo:apollo-compiler:5.0.0-alpha.1")
3737
}
3838
```
3939

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.apollo:apollo-runtime` dependency and replace it with:
88

99
```kotlin title="build.gradle"
10-
implementation("com.apollographql.apollo:apollo-api:5.0.0-alpha.0")
10+
implementation("com.apollographql.apollo:apollo-api:5.0.0-alpha.1")
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
@@ -17,7 +17,7 @@ To enable HTTP cache support, add the dependency to your project's `build.gradle
1717

1818
```kotlin title="build.gradle[.kts]"
1919
dependencies {
20-
implementation("com.apollographql.apollo:apollo-http-cache:5.0.0-alpha.0")
20+
implementation("com.apollographql.apollo:apollo-http-cache:5.0.0-alpha.1")
2121
}
2222
```
2323

docs/source/caching/normalized-cache.mdx

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

7575
```kotlin title="build.gradle[.kts]"
7676
dependencies {
77-
implementation("com.apollographql.apollo:apollo-normalized-cache:5.0.0-alpha.0")
77+
implementation("com.apollographql.apollo:apollo-normalized-cache:5.0.0-alpha.1")
7878
}
7979
```
8080

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

111111
```kotlin title="build.gradle.kts"
112112
dependencies {
113-
implementation("com.apollographql.apollo:apollo-normalized-cache-sqlite:5.0.0-alpha.0")
113+
implementation("com.apollographql.apollo:apollo-normalized-cache-sqlite:5.0.0-alpha.1")
114114
}
115115
```
116116

docs/source/index.mdx

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

4141
```kotlin
4242
plugins {
43-
id("com.apollographql.apollo") version "5.0.0-alpha.0"
43+
id("com.apollographql.apollo") version "5.0.0-alpha.1"
4444
}
4545
```
4646

4747
Add the runtime dependency:
4848

4949
```kotlin
5050
dependencies {
51-
implementation("com.apollographql.apollo:apollo-runtime:5.0.0-alpha.0")
51+
implementation("com.apollographql.apollo:apollo-runtime:5.0.0-alpha.1")
5252
}
5353
```
5454

@@ -165,29 +165,29 @@ Installation instructions and more information can be found [here](/kotlin/testi
165165

166166
## Releases
167167

168-
The latest version is `5.0.0-alpha.0`.
168+
The latest version is `5.0.0-alpha.1`.
169169

170170
Check the [changelog](https://github.com/apollographql/apollo-kotlin/releases) for the release history.
171171

172172
Releases are hosted on [Maven Central](https://repo1.maven.org/maven2/com/apollographql/apollo/). The plugin is additionally hosted on the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/com.apollographql.apollo)
173173

174174
```kotlin
175175
plugins {
176-
id("com.apollographql.apollo") version "5.0.0-alpha.0"
176+
id("com.apollographql.apollo") version "5.0.0-alpha.1"
177177
}
178178

179179
repositories {
180180
mavenCentral()
181181
}
182182

183183
dependencies {
184-
implementation("com.apollographql.apollo:apollo-runtime:5.0.0-alpha.0")
184+
implementation("com.apollographql.apollo:apollo-runtime:5.0.0-alpha.1")
185185

186186
// Optional: if you want to use the normalized cache
187-
implementation("com.apollographql.apollo:apollo-normalized-cache-sqlite:5.0.0-alpha.0")
187+
implementation("com.apollographql.apollo:apollo-normalized-cache-sqlite:5.0.0-alpha.1")
188188
// Optional: if you just want the generated models and parsers and write your own HTTP code/cache code, you can remove apollo-runtime
189189
// and use apollo-api instead
190-
implementation("com.apollographql.apollo:apollo-api:5.0.0-alpha.0")
190+
implementation("com.apollographql.apollo:apollo-api:5.0.0-alpha.1")
191191
}
192192
```
193193

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.apollo:apollo-debug-server:5.0.0-alpha.0")
20+
debugImplementation("com.apollographql.apollo:apollo-debug-server:5.0.0-alpha.1")
2121
}
2222
```
2323

docs/source/testing/mocking-graphql-responses.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add the dependency to your project's `build.gradle` file:
1414

1515
```kotlin title="build.gradle[.kts]"
1616
dependencies {
17-
testImplementation("com.apollographql.apollo:apollo-testing-support:5.0.0-alpha.0")
17+
testImplementation("com.apollographql.apollo:apollo-testing-support:5.0.0-alpha.1")
1818
}
1919
```
2020

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Publishing defaults, could ultimately be moved to build scripts
22
GROUP=com.apollographql.apollo
3-
VERSION_NAME=5.0.0-alpha.1-SNAPSHOT
3+
VERSION_NAME=5.0.0-alpha.2-SNAPSHOT
44

55
POM_URL=https://github.com/apollographql/apollo-kotlin/
66
POM_SCM_URL=https://github.com/apollographql/apollo-kotlin/

0 commit comments

Comments
 (0)