Skip to content

Commit cbe5a6d

Browse files
authored
Merge branch 'aws:master' into feature/abtesting
2 parents a3332e4 + f1c5d45 commit cbe5a6d

18 files changed

+577
-47
lines changed

.changes/2.20.0.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"date": "2024-04-19",
3+
"version": "2.20.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Amazon Q CodeTransform may fail if JAVA_HOME has leading or trailing whitespace"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "Amazon Q FeatureDev: code generation may fail with \"conversation id not found\" error"
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "Amazon Q Code Transformation: show error messages in chat"
16+
},
17+
{
18+
"type": "Bug Fix",
19+
"description": "Amazon Q Code Transformation - Omit Maven metadata files when uploading dependencies to fix certain build failures in backend."
20+
},
21+
{
22+
"type": "Feature",
23+
"description": "Enable Amazon Q feature development and Amazon Q transform capabilities (/dev and /transform) for AWS Builder ID users."
24+
}
25+
]
26+
}

.changes/next-release/Bug Fix-1be65539-66a5-4443-ae5e-2a93a67fe436.json

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

.changes/next-release/Bug Fix-5d6c3406-8213-4aec-ba80-a488e9728e3a.json

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

.changes/next-release/Bug Fix-ffcf9c8e-bd5e-4b34-a418-469717d913f6.json

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

.changes/next-release/Feature-51070f02-21b0-447b-9743-e7ce616337fe.json

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

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ packages/core/src/shared/telemetry/clienttelemetry.d.ts
3131
packages/core/src/codewhisperer/client/codewhispererclient.d.ts
3232
packages/core/src/codewhisperer/client/codewhispereruserclient.d.ts
3333
packages/core/src/amazonqFeatureDev/client/featuredevproxyclient.d.ts
34+
packages/core/src/auth/sso/oidcclientpkce.d.ts
3435

3536
# Generated by tests
3637
packages/core/src/testFixtures/**/bin
@@ -42,6 +43,7 @@ packages/*/LICENSE
4243
packages/*/NOTICE
4344
packages/toolkit/package.nls.json
4445
packages/toolkit/resources
46+
packages/amazonq/resources
4547

4648
# Icons
4749
packages/*/resources/icons/cloud9/generated/**

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 2.20.0 2024-04-19
2+
3+
- **Bug Fix** Amazon Q CodeTransform may fail if JAVA_HOME has leading or trailing whitespace
4+
- **Bug Fix** Amazon Q FeatureDev: code generation may fail with "conversation id not found" error
5+
- **Bug Fix** Amazon Q Code Transformation: show error messages in chat
6+
- **Bug Fix** Amazon Q Code Transformation - Omit Maven metadata files when uploading dependencies to fix certain build failures in backend.
7+
- **Feature** Enable Amazon Q feature development and Amazon Q transform capabilities (/dev and /transform) for AWS Builder ID users.
8+
19
## 2.19.0 2024-04-15
210

311
- **Bug Fix** Amazon Q: Fixed quick action command list inconsistency between Q tabs

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/amazonq/.vscode/tasks.json

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,37 @@
1313
"kind": "build",
1414
"isDefault": true
1515
},
16-
"dependsOn": ["serve"]
16+
"dependsOn": ["watchCore", "webpackCore", "serveVueCore"]
1717
},
1818
{
19-
"label": "serve",
20-
"type": "npm",
21-
"script": "serve",
22-
"group": "build",
19+
"label": "watchCore",
20+
"command": "npm run compileOnly -- --watch",
21+
"type": "shell",
22+
"isBackground": true,
23+
"problemMatcher": "$tsc-watch",
24+
"options": {
25+
"cwd": "../core"
26+
}
27+
},
28+
{
29+
"label": "webpackCore",
30+
"command": "npm run webpackDev -- --watch",
31+
"type": "shell",
32+
"isBackground": true,
33+
"problemMatcher": "$ts-webpack-watch",
34+
"options": {
35+
"cwd": "../core"
36+
}
37+
},
38+
{
39+
"label": "serveVueCore",
40+
"command": "npm run serveVue",
41+
"type": "shell",
42+
"detail": "Webpack + local server for Vue webview files from `core`.",
2343
"isBackground": true,
24-
"problemMatcher": {
25-
"owner": "custom",
26-
"pattern": {
27-
"regexp": ".",
28-
"file": 1,
29-
"location": 2,
30-
"message": 3
31-
},
32-
"background": {
33-
"activeOnStart": true,
34-
"beginsPattern": "Project is running at",
35-
"endsPattern": "compiled successfully"
36-
}
44+
"problemMatcher": "$ts-webpack-watch",
45+
"options": {
46+
"cwd": "../core"
3747
}
3848
},
3949
{

packages/amazonq/webpack.config.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
const baseConfigFactory = require('../webpack.base.config')
1111
const baseVueConfigFactory = require('../webpack.vue.config')
12-
const baseWebConfigFactory = require('../webpack.web.config')
1312

1413
module.exports = (env, argv) => {
1514
const config = {
@@ -28,12 +27,5 @@ module.exports = (env, argv) => {
2827
},
2928
}
3029

31-
const webConfig = {
32-
...baseWebConfigFactory(env, argv),
33-
entry: {
34-
'src/extensionWeb': './src/extensionWeb.ts',
35-
},
36-
}
37-
38-
return [config, vueConfig, webConfig]
30+
return [config, vueConfig]
3931
}

0 commit comments

Comments
 (0)