Skip to content

Commit e191a9f

Browse files
authored
Merge branch 'feature/profile-logging' into add-listRegionProfile-logging
2 parents 0b07e45 + 0abd582 commit e191a9f

File tree

62 files changed

+1354
-203
lines changed

Some content is hidden

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

62 files changed

+1354
-203
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Feature",
3+
"description": "Add conditional Tenant ID field to Local Invoke panel for multi-tenant Lambda functions. The field appears when SAM template contains TenancyConfig and passes the value to SAM CLI as --tenant-id argument."
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type": "Feature",
3+
"description": "Add conditional Tenant ID field to Remote Invoke panel for multi-tenant Lambda functions. The field appears when function has TenancyConfig and passes the value to AWS Lambda Invoke API."
4+
}

package-lock.json

Lines changed: 21 additions & 14 deletions
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": "2026-02-16",
3+
"version": "1.110.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Amazon Q Chat: Fix chat history restoration to display rich UI elements and persist user preferences"
8+
}
9+
]
10+
}

packages/amazonq/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.110.0 2026-02-16
2+
3+
- **Bug Fix** Amazon Q Chat: Fix chat history restoration to display rich UI elements and persist user preferences
4+
15
## 1.109.0 2026-01-29
26

37
- **Bug Fix** Amazon Q: "Fix All Issues" now includes warnings when triggered from a warning diagnostic

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.110.0-SNAPSHOT",
5+
"version": "1.111.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],

packages/amazonq/test/e2e/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*/
55

66
import { runTests } from 'aws-core-vscode/test'
7-
import { VSCODE_EXTENSION_ID } from 'aws-core-vscode/utils'
7+
import { VSCODE_EXTENSION_ID_CONSTANTS } from 'aws-core-vscode/utils'
88

99
export function run(): Promise<void> {
10-
return runTests(process.env.TEST_DIR ?? 'test/e2e', VSCODE_EXTENSION_ID.amazonq, [
10+
return runTests(process.env.TEST_DIR ?? 'test/e2e', VSCODE_EXTENSION_ID_CONSTANTS.amazonq, [
1111
'../../core/dist/src/testInteg/globalSetup.test.ts',
1212
])
1313
}

packages/amazonq/test/unit/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*/
55

66
import { runTests } from 'aws-core-vscode/test'
7-
import { VSCODE_EXTENSION_ID } from 'aws-core-vscode/utils'
7+
import { VSCODE_EXTENSION_ID_CONSTANTS } from 'aws-core-vscode/utils'
88

99
export function run(): Promise<void> {
10-
return runTests(process.env.TEST_DIR ?? ['test/unit'], VSCODE_EXTENSION_ID.amazonq, [
10+
return runTests(process.env.TEST_DIR ?? ['test/unit'], VSCODE_EXTENSION_ID_CONSTANTS.amazonq, [
1111
'../../core/dist/src/test/globalSetup.test.ts',
1212
])
1313
}

packages/amazonq/test/web/testRunner.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* The following was influenced by this guide: https://code.visualstudio.com/api/extension-guides/web-extensions
88
*/
99

10-
import { VSCODE_EXTENSION_ID } from 'aws-core-vscode/utils'
10+
import { VSCODE_EXTENSION_ID_CONSTANTS } from 'aws-core-vscode/utils'
1111
import 'mocha' // Imports mocha for the browser, defining the `mocha` global.
1212
import * as vscode from 'vscode'
1313

@@ -47,12 +47,12 @@ function gatherTestFiles() {
4747
* So this function ensures the extension has fully activated.
4848
*/
4949
async function activateExtension() {
50-
const extId = VSCODE_EXTENSION_ID.amazonq
50+
const extId = VSCODE_EXTENSION_ID_CONSTANTS.amazonq
5151
const ext = vscode.extensions.getExtension(extId)
5252
if (!ext) {
5353
throw new Error(`Extension '${extId}' not found, can't activate it to run tests.`)
5454
}
55-
await vscode.extensions.getExtension(VSCODE_EXTENSION_ID.amazonq)?.activate()
55+
await vscode.extensions.getExtension(VSCODE_EXTENSION_ID_CONSTANTS.amazonq)?.activate()
5656
}
5757

5858
function runMochaTests(resolve: (value: void | PromiseLike<void>) => void, reject: (reason?: any) => void) {

packages/core/package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"AWS.configuration.description.awssam.debug.memoryMb": "The amount of memory (in Mb) the Lambda function has access to.",
6060
"AWS.configuration.description.awssam.debug.runtime": "The Lambda Function's runtime",
6161
"AWS.configuration.description.awssam.debug.timeout": "The amount of time (in seconds) that Lambda allows a function to run before stopping it.",
62+
"AWS.configuration.description.awssam.debug.tenantId": "Tenant ID for multi-tenant Lambda functions",
6263
"AWS.configuration.description.awssam.debug.aws": "AWS connection details",
6364
"AWS.configuration.description.awssam.debug.credentials": "The AWS credentials provider and name to use during the invocation. Example: credential profile \"default\" would be entered as `profile:default`.",
6465
"AWS.configuration.description.awssam.debug.credentials.cn": "The Amazon credentials provider and name to use during the invocation. Example: credential profile \"default\" would be entered as `profile:default`.",

0 commit comments

Comments
 (0)