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

Update IntelliJ version to 2022.3.1 #333

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 core/driver/sources/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ probe {
// Nevertheless, best if you provide both values that match because ide-probe uses `version.release`
// to choose the version and `version.build` number for naming cache directories etc.
version {
build = "212.5080.55"
release = "2021.2.1"
build = "223.8214.52"
release = "2022.3.1"

// `ext` stands for the file extension (file format). This config specifies which extension should be
// downloaded and installed. By default, ".zip" distributions of IntelliJ IDEA are downloaded. For now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class IdeProbeConfigTest extends IdeProbeFixture {
val probeConfig = IntelliJFixture.readIdeProbeConfig(config, configRoot)
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("212.5080.55", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals("223.8214.52", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2022.3.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Seq.empty, probeConfig.intellij.asInstanceOf[IntellijConfig.Default].plugins)
// test for the workspace: Option[WorkspaceConfig] field
assertEquals(None, probeConfig.workspace)
Expand Down Expand Up @@ -79,7 +79,7 @@ class IdeProbeConfigTest extends IdeProbeFixture {
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("201.6668.121", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Some("2022.3.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(1, probeConfig.intellij.plugins.size)
assertTrue(probeConfig.intellij.plugins.head.isInstanceOf[Plugin.Versioned])
assertEquals("org.intellij.scala", probeConfig.intellij.plugins.head.asInstanceOf[Plugin.Versioned].id)
Expand Down