Skip to content

Commit be9fba9

Browse files
authored
[IJ plugin] Update platformVersion to 223 (#5166)
1 parent f54e587 commit be9fba9

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

docs/source/testing/android-studio-plugin.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ The plugin is available on the JetBrains plugin repository. To install it from t
1111

1212
At the time of writing, the plugin is supported on:
1313

14-
- IntelliJ 2022.2 and above
15-
- Android Studio 2022.2 (Flamingo) and above
14+
- IntelliJ 2022.3 and above
15+
- Android Studio 2022.3 (Giraffe) and above
1616

1717
Please check the [plugin page](https://plugins.jetbrains.com/plugin/20645-apollo-graphql) for up to date information.
1818

intellij-plugin/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ This plugin for Android Studio and IntelliJ helps you work with the
1111
## Features
1212
- Automatic code generation: models are re-generated whenever GraphQL files change
1313
- Integration with the [GraphQL IntelliJ Plugin](https://plugins.jetbrains.com/plugin/8097-js-graphql): the structure of the Apollo project is automatically contributed, so there is no need to create a `graphql.config.yml` / `.graphqlconfig` file
14-
- Navigation from Kotlin code to GraphQL definitions
14+
- Navigation Kotlin code ⇄ GraphQL definitions
15+
- Unused operations and fields highlighting
1516
- Migration helpers:
1617
- Apollo Android 2.x → Apollo Kotlin 3.x
1718
- Apollo Kotlin 3.x → Apollo Kotlin 4.x (WIP)
@@ -28,8 +29,8 @@ This plugin for Android Studio and IntelliJ helps you work with the
2829

2930
The plugin is supported on:
3031

31-
- IntelliJ 2022.2 and above
32-
- Android Studio 2022.2 (Flamingo) and above
32+
- IntelliJ 2022.3 and above
33+
- Android Studio 2022.6 (Giraffe) and above
3334

3435
## Installation instructions
3536

intellij-plugin/gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ pluginRepositoryUrl=https://github.com/apollographql/apollo-kotlin
99
# XXX Do update the supported versions in the README.md, and in docs/source/testing/android-studio-plugin.mdx file when updating these values!
1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
12-
pluginSinceBuild=222
12+
pluginSinceBuild=223
1313
# This can be kept empty to mean no upper bound, but it's recommended to set it to whatever was tested
1414
pluginUntilBuild=232.*
1515
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
1616
platformType=IC
17-
# Corresponds to AS Flamingo 2022.2.1 Canary 1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
17+
# Corresponds to AS Giraffe 2022.3.1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
1818
# and https://developer.android.com/studio/archive (more up to date)
1919
# See also https://plugins.jetbrains.com/docs/intellij/android-studio.html
20-
platformVersion=222.3739.54
20+
platformVersion=223.8836.41
2121

2222

2323
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
2424
# To find the version of a plugin relative to the platoform version, see the plugin's page on the Marketplace,
2525
# e.g. for the toml plugin: https://plugins.jetbrains.com/plugin/8195-toml/versions/stable
2626
# Note: jsgraphql has 2 published versions: one with `pluginSinceBuild` set to latest, and one set to an older (more broadly available) version.
27-
platformPlugins=com.intellij.java, org.jetbrains.kotlin, com.intellij.gradle, com.intellij.lang.jsgraphql:4.0.1-222, org.toml.lang:222.3739.16
27+
platformPlugins=com.intellij.java, org.jetbrains.kotlin, com.intellij.gradle, com.intellij.lang.jsgraphql:4.0.1-222, org.toml.lang:223.8214.6
2828

2929
# JVM language level used to build project. Use Java 11 for 2020.3+, and Java 17 for 2022.2+.
3030
javaVersion=17

0 commit comments

Comments
 (0)