From de6b92d504f612107a840980b7279d00bae13fdc Mon Sep 17 00:00:00 2001 From: Lei Gao Date: Thu, 17 Apr 2025 08:35:51 -0700 Subject: [PATCH 1/2] fix quit race condition --- .../bugfix-de10b7d3-8c8a-4968-88cb-ed28ce3a553e.json | 4 ++++ .../services/amazonq/project/manifest/ManifestManager.kt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-de10b7d3-8c8a-4968-88cb-ed28ce3a553e.json diff --git a/.changes/next-release/bugfix-de10b7d3-8c8a-4968-88cb-ed28ce3a553e.json b/.changes/next-release/bugfix-de10b7d3-8c8a-4968-88cb-ed28ce3a553e.json new file mode 100644 index 00000000000..1c00b0e3f21 --- /dev/null +++ b/.changes/next-release/bugfix-de10b7d3-8c8a-4968-88cb-ed28ce3a553e.json @@ -0,0 +1,4 @@ +{ + "type" : "bugfix", + "description" : "Fix workspace index process quits when hitting a race condition" +} \ No newline at end of file diff --git a/plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/manifest/ManifestManager.kt b/plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/manifest/ManifestManager.kt index 52b95acf976..69eb7ddf78f 100644 --- a/plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/manifest/ManifestManager.kt +++ b/plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/manifest/ManifestManager.kt @@ -15,7 +15,7 @@ import software.aws.toolkits.jetbrains.core.getTextFromUrl class ManifestManager { private val cloudFrontUrl = "https://aws-toolkit-language-servers.amazonaws.com/q-context/manifest.json" - val currentVersion = "0.1.46" + val currentVersion = "0.1.49" val currentOs = getOs() private val arch = CpuArch.CURRENT private val mapper = jacksonObjectMapper() From ca39f32735f060f67300d010e761c96d065a2073 Mon Sep 17 00:00:00 2001 From: Lei Gao Date: Thu, 17 Apr 2025 12:58:52 -0700 Subject: [PATCH 2/2] Empty commit message