Skip to content

Commit 838a35e

Browse files
Merge branch 'master' into fix/SSH-host
2 parents f57a0a3 + 7442e21 commit 838a35e

File tree

16 files changed

+440
-1796
lines changed

16 files changed

+440
-1796
lines changed

LICENSE-THIRD-PARTY

Lines changed: 70 additions & 1714 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 323 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date": "2025-11-15",
3+
"version": "1.104.0",
4+
"entries": []
5+
}

packages/amazonq/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.104.0 2025-11-15
2+
3+
- Miscellaneous non-user-facing changes
4+
15
## 1.103.0 2025-11-06
26

37
- **Feature** Q CodeTransformation: add more job metadata to history table

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 software development.",
5-
"version": "1.104.0-SNAPSHOT",
5+
"version": "1.105.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],

packages/core/src/awsService/sagemaker/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ async function handleRunningSpaceWithDisabledAccess(
326326

327327
const confirmed = await showConfirmationMessage({
328328
prompt,
329-
confirm: 'Restart and Connect',
329+
confirm: 'Restart Space and Connect',
330330
cancel: 'Cancel',
331331
type: 'warning',
332332
})

packages/core/src/awsService/sagemaker/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const InstanceTypeInsufficientMemoryMessage = (
3636
chosenInstanceType: string,
3737
recommendedInstanceType: string
3838
) => {
39-
return `Unable to create app for [${spaceName}] because instanceType [${chosenInstanceType}] is not supported for remote access enabled spaces. Use instanceType with at least 8 GiB memory. Would you like to start your space with instanceType [${recommendedInstanceType}]?`
39+
return `[${chosenInstanceType}] does not support remote access. Use an instanceType with at least 8 GiB memory. Would you like to start your space with instanceType [${recommendedInstanceType}]?`
4040
}
4141

4242
export const InstanceTypeNotSelectedMessage = (spaceName: string) => {

packages/core/src/sagemakerunifiedstudio/explorer/nodes/sageMakerUnifiedStudioProjectNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class SageMakerUnifiedStudioProjectNode implements TreeNode {
132132
if (this.isFirstTimeSelection && !this.hasShownFirstTimeMessage) {
133133
this.hasShownFirstTimeMessage = true
134134
void vscode.window.showInformationMessage(
135-
'Find your space in the Explorer panel under SageMaker Unified Studio. Hover over any space and click the connection icon to connect remotely.'
135+
'Find your space in the Explorer panel under SageMaker Unified Studio. Hover over a space and click the connection icon to connect remotely.'
136136
)
137137
}
138138
this.sagemakerClient = await this.initializeSagemakerClient(spaceAwsAccountRegion)

packages/core/src/shared/clients/sagemaker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class SagemakerClient extends ClientWrapper<SageMakerClient> {
180180
instanceType,
181181
InstanceTypeInsufficientMemory[instanceType]
182182
),
183-
confirm: 'Restart and Connect',
183+
confirm: 'Restart Space and Connect',
184184
cancel: 'Cancel',
185185
type: 'warning',
186186
})

packages/core/src/test/awsService/sagemaker/commands.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ describe('SageMaker Commands', () => {
185185
// Setup test window to handle confirmation dialog
186186
getTestWindow().onDidShowMessage((message) => {
187187
if (message.message.includes(RemoteAccessRequiredMessage)) {
188-
message.selectItem('Restart and Connect')
188+
message.selectItem('Restart Space and Connect')
189189
}
190190
})
191191

@@ -243,7 +243,7 @@ describe('SageMaker Commands', () => {
243243
InstanceTypeInsufficientMemoryMessage('test-space', 'ml.t3.medium', 'ml.t3.large')
244244
)
245245
) {
246-
message.selectItem('Restart and Connect')
246+
message.selectItem('Restart Space and Connect')
247247
}
248248
})
249249

@@ -297,8 +297,8 @@ describe('SageMaker Commands', () => {
297297

298298
// Setup test window to confirm
299299
getTestWindow().onDidShowMessage((message) => {
300-
if (message.items.some((item) => item.title === 'Restart and Connect')) {
301-
message.selectItem('Restart and Connect')
300+
if (message.items.some((item) => item.title === 'Restart Space and Connect')) {
301+
message.selectItem('Restart Space and Connect')
302302
}
303303
})
304304

@@ -398,7 +398,7 @@ describe('SageMaker Commands', () => {
398398

399399
// Verify no confirmation dialog shown for stopped space
400400
const confirmMessages = getTestWindow().shownMessages.filter((m) =>
401-
m.message.includes('Restart and Connect')
401+
m.message.includes('Restart Space and Connect')
402402
)
403403
assert.strictEqual(confirmMessages.length, 0, 'Should not show confirmation for stopped space')
404404

@@ -449,7 +449,7 @@ describe('SageMaker Commands', () => {
449449
assert(mockTryRefreshNode.calledOnce)
450450
// Verify no confirmation needed
451451
const confirmMessages = getTestWindow().shownMessages.filter((m) =>
452-
m.message.includes('Restart and Connect')
452+
m.message.includes('Restart Space and Connect')
453453
)
454454
assert.strictEqual(confirmMessages.length, 0)
455455
// Verify no space operations performed

0 commit comments

Comments
 (0)