Skip to content

Commit f61bcee

Browse files
committed
Merge remote-tracking branch 'origin/feature/flare-mega' into feature/flare-iam
2 parents ff181f4 + 2f55375 commit f61bcee

Some content is hidden

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

46 files changed

+558
-58
lines changed

buildspec/release/50githubrelease.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ phases:
3636
- echo "posting $VERSION with sha384 hash $HASH to GitHub"
3737
- PKG_DISPLAY_NAME=$(grep -m 1 displayName packages/${TARGET_EXTENSION}/package.json | grep -o '[a-zA-z][^\"]\+' | tail -n1)
3838
- RELEASE_MESSAGE="${PKG_DISPLAY_NAME} for VS Code $VERSION"
39+
# Only set amazonq as "latest" release. This ensures https://api.github.com/repos/aws/aws-toolkit-vscode/releases/latest
40+
# consistently points to the amazonq artifact, instead of being "random".
41+
- LATEST="$([ "$TARGET_EXTENSION" = amazonq ] && echo '--latest' || echo '--latest=false' )"
3942
- |
4043
if [ "$STAGE" = "prod" ]; then
4144
# note: the tag arg passed here should match what is in 10changeversion.yml
42-
gh release create --repo $REPO --title "$PKG_DISPLAY_NAME $VERSION" --notes "$RELEASE_MESSAGE" -- "${TARGET_EXTENSION}/v${VERSION}" "$UPLOAD_TARGET" "$HASH_UPLOAD_TARGET"
45+
gh release create "$LATEST" --repo $REPO --title "$PKG_DISPLAY_NAME $VERSION" --notes "$RELEASE_MESSAGE" -- "${TARGET_EXTENSION}/v${VERSION}" "$UPLOAD_TARGET" "$HASH_UPLOAD_TARGET"
4346
else
4447
echo "SKIPPED (stage=${STAGE}): 'gh release create --repo $REPO'"
4548
fi

package-lock.json

Lines changed: 6 additions & 4 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.322",
44+
"@aws-toolkits/telemetry": "^1.0.323",
4545
"@playwright/browser-chromium": "^1.43.1",
4646
"@stylistic/eslint-plugin": "^2.11.0",
4747
"@types/he": "^1.2.3",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date": "2025-06-04",
3+
"version": "1.71.0",
4+
"entries": []
5+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"date": "2025-06-11",
3+
"version": "1.72.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Launch LSP with bundled artifacts as fallback"
8+
}
9+
]
10+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"date": "2025-06-11",
3+
"version": "1.73.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Add MCP Server Support"
8+
}
9+
]
10+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date": "2025-06-12",
3+
"version": "1.74.0",
4+
"entries": []
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date": "2025-06-13",
3+
"version": "1.75.0",
4+
"entries": []
5+
}
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": "/transform: only show lines of code statistic in plan"
4+
}

packages/amazonq/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 1.75.0 2025-06-13
2+
3+
- Miscellaneous non-user-facing changes
4+
5+
## 1.74.0 2025-06-12
6+
7+
- Miscellaneous non-user-facing changes
8+
9+
## 1.73.0 2025-06-11
10+
11+
- **Feature** Add MCP Server Support
12+
13+
## 1.72.0 2025-06-11
14+
15+
- **Feature** Launch LSP with bundled artifacts as fallback
16+
17+
## 1.71.0 2025-06-04
18+
19+
- Miscellaneous non-user-facing changes
20+
121
## 1.70.0 2025-05-28
222

323
- **Removal** Disable local workspace LSP

0 commit comments

Comments
 (0)