Skip to content

Commit 2b71f0e

Browse files
committed
Merge branch 'feature/featureDev-codegen' into kumsmrit/featureDev-bugfix
2 parents 53fec8f + ea0d6fd commit 2b71f0e

File tree

1,453 files changed

+34531
-31392
lines changed

Some content is hidden

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

1,453 files changed

+34531
-31392
lines changed

.changes/2.10.0.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"date": "2024-02-16",
3+
"version": "2.10.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "CDK Explorer: Refresh button is now visible."
8+
}
9+
]
10+
}

.changes/2.11.0.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"date": "2024-02-22",
3+
"version": "2.11.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Amazon Q: /dev command now supports the InvalidState event during the GenerateApproach step. The reason for the Approach to reach an Invalid State is printed in /dev's chat response."
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "CloudFormation and SAM templates now have a CodeLens link to Application Composer"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "Amazon Q CodeTransformation: show user build logs for Maven install and copy-deps commands"
16+
}
17+
]
18+
}

.changes/2.12.0.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"date": "2024-02-29",
3+
"version": "2.12.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Amazon Q: Static analysis of document symbols used as context in Amazon Q requests must filter tree-sitter \"extra\" CST nodes (comments) in order to avoid crashes which freeze the chat panel"
8+
},
9+
{
10+
"type": "Feature",
11+
"description": "Enable node 20 for SAM create and local Lambda debugging"
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "Amazon Q CodeTransform: show link to documentation after errors"
16+
},
17+
{
18+
"type": "Feature",
19+
"description": "CodeWhisperer: Improve percentage code written metrics to include user multi character input"
20+
},
21+
{
22+
"type": "Feature",
23+
"description": "CodeWhisperer: Add startUrl to security scan telemetry"
24+
},
25+
{
26+
"type": "Feature",
27+
"description": "UI: Improve text description in login page"
28+
}
29+
]
30+
}

.changes/2.9.0.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"date": "2024-02-09",
3+
"version": "2.9.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Cloud9: certain filesystem calls did not work in Cloud9"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "EC2 Credentials: Use IMDSv2 calls if available, otherwise fall back IMDSv1."
12+
},
13+
{
14+
"type": "Feature",
15+
"description": "Enable java 17 for SAM create and local Lambda debugging"
16+
}
17+
]
18+
}

.changes/next-release/Bug Fix-58f92b8d-fe98-4885-b150-3c52d640b4a0.json

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

.changes/next-release/Bug Fix-bcc441fe-f0d3-444f-bbcb-16cc634e8a5f.json

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

.changes/next-release/Feature-d14983e3-ed88-4623-bf62-5b78af07aa73.json

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

.eslintignore

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
node_modules/**
2-
dist/**
1+
node_modules/
2+
dist/
33
src.gen/**
44
**/*.json
5+
**/*.gen.ts
6+
types/*.d.ts
7+
8+
# Duplicate entries because prettier can be ran from root or within the workspace/subpackage.
9+
# TODO: Avoid this.
510
src/shared/telemetry/clienttelemetry.d.ts
611
src/codewhisperer/client/codewhispererclient.d.ts
712
src/codewhisperer/client/codewhispereruserclient.d.ts
813
src/amazonqFeatureDev/client/featuredevproxyclient.d.ts
9-
**/*.gen.ts
1014
src/testFixtures/**
11-
types/*.d.ts
15+
packages/toolkit/src/shared/telemetry/clienttelemetry.d.ts
16+
packages/toolkit/src/codewhisperer/client/codewhispererclient.d.ts
17+
packages/toolkit/src/codewhisperer/client/codewhispereruserclient.d.ts
18+
packages/toolkit/src/amazonqFeatureDev/client/featuredevproxyclient.d.ts
19+
packages/toolkit/src/testFixtures/**

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
parserOptions: {
55
ecmaVersion: 'latest',
66
sourceType: 'module',
7-
project: './tsconfig.json',
7+
project: ['./packages/*/tsconfig.json', './plugins/*/tsconfig.json'],
88
tsconfigRootDir: __dirname,
99
},
1010
env: {

.github/CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
* @aws/aws-ides-team
2-
src/codewhisperer/ @aws/codewhisperer-team
3-
src/amazonqFeatureDev/ @aws/earlybird
4-
src/codewhispererChat/ @aws/aws-mynah
5-
src/amazonq/ @aws/aws-mynah
2+
packages/toolkit/src/codewhisperer/ @aws/codewhisperer-team
3+
packages/toolkit/src/amazonqFeatureDev/ @aws/earlybird
4+
packages/toolkit/src/codewhispererChat/ @aws/aws-mynah
5+
packages/toolkit/src/amazonq/ @aws/aws-mynah

0 commit comments

Comments
 (0)