Skip to content

Commit 9914eca

Browse files
authored
start 6.x.x development (ExpediaGroup#1353)
Bump dev version to `6.0.0-SNAPSHOT` and cut `5.x.x` version of the docs. Bump to latest docusaurus version.
1 parent 65940df commit 9914eca

File tree

71 files changed

+7039
-35
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+7039
-35
lines changed

examples/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.expediagroup
2-
version = 5.0.0-SNAPSHOT
2+
version = 6.0.0-SNAPSHOT
33

44
# build config
55
org.gradle.caching=true

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = com.expediagroup
2-
version = 5.0.0-SNAPSHOT
2+
version = 6.0.0-SNAPSHOT
33

44
# build config
55
org.gradle.caching=true

plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ android {
1616
}
1717
}
1818

19-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
19+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
2020
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.5.31"
2121
dependencies {
2222
implementation("com.expediagroup:graphql-kotlin-ktor-client:$graphQLKotlinVersion")

plugins/graphql-kotlin-gradle-plugin/src/integration/android/androidGraphQLClient/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
val androidPluginVersion = System.getenv("ANDROID_PLUGIN_VERSION") ?: "7.0.1"
13-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
13+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
1414
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.5.31"
1515
dependencies {
1616
classpath("com.android.tools.build:gradle:$androidPluginVersion")

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/custom_scalars/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212
}
1313
}
1414

15-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
15+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
1616
dependencies {
1717
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:$graphQLKotlinVersion")
1818
}
@@ -38,7 +38,7 @@ repositories {
3838
}
3939
}
4040

41-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
41+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
4242
val icuVersion = System.getenv("ICU_VERSION") ?: "69.1"
4343
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.7.2"
4444
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.5.31"

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/jacoco/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
}
1111

12-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
12+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
1313
dependencies {
1414
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:$graphQLKotlinVersion")
1515
}
@@ -31,7 +31,7 @@ repositories {
3131
}
3232
}
3333

34-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
34+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
3535
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.7.2"
3636
val mockkVersion = System.getenv("MOCKK_VERSION") ?: "1.11.0"
3737
dependencies {

plugins/graphql-kotlin-gradle-plugin/src/integration/client-generator/skip_include/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212
}
1313

14-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
14+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
1515
dependencies {
1616
classpath("com.expediagroup:graphql-kotlin-gradle-plugin:$graphQLKotlinVersion")
1717
}
@@ -37,7 +37,7 @@ repositories {
3737
}
3838
}
3939

40-
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "5.0.0-SNAPSHOT"
40+
val graphQLKotlinVersion = System.getenv("GRAPHQL_KOTLIN_VERSION") ?: "6.0.0-SNAPSHOT"
4141
val icuVersion = System.getenv("ICU_VERSION") ?: "69.1"
4242
val junitVersion = System.getenv("JUNIT_VERSION") ?: "5.7.2"
4343
val kotlinVersion = System.getenv("KOTLIN_VERSION") ?: "1.5.31"

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
sidebarPath: require.resolve('./sidebars.js'),
2828
versions: {
2929
current: {
30-
label: "5.x.x",
30+
label: "6.x.x",
3131
path: ""
3232
}
3333
}

website/package-lock.json

Lines changed: 92 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"swizzle": "docusaurus swizzle"
1717
},
1818
"dependencies": {
19-
"@docusaurus/core": "^2.0.0-beta.9",
20-
"@docusaurus/preset-classic": "^2.0.0-beta.9",
19+
"@docusaurus/core": "^2.0.0-beta.15",
20+
"@docusaurus/preset-classic": "^2.0.0-beta.15",
2121
"react": "^16.10.2",
2222
"react-dom": "^16.10.2"
2323
}
Loading
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
id: blogs-and-videos
3+
title: Blogs & Videos
4+
---
5+
Here are some links to other blog posts and videos which may provide further examples and reading.
6+
7+
## graphql-kotlin
8+
9+
Articles and videos specifically about `graphql-kotlin`
10+
11+
- 📝  [GraphQL Kotlin 4.0.0 Release](https://medium.com/expedia-group-tech/graphql-kotlin-4-0-0-release-eb87e150a192)
12+
- 📺  [Bootiful GraphQL with Kotlin (Dariusz Kuc, Guillaume Scheibel)(Spring One 2020)](https://www.youtube.com/watch?v=t9He4vHZC24) (en)
13+
- 📺  [Bootiful GraphQL with Kotlin (Dariusz Kuc)(GOTO Chicago 2020)](https://www.youtube.com/watch?v=1siPT1pTXFU) (en)
14+
- 📝  [Introducing GraphQL Kotlin Client](https://medium.com/expedia-group-tech/introducing-graphql-kotlin-client-b32dc3061a6f)
15+
- 📝  [Announcing graphql-kotlin 2.0!](https://medium.com/expedia-group-tech/graphql-kotlin-2-0-4006ea41f774)
16+
- 📺  [Bootiful GraphQL with Kotlin (Dariusz Kuc, Guillaume Scheibel)(KotlinConf 2019)](https://www.youtube.com/watch?v=7YJyPXjLdug&index=25) (en)
17+
- 📝  [Creating a Reactive GraphQL Server with Spring Boot and Kotlin](https://medium.com/expedia-group-tech/creating-a-reactive-graphql-server-with-spring-boot-and-kotlin-54aca7316470)
18+
- 📝  [Apollo Federation in a GraphQL Kotlin Server](https://medium.com/expedia-group-tech/apollo-federation-in-a-graphql-kotlin-server-115cea51607a)
19+
- 📝  [Creating GraphQL Schemas in Kotlin](https://medium.com/expedia-group-tech/creating-graphql-schemas-in-kotlin-aaaac0ab0672)
20+
- 📝  [Release of graphql-kotlin 1.0.0!](https://medium.com/expedia-group-tech/release-of-graphql-kotlin-1-0-0-791ad85d3116)
21+
- 📝  [graphql-kotlin: Generate a GraphQL schema from Kotlin code](https://medium.com/expedia-group-tech/graphql-kotlin-generate-a-graphql-schema-from-kotlin-code-21d1dc2f6e27)
22+
23+
## GraphQL
24+
25+
Articles and videos about how Expedia Group is using GraphQL
26+
27+
- 📝  [Expedia Group Case Study: Bootiful APIs With GraphQL and Kotlin](https://kotlinlang.org/lp/server-side/case-studies/expedia)
28+
- 📝  [Expedia Group Transforms Product Development with Apollo](https://www.apollographql.com/customers/expediagroup/)
29+
- 📺  [Creating a federated schema for a global company (Shane Myrick)](https://youtu.be/MuD3TAP0D9Y) (en)
30+
- 📺  [Migrer ses APIs vers GraphQL: pourquoi? comment! (Guillaume Scheibel)](https://youtu.be/IRIkpvJo95s) (fr)
31+
- 📺  [Migrate your APIs to GraphQL: how? and why! (Guillaume Scheibel)](https://youtu.be/IkPMpzQ-TRI) (en)
32+
- 📺  [Transforming customer experiences and your organization with GraphQL (Jim Gust, Dan Boerner)](https://youtu.be/Jt-ZD4zj4Ow) (en)

0 commit comments

Comments
 (0)