Skip to content

Commit 9deb833

Browse files
committed
Merge remote-tracking branch 'upstream/master' into truncation
2 parents da81af7 + 9f2fde8 commit 9deb833

File tree

131 files changed

+9859
-4402
lines changed

Some content is hidden

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

131 files changed

+9859
-4402
lines changed

buildspec/release/80notify.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ phases:
1717
- export EXTENSION_NAME=$([ "$TARGET_EXTENSION" = "amazonq" ] && echo "Amazon Q" || echo "AWS Toolkit")
1818
- export VERSION=$(node -e "console.log(require('./packages/${TARGET_EXTENSION}/package.json').version);")
1919
- export CHANGELOG=$(cat packages/${TARGET_EXTENSION}/CHANGELOG.md | perl -ne 'BEGIN{$/="\n\n"} print if $. == 2')
20-
- MESSAGE=$(envsubst < ./buildspec/release/notify.txt)
20+
- MESSAGE=$(envsubst < ./buildspec/release/notify.txt | jq -R -s '.')
21+
- echo "Will post message - \n\n${MESSAGE}\n"
22+
- echo "Full command - 'curl -v POST \"[NOTIFY_URL]\" -H \"Content-Type:application/json\" --data \"{\"Content\":${MESSAGE}}\"'"
2123
- |
2224
if [ "$STAGE" != "prod" ]; then
23-
echo "SKIPPED (stage=${STAGE}): 'curl -v POST \"[NOTIFY_URL]\" -H \"Content-Type:application/json\" --data \"{\"Content\":\"${MESSAGE}\"}\"'"
25+
echo "SKIPPED (stage=${STAGE}): curl -v POST ..."
2426
exit 0
2527
fi
26-
curl -v POST "${NOTIFY_URL}" -H "Content-Type:application/json" --data "{\"Content\":\"${MESSAGE}\"}"
28+
curl -v POST "${NOTIFY_URL}" -H "Content-Type:application/json" --data "{\"Content\":${MESSAGE}}"
1.49 MB
Loading

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"skippedTestReport": "ts-node ./scripts/skippedTestReport.ts ./packages/amazonq/test/e2e/"
4242
},
4343
"devDependencies": {
44-
"@aws-toolkits/telemetry": "^1.0.307",
44+
"@aws-toolkits/telemetry": "^1.0.308",
4545
"@playwright/browser-chromium": "^1.43.1",
4646
"@stylistic/eslint-plugin": "^2.11.0",
4747
"@types/he": "^1.2.3",
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"date": "2025-03-12",
3+
"version": "1.51.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "increase scan timeout to reduce front-end timeout errors"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "Amazon Q chat: Create a new prompt form does not autofocus or submit with Enter press"
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "/review: Zip files are created with the wrong file path for file scans in multifolder workspaces."
16+
},
17+
{
18+
"type": "Bug Fix",
19+
"description": "/review: Invalid file path characters caused some detections to be skipped on Windows"
20+
},
21+
{
22+
"type": "Feature",
23+
"description": "Amazon Q Chat: You can now keep a \"library\" of prompt files in your home directory under `~/.aws/amazonq/prompts` and then quickly add them to the context using `@` on any project you’re working on. Prompt files are in markdown (`.md`) format."
24+
},
25+
{
26+
"type": "Feature",
27+
"description": "/review: show code diff for fix preview"
28+
},
29+
{
30+
"type": "Feature",
31+
"description": "/test: display test plan summary in chat after generating tests"
32+
}
33+
]
34+
}
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 chat: @Folders and @Files are missing `@` prefix in chat history"
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": "/review: Code Issues ellipses menu displays AWS Toolkit options, if installed."
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 chat: Progress indicator height is stretched"
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 chat: Long descriptions in context list are cut off"
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 chat: Improve responses for saved prompts and workspace rules"
4+
}

0 commit comments

Comments
 (0)