From 352a7b9605b13d84d5e2bf0747c2bf96f0679617 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 25 Nov 2022 00:25:47 +0200 Subject: [PATCH 01/19] Impl: build against latest 2022.3 build --- build.gradle.kts | 2 +- gradle.properties | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 638749cd..5b056df8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,7 @@ dependencies { // Configure project's dependencies repositories { mavenCentral() - maven(url = "https://www.jetbrains.com/intellij-repository/releases") + maven(url = "https://www.jetbrains.com/intellij-repository/snapshots") } // Configure Gradle IntelliJ Plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin diff --git a/gradle.properties b/gradle.properties index ea766834..6c1cd136 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,13 +6,13 @@ pluginName=coder-gateway pluginVersion=2.1.2 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. -pluginSinceBuild=222.3739.54 -pluginUntilBuild=222.* +pluginSinceBuild=223.7571.70 +pluginUntilBuild=223.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties # Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases platformType=GW -platformVersion=222.4459.11-CUSTOM-SNAPSHOT -instrumentationCompiler=222.4459.11-CUSTOM-SNAPSHOT +platformVersion=223.7571.70-CUSTOM-SNAPSHOT +instrumentationCompiler=223.7571.70-CUSTOM-SNAPSHOT platformDownloadSources=true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 From 183bd97ba7c6f727dfc23acd049c0932809ec29e Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 25 Nov 2022 00:30:49 +0200 Subject: [PATCH 02/19] Next version: 3.0.0-eap - major version changed because of Gateway API is incompatible with older versions - eap is now the release channel. --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 6c1cd136..15016dd8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ pluginGroup=com.coder.gateway pluginName=coder-gateway # SemVer format -> https://semver.org -pluginVersion=2.1.2 +pluginVersion=3.0.0-eap # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. pluginSinceBuild=223.7571.70 From b15d5f934befd694f9eecee6aa3d26b707cb4d2d Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 25 Nov 2022 01:03:20 +0200 Subject: [PATCH 03/19] Fix: build with Gateway 2022.3 RC API --- CHANGELOG.md | 3 +++ src/main/kotlin/com/coder/gateway/sdk/os.kt | 4 +++- .../views/CoderGatewayRecentWorkspaceConnectionsView.kt | 3 ++- .../gateway/views/steps/CoderLocateRemoteProjectStepView.kt | 6 +++--- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca6f3920..e6c21327 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## Unreleased +### Added +- support for Gateway 2022.3 RC + ## 2.1.2 - 2022-11-23 ### Added diff --git a/src/main/kotlin/com/coder/gateway/sdk/os.kt b/src/main/kotlin/com/coder/gateway/sdk/os.kt index c8682b32..5df3f35a 100644 --- a/src/main/kotlin/com/coder/gateway/sdk/os.kt +++ b/src/main/kotlin/com/coder/gateway/sdk/os.kt @@ -1,11 +1,13 @@ package com.coder.gateway.sdk +import java.util.Locale + fun getOS(): OS? { return OS.from(System.getProperty("os.name")) } fun getArch(): Arch? { - return Arch.from(System.getProperty("os.arch").toLowerCase()) + return Arch.from(System.getProperty("os.arch").lowercase(Locale.getDefault())) } enum class OS { diff --git a/src/main/kotlin/com/coder/gateway/views/CoderGatewayRecentWorkspaceConnectionsView.kt b/src/main/kotlin/com/coder/gateway/views/CoderGatewayRecentWorkspaceConnectionsView.kt index 852133ef..f7484a24 100644 --- a/src/main/kotlin/com/coder/gateway/views/CoderGatewayRecentWorkspaceConnectionsView.kt +++ b/src/main/kotlin/com/coder/gateway/views/CoderGatewayRecentWorkspaceConnectionsView.kt @@ -37,6 +37,7 @@ import kotlinx.coroutines.cancel import kotlinx.coroutines.launch import java.awt.Component import java.awt.Dimension +import java.util.Locale import javax.swing.JComponent import javax.swing.JLabel import javax.swing.event.DocumentEvent @@ -70,7 +71,7 @@ class CoderGatewayRecentWorkspaceConnectionsView(private val setContentCallback: addDocumentListener(object : DocumentAdapter() { override fun textChanged(e: DocumentEvent) { val toSearchFor = this@applyToComponent.text - val filteredConnections = recentConnectionsService.getAllRecentConnections().filter { it.coderWorkspaceHostname?.toLowerCase()?.contains(toSearchFor) ?: false || it.projectPath?.toLowerCase()?.contains(toSearchFor) ?: false } + val filteredConnections = recentConnectionsService.getAllRecentConnections().filter { it.coderWorkspaceHostname?.lowercase(Locale.getDefault())?.contains(toSearchFor) ?: false || it.projectPath?.lowercase(Locale.getDefault())?.contains(toSearchFor) ?: false } updateContentView(filteredConnections.groupBy { it.coderWorkspaceHostname }) } }) diff --git a/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt b/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt index 60857104..4537562a 100644 --- a/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt +++ b/src/main/kotlin/com/coder/gateway/views/steps/CoderLocateRemoteProjectStepView.kt @@ -34,7 +34,6 @@ import com.jetbrains.gateway.ssh.HighLevelHostAccessor import com.jetbrains.gateway.ssh.IdeStatus import com.jetbrains.gateway.ssh.IdeWithStatus import com.jetbrains.gateway.ssh.IntelliJPlatformProduct -import com.jetbrains.gateway.ssh.deploy.guessOs import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.cancel @@ -42,6 +41,7 @@ import kotlinx.coroutines.launch import kotlinx.coroutines.withContext import java.awt.Component import java.awt.FlowLayout +import java.util.Locale import javax.swing.ComboBoxModel import javax.swing.DefaultComboBoxModel import javax.swing.JLabel @@ -125,7 +125,7 @@ class CoderLocateRemoteProjectStepView(private val disableNextAction: () -> Unit HighLevelHostAccessor.create( credentialsHolder, true - ).hostCommandExecutor.guessOs() + ).guessOs() } catch (e: Exception) { logger.error("Could not resolve any IDE for workspace ${selectedWorkspace.name}. Reason: $e") null @@ -235,7 +235,7 @@ class CoderLocateRemoteProjectStepView(private val disableNextAction: () -> Unit JPanel().apply { layout = FlowLayout(FlowLayout.LEFT) add(JLabel(ideWithStatus.product.ideName, ideWithStatus.product.icon, SwingConstants.LEFT)) - add(JLabel("${ideWithStatus.product.productCode} ${ideWithStatus.presentableVersion} ${ideWithStatus.buildNumber} | ${ideWithStatus.status.name.toLowerCase()}").apply { + add(JLabel("${ideWithStatus.product.productCode} ${ideWithStatus.presentableVersion} ${ideWithStatus.buildNumber} | ${ideWithStatus.status.name.lowercase(Locale.getDefault())}").apply { foreground = UIUtil.getLabelDisabledForeground() }) background = UIUtil.getListBackground(isSelected, cellHasFocus) From 764e11246646cd8814d748c8dcad0c94a984417b Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Mon, 28 Nov 2022 15:47:31 +0200 Subject: [PATCH 04/19] Change version to 2.1.2-eap.0 - I think it's better for MAJOR.MINOR.PATCH to be synchronized with main branch. - the first three versions will change when business will change while `eap-x` will be increased when support for new Gateway releases is added --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 15016dd8..d4ba2366 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ pluginGroup=com.coder.gateway pluginName=coder-gateway # SemVer format -> https://semver.org -pluginVersion=3.0.0-eap +pluginVersion=2.1.2-eap.0 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. pluginSinceBuild=223.7571.70 From 748303b54fb691d963481f2854273c46e2d22564 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Mon, 28 Nov 2022 16:08:29 +0200 Subject: [PATCH 05/19] Publish eap version on default release channel - release channels other than default one have to be configured by users the Jetbrains products which is a bit inconvenient. - as long as the Gateway supported versions don't overlap with main branch then it's safe to release in the main channel. --- build.gradle.kts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5b056df8..1ede31b1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -134,9 +134,5 @@ tasks { publishPlugin { dependsOn("patchChangelog") token.set(System.getenv("PUBLISH_TOKEN")) - // pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 - // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: - // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel - channels.set(listOf(properties("pluginVersion").split('-').getOrElse(1) { "default" }.split('.').first())) } } From c180881b81450fe3eea318d04eb91bb03c7c5b47 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Mon, 28 Nov 2022 16:14:59 +0200 Subject: [PATCH 06/19] Execute github actions on eap branch --- .github/dependabot.yml | 4 ++-- .github/workflows/build.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4cb13685..c42448da 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: # Maintain dependencies for Gradle dependencies - package-ecosystem: "gradle" directory: "/" - target-branch: "main" + target-branch: "eap" schedule: interval: "weekly" time: "06:00" @@ -16,7 +16,7 @@ updates: # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" directory: "/" - target-branch: "main" + target-branch: "eap" schedule: interval: "weekly" time: "06:00" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 97dddfb3..25483dbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ name: Coder Gateway Plugin Build on: # Trigger the workflow on pushes to only the 'main' branch (this avoids duplicate checks being run e.g. for dependabot pull requests) push: - branches: [ main ] + branches: [ eap ] # Trigger the workflow on any pull request pull_request: From 9bbaadda00680f5adf0441ef41641474e94eedc0 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Mon, 28 Nov 2022 23:12:27 +0200 Subject: [PATCH 07/19] Changelog update should happen on eap branch --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 86749131..4d5fe0d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,5 +85,5 @@ jobs: gh pr create \ --title "Changelog update - \`$VERSION\`" \ --body "Current pull request contains patched \`CHANGELOG.md\` file for the \`$VERSION\` version." \ - --base main \ + --base eap \ --head $BRANCH \ No newline at end of file From 61eccfa21b7d596b2df1ebc3a6eae5622b75c64b Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Tue, 29 Nov 2022 12:23:01 +0200 Subject: [PATCH 08/19] publish release draft from eap branch --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 25483dbb..cef846fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -151,6 +151,7 @@ jobs: run: | gh release create v${{ needs.build.outputs.version }} \ --draft \ + --target eap \ --title "v${{ needs.build.outputs.version }}" \ --notes "$(cat << 'EOM' ${{ needs.build.outputs.changelog }} From 3f20fc140e06cd8d3203c2af3d36573ffb6cb891 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Tue, 29 Nov 2022 12:24:22 +0200 Subject: [PATCH 09/19] log more details when building and publishing plugin --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cef846fc..266be2b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,7 +80,7 @@ jobs: # Run plugin build - name: Run Build - run: ./gradlew clean buildPlugin + run: ./gradlew clean buildPlugin --info # until https://github.com/JetBrains/gradle-intellij-plugin/issues/1027 is solved diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d5fe0d9..1758e8f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: CERTIFICATE_CHAIN: ${{ secrets.CERTIFICATE_CHAIN }} PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }} - run: ./gradlew publishPlugin + run: ./gradlew publishPlugin --info # Upload artifact as a release asset - name: Upload Release Asset From 762fcee7e16c6e84674463be3a2b5468f58d9845 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 29 Nov 2022 10:32:28 +0000 Subject: [PATCH 10/19] Changelog update - v2.1.2-eap.0 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6c21327..65519aaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,15 @@ ## Unreleased +## 2.1.2-eap.0 - 2022-11-29 + ### Added - support for Gateway 2022.3 RC +- upgraded support for the latest Coder REST API +- support for latest Gateway 2022.2.x builds + +### Fixed +- authentication flow is now done using HTTP headers ## 2.1.2 - 2022-11-23 From 79db16e3a2039a2482b75fee99f0b9a973137c66 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 12 Dec 2022 18:57:54 +0000 Subject: [PATCH 11/19] Changelog update - v2.1.3-eap.0 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 962d2df1..bd1a3bb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ## Unreleased +## 2.1.3-eap.0 - 2022-12-12 Bug fixes and enhancements included in `2.1.3` release: ### Added From 3d1a336988a7fcad51f0edb490f35bb513a88076 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Sat, 24 Dec 2022 00:51:49 +0200 Subject: [PATCH 12/19] chore: update Gateway build --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index fe485caf..07367dc1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,8 +11,8 @@ pluginUntilBuild=223.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties # Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases platformType=GW -platformVersion=223.7571.70-CUSTOM-SNAPSHOT -instrumentationCompiler=223.7571.70-CUSTOM-SNAPSHOT +platformVersion=223.8214.51-CUSTOM-SNAPSHOT +instrumentationCompiler=223.8214.51-CUSTOM-SNAPSHOT platformDownloadSources=true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 From 59b7f39d604b56b348e599bc50253af334db29d2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 23 Dec 2022 23:07:26 +0000 Subject: [PATCH 13/19] Changelog update - v2.1.4-eap.0 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1bea693..dcf5154a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ # coder-gateway Changelog ## Unreleased + +## 2.1.4-eap.0 - 2022-12-23 Bug fixes and enhancements included in `2.1.4` release: ### Added From bb02d973e2e58f5307b0575542df030262a253c1 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Tue, 24 Jan 2023 11:10:10 -0600 Subject: [PATCH 14/19] release 2.15 From d23076742f1d13b0b5d607519cb91c15e81d70da Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 24 Jan 2023 19:25:55 +0000 Subject: [PATCH 15/19] Changelog update - v2.1.5-eap.0 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1adaf45..81019a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## Unreleased +## 2.1.5-eap.0 - 2023-01-24 + ### Fixed - support for `Remote Development` in the Jetbrains IDE's From 79eacf1e71fe1953660e7485f21f9a5fd1321361 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Wed, 25 Jan 2023 14:03:49 -0600 Subject: [PATCH 16/19] fix URLs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 02b66711..fa9fe22f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Discord"](https://img.shields.io/badge/join-us%20on%20Discord-gray.svg?longCache=true&logo=discord&colorB=purple)](https://discord.gg/coder) [![Twitter Follow](https://img.shields.io/twitter/follow/CoderHQ?label=%40CoderHQ&style=social)](https://twitter.com/coderhq) -[![Coder Gateway Plugin Build](https://github.com/coder/coder-jetbrains/actions/workflows/build.yml/badge.svg)](https://github.com/coder/coder-jetbrains/actions/workflows/build.yml) +[![Coder Gateway Plugin Build](https://github.com/coder/jetbrains-coder/actions/workflows/build.yml/badge.svg)](https://github.com/coder/jetbrains-coder/actions/workflows/build.yml) **Coder Gateway** connects your JetBrains IDE to [Coder](https://coder.com/docs/coder-oss/) workspaces so that you can develop from anywhere. @@ -256,10 +256,10 @@ while `maxCompatibleCoderVersion` specifies the upper bound. [gh:gradle-intellij-plugin-docs]: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html -[gh:releases]: https://github.com/coder/coder-jetbrains/releases +[gh:releases]: https://github.com/coder/jetbrains-coder/releases [jb:my-tokens]: https://plugins.jetbrains.com/author/me/tokens [keep-a-changelog]: https://keepachangelog.com -[keep-a-changelog-how]: https://keepachangelog.com/en/1.0.0/#how \ No newline at end of file +[keep-a-changelog-how]: https://keepachangelog.com/en/1.0.0/#how From a196cc2716f394ec3bed7ff75f6c58d4e72f2066 Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Fri, 27 Jan 2023 22:28:39 +0200 Subject: [PATCH 17/19] chore: develop using latest Gateway 2022.3.2 --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 130124e3..6c1e1163 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,8 +11,8 @@ pluginUntilBuild=223.* # IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties # Gateway available build versions https://www.jetbrains.com/intellij-repository/snapshots and https://www.jetbrains.com/intellij-repository/releases platformType=GW -platformVersion=223.8214.51-CUSTOM-SNAPSHOT -instrumentationCompiler=223.8214.51-CUSTOM-SNAPSHOT +platformVersion=223.8617.56-CUSTOM-SNAPSHOT +instrumentationCompiler=223.8617.56-CUSTOM-SNAPSHOT platformDownloadSources=true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 From 976e84119c8d6807aa0519947b6373c461c4a8cf Mon Sep 17 00:00:00 2001 From: Faur Ioan-Aurel Date: Thu, 2 Feb 2023 00:28:39 +0200 Subject: [PATCH 18/19] chore: update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b397385e..ed45eaa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## Unreleased +### Fixed +- improved resiliency and error handling when resolving installed IDE's + ## 2.1.6 - 2023-02-01 ### Fixed From 8b30415bc220d36fd70958a8939ccff66a9ad449 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 2 Feb 2023 13:13:04 +0000 Subject: [PATCH 19/19] Changelog update - v2.1.6-eap.0 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed45eaa0..cf131090 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## Unreleased +## 2.1.6-eap.0 - 2023-02-02 + ### Fixed - improved resiliency and error handling when resolving installed IDE's