Skip to content

Commit 5911fbe

Browse files
committed
Merge branch 'release-3.65'
2 parents 08cde9e + ab8cebd commit 5911fbe

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

.changes/3.65.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-04-10",
3+
"version" : "3.65",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Fix issue where Amazon Q cannot process chunks from local `@workspace` context"
7+
} ]
8+
}

.changes/next-release/bugfix-00947041-108c-4ef1-bec6-eb749dae7c2f.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# _3.64_ (2025-04-10)
22
- **(Bug Fix)** Fix issue where IDE freezes when logging into Amazon Q
33

4+
# _3.65_ (2025-04-10)
5+
- **(Bug Fix)** Fix issue where Amazon Q cannot process chunks from local `@workspace` context
6+
47
# _3.63_ (2025-04-08)
58
- **(Feature)** Enterprise users can choose their preferred Amazon Q profile to improve personalization and workflow across different business regions
69
- **(Bug Fix)** Amazon Q /doc: close diff tab and open README file in preview mode after user accept changes

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Toolkit Version
5-
toolkitVersion=3.65-SNAPSHOT
5+
toolkitVersion=3.66-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/QLoginWebview.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class QWebviewBrowser(val project: Project, private val parentDisposable: Dispos
227227
}
228228

229229
is BrowserMessage.PublishWebviewTelemetry -> {
230-
publishTelemetry(message)
230+
// publishTelemetry(message)
231231
}
232232

233233
is BrowserMessage.OpenUrl -> {

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/toolwindow/AmazonQToolWindowFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class AmazonQToolWindowFactory : ToolWindowFactory, DumbAware {
8686
override fun onChange(providerId: String, newScopes: List<String>?) {
8787
if (ToolkitConnectionManager.getInstance(project).connectionStateForFeature(QConnection.getInstance()) == BearerTokenAuthState.AUTHORIZED) {
8888
AmazonQToolWindow.getInstance(project).disposeAndRecreate()
89-
qPanel.setContent(AmazonQToolWindow.getInstance(project).component)
89+
prepareChatContent(project, qPanel)
9090
}
9191
}
9292
}

plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/help/HelpIds.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,9 @@ enum class HelpIds(shortId: String, val url: String) {
126126
"https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/setup-credentials.html"
127127
),
128128

129-
// TODO: update this
130129
Q_SWITCH_PROFILES_DIALOG(
131130
"QSwitchProfilesDialog",
132-
"https://aws.amazon.com/q/developer/"
131+
"https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/subscribe-understanding-profile.html"
133132
),
134133
;
135134

plugins/core/jetbrains-community/tst/software/aws/toolkits/jetbrains/core/LoginBrowserTest.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import com.intellij.ui.jcef.JBCefBrowserBase
99
import com.intellij.ui.jcef.JBCefJSQuery
1010
import org.assertj.core.api.Assertions.assertThat
1111
import org.junit.jupiter.api.BeforeEach
12+
import org.junit.jupiter.api.Disabled
1213
import org.junit.jupiter.api.Test
1314
import org.junit.jupiter.api.extension.RegisterExtension
1415
import org.mockito.kotlin.argumentCaptor
@@ -34,6 +35,7 @@ class TestLoginBrowser(project: Project) : LoginBrowser(project, "", "") {
3435
override fun loadWebView(query: JBCefJSQuery) {}
3536
}
3637

38+
@Disabled
3739
class LoginBrowserTest {
3840
private lateinit var sut: TestLoginBrowser
3941
private val project: Project

0 commit comments

Comments
 (0)