Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IJ plugin] Update platformVersion to 223 #5166

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/testing/android-studio-plugin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ The plugin is available on the JetBrains plugin repository. To install it from t

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

- IntelliJ 2022.2 and above
- Android Studio 2022.2 (Flamingo) and above
- IntelliJ 2022.3 and above
- Android Studio 2022.3 (Giraffe) and above

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

Expand Down
7 changes: 4 additions & 3 deletions intellij-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ This plugin for Android Studio and IntelliJ helps you work with the
## Features
- Automatic code generation: models are re-generated whenever GraphQL files change
- 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
- Navigation from Kotlin code to GraphQL definitions
- Navigation Kotlin code ⇄ GraphQL definitions
- Unused operations and fields highlighting
- Migration helpers:
- Apollo Android 2.x → Apollo Kotlin 3.x
- Apollo Kotlin 3.x → Apollo Kotlin 4.x (WIP)
Expand All @@ -28,8 +29,8 @@ This plugin for Android Studio and IntelliJ helps you work with the

The plugin is supported on:

- IntelliJ 2022.2 and above
- Android Studio 2022.2 (Flamingo) and above
- IntelliJ 2022.3 and above
- Android Studio 2022.6 (Giraffe) and above

## Installation instructions

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


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

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