Skip to content

Commit 61738fe

Browse files
authored
Merge branch 'aws:master' into master
2 parents dfa65ba + eedf096 commit 61738fe

File tree

119 files changed

+4279
-1039
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+4279
-1039
lines changed

.changes/2.1.0.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"date": "2023-11-30",
3+
"version": "2.1.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Use MDE endpoint set by environment variable"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "AWS Application Composer is now available from the AWS Toolkit for Visual Studio Code. Visualize and design AWS CloudFormation and AWS SAM applications from your local machine. Use integrations with featured services such as Amazon CodeWhisperer, AWS Step Functions, and AWS SAM to improve your development experience."
12+
}
13+
]
14+
}

.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+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "Help > View Toolkit Logs opens an empty file if other menu items were interacted with first."
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "Amazon Q: Fixed an issue where sometimes /transform won't appear when switching between idC/builder id"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Bug Fix",
3+
"description": "Amazon Q: 'Switch to Q Chat' button not working for some users."
4+
}

.eslintrc.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
node: true,
1010
mocha: true,
1111
},
12-
plugins: ['@typescript-eslint', 'header', 'no-null'],
12+
plugins: ['@typescript-eslint', 'header', 'no-null', 'aws-toolkits'],
1313
extends: [
1414
'eslint:recommended',
1515
'plugin:@typescript-eslint/eslint-recommended',
@@ -115,5 +115,6 @@ module.exports = {
115115
},
116116
{ lineEndings: 'unix' },
117117
],
118+
'aws-toolkits/no-only-in-tests': 'error',
118119
},
119120
}

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
echo "tagname=$TAG_NAME" >> $GITHUB_OUTPUT
7070
echo "version=$(grep -m 1 version package.json | grep -o '[0-9][^\"]\+' | sed 's/-SNAPSHOT//')" >> $GITHUB_OUTPUT
7171
echo 'changes<<EOF' >> $GITHUB_OUTPUT
72-
head -14 CHANGELOG.md >> $GITHUB_OUTPUT
72+
cat CHANGELOG.md | perl -ne 'BEGIN{$/="\n\n"} print; exit if $. == 2' >> $GITHUB_OUTPUT
7373
echo 'EOF' >> $GITHUB_OUTPUT
7474
7575
publish:
@@ -83,6 +83,9 @@ jobs:
8383
FEAT_NAME: ${{ needs.package.outputs.feature }}
8484
TAG_NAME: ${{ needs.package.outputs.tagname }}
8585
AWS_TOOLKIT_VERSION: ${{ needs.package.outputs.version }}
86+
# Used in release_notes.md
87+
BRANCH: ${{ github.ref_name }}
88+
# Used in release_notes.md
8689
AWS_TOOLKIT_CHANGES: ${{ needs.package.outputs.changes }}
8790
permissions:
8891
contents: write

.github/workflows/release_notes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_This is an **unsupported preview build** of AWS Toolkit, for testing new features._
1+
_This is an **unsupported preview build** of the `${BRANCH}` branch of AWS Toolkit._
22

33
# Install
44

@@ -8,3 +8,7 @@ _This is an **unsupported preview build** of AWS Toolkit, for testing new featur
88
# Changes
99

1010
${AWS_TOOLKIT_CHANGES}
11+
12+
## Previous changes
13+
14+
- See [CHANGELOG.md](CHANGELOG.md)

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ src/testFixtures/**
99
dist/**
1010
types/*.d.ts
1111
src.gen/**
12+
plugins/*/dist/**

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
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+
9+
## 2.1.0 2023-11-30
10+
11+
- **Feature** Use MDE endpoint set by environment variable
12+
- **Feature** AWS Application Composer is now available from the AWS Toolkit for Visual Studio Code. Visualize and design AWS CloudFormation and AWS SAM applications from your local machine. Use integrations with featured services such as Amazon CodeWhisperer, AWS Step Functions, and AWS SAM to improve your development experience.
13+
114
## 2.0.0 2023-11-28
215

316
- **Bug Fix** CodeWhisperer status bar showing even when not in use

0 commit comments

Comments
 (0)