Skip to content

Commit 7b83d5f

Browse files
authored
Merge branch 'aws:master' into feature/rubysecurityscans
2 parents b242713 + 78b6865 commit 7b83d5f

24 files changed

+718
-498
lines changed

.changes/2.2.0.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"date": "2023-12-06",
3+
"version": "2.2.0",
4+
"entries": [
5+
{
6+
"type": "Breaking Change",
7+
"description": "validate that pom.xml is in root directory of project, not anywhere in project"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "AWS Toolkit submenus appear in other extension views #4111"
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "CodeCatalyst: \"No handler found\" error may occur when opening `vscode://` URI #4105"
16+
},
17+
{
18+
"type": "Bug Fix",
19+
"description": "CodeWhisperer: Security scans for Java no longer require build artifacts"
20+
},
21+
{
22+
"type": "Bug Fix",
23+
"description": "Amazon Q: Input prompt gets wrapped to new line which avoids focusing"
24+
}
25+
]
26+
}

.changes/next-release/Breaking Change-d11aa2b2-96e2-46f7-9a06-5fceab6299ec.json

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

.changes/next-release/Bug Fix-546034a4-7a26-4c29-b0ae-5f2ddb7b9697.json

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

.changes/next-release/Bug Fix-5caa0d38-8b96-437c-9710-3b288794d9ab.json

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

.changes/next-release/Bug Fix-d086954c-0bde-4ab8-9d07-7eac324faaf8.json

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

.changes/next-release/Bug Fix-dc5d5825-4d0e-4a2e-9ec3-63b4a0466662.json

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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.2.0 2023-12-06
2+
3+
- **Breaking Change** validate that pom.xml is in root directory of project, not anywhere in project
4+
- **Bug Fix** AWS Toolkit submenus appear in other extension views #4111
5+
- **Bug Fix** CodeCatalyst: "No handler found" error may occur when opening `vscode://` URI #4105
6+
- **Bug Fix** CodeWhisperer: Security scans for Java no longer require build artifacts
7+
- **Bug Fix** Amazon Q: Input prompt gets wrapped to new line which avoids focusing
8+
19
## 2.1.0 2023-11-30
210

311
- **Feature** Use MDE endpoint set by environment variable

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "aws-toolkit-vscode",
33
"displayName": "AWS Toolkit - Amazon Q, CodeWhisperer, and more",
44
"description": "Including Amazon Q, CodeWhisperer, CodeCatalyst, Application Composer, and support for Lambda, S3, CloudWatch Logs, CloudFormation, and many other services",
5-
"version": "2.2.0-SNAPSHOT",
5+
"version": "2.3.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],
@@ -4262,7 +4262,7 @@
42624262
},
42634263
"devDependencies": {
42644264
"@aws-sdk/types": "^3.13.1",
4265-
"@aws-toolkits/telemetry": "^1.0.167",
4265+
"@aws-toolkits/telemetry": "^1.0.169",
42664266
"@aws/fully-qualified-names": "^2.1.1",
42674267
"@cspotcode/source-map-support": "^0.8.1",
42684268
"@sinonjs/fake-timers": "^10.0.2",

src/amazonq/explorer/amazonQChildrenNodes.ts

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ import * as vscode from 'vscode'
77
import * as nls from 'vscode-nls'
88
import { Commands, placeholder } from '../../shared/vscode/commands2'
99
import { getIcon } from '../../shared/icons'
10-
import {
11-
focusAmazonQPanel,
12-
reconnect,
13-
showTransformByQ,
14-
transformTreeNode,
15-
} from '../../codewhisperer/commands/basicCommands'
10+
import { focusAmazonQPanel, reconnect, showTransformByQ } from '../../codewhisperer/commands/basicCommands'
1611
import { transformByQState } from '../../codewhisperer/models/model'
1712
import * as CodeWhispererConstants from '../../codewhisperer/models/constants'
1813
import { amazonQHelpUrl } from '../../shared/constants'
@@ -66,7 +61,7 @@ export const createTransformByQ = () => {
6661
if (transformByQState.isRunning()) {
6762
vscode.commands.executeCommand('setContext', 'gumby.isTransformAvailable', false)
6863
if (status === '') {
69-
// job is running but polling has not started yet, so display generic messsage
64+
// job is running but polling has not started yet, so display generic message
7065
status = CodeWhispererConstants.transformByQStateRunningMessage
7166
}
7267
} else if (transformByQState.isCancelled()) {
@@ -80,7 +75,7 @@ export const createTransformByQ = () => {
8075
} else if (transformByQState.isNotStarted()) {
8176
status = ''
8277
}
83-
return showTransformByQ.build(transformTreeNode).asTreeNode({
78+
return showTransformByQ.build(CodeWhispererConstants.transformTreeNode).asTreeNode({
8479
label: status !== '' ? `${prefix} Transform [Job status: ` + status + `]` : `Transform`,
8580
iconPath: transformByQState.getIconForButton(),
8681
tooltip: `${prefix} Transform`,

0 commit comments

Comments
 (0)