Skip to content

Commit c1f8a4c

Browse files
authored
Merge branch 'master' into feature/oidc-bug-fix
2 parents 09be2ee + 7442e21 commit c1f8a4c

File tree

17 files changed

+440
-1800
lines changed

17 files changed

+440
-1800
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
@@ -301,7 +301,7 @@ async function handleRunningSpaceWithDisabledAccess(
301301

302302
const confirmed = await showConfirmationMessage({
303303
prompt,
304-
confirm: 'Restart and Connect',
304+
confirm: 'Restart Space and Connect',
305305
cancel: 'Cancel',
306306
type: 'warning',
307307
})

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
@@ -124,7 +124,7 @@ describe('SageMaker Commands', () => {
124124
// Setup test window to handle confirmation dialog
125125
getTestWindow().onDidShowMessage((message) => {
126126
if (message.message.includes(RemoteAccessRequiredMessage)) {
127-
message.selectItem('Restart and Connect')
127+
message.selectItem('Restart Space and Connect')
128128
}
129129
})
130130

@@ -182,7 +182,7 @@ describe('SageMaker Commands', () => {
182182
InstanceTypeInsufficientMemoryMessage('test-space', 'ml.t3.medium', 'ml.t3.large')
183183
)
184184
) {
185-
message.selectItem('Restart and Connect')
185+
message.selectItem('Restart Space and Connect')
186186
}
187187
})
188188

@@ -236,8 +236,8 @@ describe('SageMaker Commands', () => {
236236

237237
// Setup test window to confirm
238238
getTestWindow().onDidShowMessage((message) => {
239-
if (message.items.some((item) => item.title === 'Restart and Connect')) {
240-
message.selectItem('Restart and Connect')
239+
if (message.items.some((item) => item.title === 'Restart Space and Connect')) {
240+
message.selectItem('Restart Space and Connect')
241241
}
242242
})
243243

@@ -337,7 +337,7 @@ describe('SageMaker Commands', () => {
337337

338338
// Verify no confirmation dialog shown for stopped space
339339
const confirmMessages = getTestWindow().shownMessages.filter((m) =>
340-
m.message.includes('Restart and Connect')
340+
m.message.includes('Restart Space and Connect')
341341
)
342342
assert.strictEqual(confirmMessages.length, 0, 'Should not show confirmation for stopped space')
343343

@@ -388,7 +388,7 @@ describe('SageMaker Commands', () => {
388388
assert(mockTryRefreshNode.calledOnce)
389389
// Verify no confirmation needed
390390
const confirmMessages = getTestWindow().shownMessages.filter((m) =>
391-
m.message.includes('Restart and Connect')
391+
m.message.includes('Restart Space and Connect')
392392
)
393393
assert.strictEqual(confirmMessages.length, 0)
394394
// Verify no space operations performed

0 commit comments

Comments
 (0)