Skip to content

Commit 7c877b1

Browse files
committed
Merge branch 'master' into E2E-test
2 parents 4bb030d + dd14b98 commit 7c877b1

File tree

27 files changed

+195
-46
lines changed

27 files changed

+195
-46
lines changed

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"date": "2025-04-09",
3+
"version": "1.56.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Improve status message while loading Amazon Q Profiles during login"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "\"failed to run command\" error"
12+
}
13+
]
14+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"date": "2025-04-10",
3+
"version": "1.57.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "Fix bug where generate fix does not work"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "Fix bug where review shows 0 findings"
12+
}
13+
]
14+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"date": "2025-04-11",
3+
"version": "1.58.0",
4+
"entries": [
5+
{
6+
"type": "Bug Fix",
7+
"description": "inline chat activates properly when using 'aws.experiments.amazonqChatLSP' feature flag"
8+
},
9+
{
10+
"type": "Bug Fix",
11+
"description": "Amazon Q Chat: code blocks in responses flicker, switching tabs during answer streaming makes expand button disappear"
12+
},
13+
{
14+
"type": "Bug Fix",
15+
"description": "Amazon Q Chat: tab bar buttons disappear when closing non-active tab"
16+
},
17+
{
18+
"type": "Bug Fix",
19+
"description": "Amazon Q Chat: chat history list does not truncate markdown"
20+
}
21+
]
22+
}
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": "Code fix line number or file is sometimes not accurate"
4+
}

packages/amazonq/.changes/next-release/Bug Fix-54ef457b-7e27-4168-b04a-ad54c571e9d3.json

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

packages/amazonq/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 1.58.0 2025-04-11
2+
3+
- **Bug Fix** inline chat activates properly when using 'aws.experiments.amazonqChatLSP' feature flag
4+
- **Bug Fix** Amazon Q Chat: code blocks in responses flicker, switching tabs during answer streaming makes expand button disappear
5+
- **Bug Fix** Amazon Q Chat: tab bar buttons disappear when closing non-active tab
6+
- **Bug Fix** Amazon Q Chat: chat history list does not truncate markdown
7+
8+
## 1.57.0 2025-04-10
9+
10+
- **Bug Fix** Fix bug where generate fix does not work
11+
- **Bug Fix** Fix bug where review shows 0 findings
12+
13+
## 1.56.0 2025-04-09
14+
15+
- **Bug Fix** Improve status message while loading Amazon Q Profiles during login
16+
- **Bug Fix** "failed to run command" error
17+
118
## 1.55.0 2025-04-09
219

320
- **Bug Fix** Amazon Q Chat: Update chat history icon

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

packages/amazonq/src/app/chat/activation.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { AuthUtil, CodeWhispererSettings } from 'aws-core-vscode/codewhisperer'
1010
import { Commands, placeholder, funcUtil } from 'aws-core-vscode/shared'
1111
import * as amazonq from 'aws-core-vscode/amazonq'
1212
import { scanChatAppInit } from '../amazonqScan'
13-
import { init as inlineChatInit } from '../../inlineChat/app'
1413

1514
export async function activate(context: ExtensionContext) {
1615
const appInitContext = amazonq.DefaultAmazonQAppInitContext.instance
@@ -72,7 +71,6 @@ function registerApps(appInitContext: amazonq.AmazonQAppInitContext, context: Ex
7271
amazonq.testChatAppInit(appInitContext)
7372
scanChatAppInit(appInitContext)
7473
amazonq.docChatAppInit(appInitContext)
75-
inlineChatInit(context)
7674
}
7775

7876
/**

packages/amazonq/src/extensionNode.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import { DevOptions } from 'aws-core-vscode/dev'
2525
import { Auth, AuthUtils, getTelemetryMetadataForConn, isAnySsoConnection } from 'aws-core-vscode/auth'
2626
import api from './api'
2727
import { activate as activateCWChat } from './app/chat/activation'
28+
import { activate as activateInlineChat } from './inlineChat/activation'
2829
import { beta } from 'aws-core-vscode/dev'
2930
import { activate as activateNotifications, NotificationsController } from 'aws-core-vscode/notifications'
3031
import { AuthState, AuthUtil } from 'aws-core-vscode/codewhisperer'
@@ -55,6 +56,7 @@ async function activateAmazonQNode(context: vscode.ExtensionContext) {
5556
await activateCWChat(context)
5657
await activateQGumby(extContext as ExtContext)
5758
}
59+
activateInlineChat(context)
5860

5961
const authProvider = new CommonAuthViewProvider(
6062
context,

0 commit comments

Comments
 (0)