You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(amazonq): add support for CodeReview and DisplayFindings tools, alter behavior of explain and fix buttons (#5970)
* feat(amazonq): add support for CodeReview and DisplayFindings tools, alter behavior of explain and fix buttons
* fix(amazonq): remove commented lines
* feat(amazonq): add support for CodeReview and DisplayFindings tools, alter behavior of explain and fix buttons
* fix(amazonq): remove commented lines
* fix(amazonq): general code quality fixes for CodeReview and DisplayFindings tools
* fix(amazonq): Prevents Q UriError : Validate file URI and fallback to Path.toUri() for WSL (#5960)
Fix repeated UriError when Amazon Q starts with a WSL-backed workspace. We now validate the constructed file: URI and fallback to JDK’s Path.toUri() if the URI violates Rule (no authority while the path begins with //, maybe RFC 3986). This keeps legacy behavior where it’s safe, and prevents Q from rejecting the workspace folder URI
* feat(amazonq): show the opt-in checkbox for server-side context (#5894)
We need to support client-side opt-out for internal users who have workspace context server running by default.
* fix(amazonq): delete AwsServerCapabilitiesProvider (#5833)
It is not actually needed; we can read the values from AmazonQLspService
* feat(amazonq): add support for CodeReview and DisplayFindings tools, alter behavior of explain and fix buttons
* Revert "feat(amazonq): add support for CodeReview and DisplayFindings tools, alter behavior of explain and fix buttons"
This reverts commit f21c028.
* fix(amazonq): fix formatting issues
* fix(amazonq): fix more formatting issues
* fix(amazonq): fix build failures
* fix(amazonq): undo unrelated change
* fix(amazonq): address codeReview comments
* fix(amazonq): fixing detekt errors
* feat(amazonq): emit telemetry events for explainIssue and applyFix commands
* feat(amazonq): add unit tests for parseFindingsMessage
* fix(amazonq): fix detekt errors
* fix(amazonq): fix re-direct of /review action
* fix(amazonq): improve handling of case where messageId is null
* fix(amazonq): Add changelog, code quality improvements
* fix(amazonq): address comments
* fix(amazonq): remove unused import
---------
Co-authored-by: Blake Lazarine <[email protected]>
Co-authored-by: Lee Won Jun <[email protected]>
Co-authored-by: Jiatong Li <[email protected]>
Co-authored-by: Richard Li <[email protected]>
Co-authored-by: Laxman Reddy <[email protected]>
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/webview/BrowserConnector.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/commands/EditorContextCommand.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,8 @@ enum class EditorContextCommand(
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/commands/codescan/actions/HandleIssueCommandAction.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/controller/chat/telemetry/TelemetryHelper.kt
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -441,6 +441,26 @@ class TelemetryHelper(private val project: Project, private val sessionStorage:
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/controller/chat/userIntent/UserIntentRecognizer.kt
0 commit comments