Skip to content

Commit

Permalink
Merge branch 'aws:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Asmodeusxxx85 authored Jul 18, 2024
2 parents c726ba5 + 189622b commit c4ae25d
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.55.1.0 (2024-07-16)

- **Bug Fix** Added more safeguards to extension start-up based on issues reported in version 1.54.0.0 (https://github.com/aws/aws-toolkit-visual-studio/issues/441)

## 1.55.0.0 (2024-07-11)

- **Bug Fix** Fix issue where settings could be overwritten when navigating between different settings pages
- **Deprecation** This is the last planned AWS Toolkit release for Visual Studio 2019. You are encouraged to run Visual Studio 2022, and the corresponding AWS Toolkit extension. An info bar has been added to the Toolkit as a reminder - see https://github.com/aws/aws-toolkit-visual-studio/issues/447 for details.

## 1.54.0.1 (2024-07-03)

- **Bug Fix** Added safeguards to extension start-up based on issues reported in version 1.54.0.0 (https://github.com/aws/aws-toolkit-visual-studio/issues/441)

## 1.54.0.0 (2024-07-02)

- **Feature** Amazon Q is now generally available for Visual Studio 2022. Use Amazon Q Chat to help author, explain, refactor, fix, and optimize code. Run security scans on C# code to catch security vulnerabilities.

## 1.53.0.0 (2024-05-23)

- **Feature** The AWS Builder Id and IAM Identity Center (SSO) login flow has been improved to support authorization code + PKCE in supported regions. This new flow simplifies the login process by eliminating the need to verify a code while remaining secure. The device code flow will continue to be used in regions that do not support the authorization code + PKCE flow.
Expand Down
40 changes: 40 additions & 0 deletions Telemetry/vs-telemetry-definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
"type": "boolean",
"description": "Whether or not the referenced project was generated"
},
{
"name": "qChatErrorState",
"type": "string",
"allowedValues": ["qDisabled", "chatAssetMissing", "webViewMissing", "chatServerNotRunning", "chatServerStarting", "authRequired", "reAuthRequired"],
"description": "Represents the error states shown in the Amazon Q chat panel when certain requirements are missing"
},
{
"name": "publishSettingType",
"type": "string",
Expand Down Expand Up @@ -81,6 +87,40 @@
}
],
"metrics": [
{
"name": "auth_signInToAmazonQDialogOpened",
"description": "Called when the Amazon Q sign in dialog is opened",
"metadata": [
{ "type": "source" }
],
"passive": true
},
{
"name": "auth_signInToAmazonQDialogClosed",
"description": "Called when the Amazon Q sign in dialog is closed",
"metadata": [],
"passive": true
},
{
"name": "amazonq_closeChat",
"description": "When Amazon Q chat panel is closed"
},
{
"name": "amazonq_viewChat",
"description": "Called when the view in Amazon Q chat panel transitions to show different states for e.g. auth screen, chat UI etc",
"metadata": [
{ "type": "result" },
{ "type": "qChatErrorState", "required": false }
],
"passive": true
},
{
"name": "amazonq_openChat",
"description": "When users open Amazon Q chat panel",
"metadata": [
{ "type": "result" }
]
},
{
"name": "serverlessapplication_deploy",
"description": "Called when deploying a Serverless Application Project",
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.53.0.0"
"version": "1.55.1.0"
}

0 comments on commit c4ae25d

Please sign in to comment.