Skip to content

Commit f7af06d

Browse files
Merge master into feature/flare-inline
2 parents db63fe4 + ec58764 commit f7af06d

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

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.
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+
}

packages/amazonq/.changes/next-release/Feature-57661731-6180-4157-a04b-d3a8b50aa1a8.json

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

packages/amazonq/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.73.0 2025-06-11
2+
3+
- **Feature** Add MCP Server Support
4+
15
## 1.72.0 2025-06-11
26

37
- **Feature** Launch LSP with bundled artifacts as fallback

packages/amazonq/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "amazon-q-vscode",
33
"displayName": "Amazon Q",
44
"description": "The most capable generative AI-powered assistant for building, operating, and transforming software, with advanced capabilities for managing data and AI",
5-
"version": "1.73.0-SNAPSHOT",
5+
"version": "1.74.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],

scripts/lspArtifact.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as fs from 'fs'
33
import * as crypto from 'crypto'
44
import * as path from 'path'
55
import * as os from 'os'
6+
import * as semver from 'semver'
67
import AdmZip from 'adm-zip'
78

89
interface ManifestContent {
@@ -27,6 +28,7 @@ interface ManifestVersion {
2728
interface Manifest {
2829
versions: ManifestVersion[]
2930
}
31+
3032
async function verifyFileHash(filePath: string, expectedHash: string): Promise<boolean> {
3133
return new Promise((resolve, reject) => {
3234
const hash = crypto.createHash('sha384')
@@ -86,7 +88,7 @@ export async function downloadLanguageServer(): Promise<void> {
8688

8789
const latestVersion = manifest.versions
8890
.filter((v) => !v.isDelisted)
89-
.sort((a, b) => b.serverVersion.localeCompare(a.serverVersion))[0]
91+
.sort((a, b) => semver.compare(b.serverVersion, a.serverVersion))[0]
9092

9193
if (!latestVersion) {
9294
throw new Error('No valid version found in manifest')

0 commit comments

Comments
 (0)