Skip to content

Commit fee225e

Browse files
authored
Merge branch 'aws:main' into feature/qca
2 parents 643bc48 + 9963dcf commit fee225e

File tree

44 files changed

+436
-157
lines changed

Some content is hidden

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

44 files changed

+436
-157
lines changed

.changes/3.6.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2024-05-28",
3+
"version" : "3.6",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Fix recurring popup \"refreshing token\" whne users're typing in the IDE and Q connection expires"
7+
} ]
8+
}

.changes/3.7.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"date" : "2024-05-29",
3+
"version" : "3.7",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "(featureDev): Revert fix for file rejection. Reason: The plan disappears after clicking generate Code"
7+
}, {
8+
"type" : "bugfix",
9+
"description" : "Amazon Q Code Transformation: show more specific error messages on failure cases"
10+
} ]
11+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : " fix(featureDev): File Rejection stopped working"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q Feature Development: Update error message when repo size larger than 200 megabytes"
4+
}

.changes/next-release/bugfix-a7b4a2f3-fa0a-4924-9d53-933ab31b817c.json

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Always show device code prompt when performing device code grant through a legacy SSO configuration"
4+
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# _3.7_ (2024-05-29)
2+
- **(Bug Fix)** (featureDev): Revert fix for file rejection. Reason: The plan disappears after clicking generate Code
3+
- **(Bug Fix)** Amazon Q Code Transformation: show more specific error messages on failure cases
4+
5+
# _3.6_ (2024-05-28)
6+
- **(Bug Fix)** Fix recurring popup "refreshing token" whne users're typing in the IDE and Q connection expires
7+
18
# _3.5_ (2024-05-23)
29
- **(Bug Fix)** Amazon Q Code Transformation: show exact error messages in chat when job fails
310

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Toolkit Version
5-
toolkitVersion=3.6-SNAPSHOT
5+
toolkitVersion=3.8-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/FeatureDevConstants.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ const val CODE_GENERATION_RETRY_LIMIT = 3
1313

1414
// The default retry limit used when the session could not be found
1515
const val DEFAULT_RETRY_LIMIT = 0
16+
17+
// Max allowed size for a repository in bytes
18+
const val MAX_PROJECT_SIZE_BYTES: Long = 200 * 1024 * 1024

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqFeatureDev/FeatureDevExceptions.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44
package software.aws.toolkits.jetbrains.services.amazonqFeatureDev
55

6+
import software.aws.toolkits.jetbrains.services.amazonq.RepoSizeError
67
import software.aws.toolkits.resources.message
78

89
open class FeatureDevException(override val message: String?, override val cause: Throwable? = null) : RuntimeException()
910

10-
class ContentLengthError(override val message: String, override val cause: Throwable?) : RuntimeException()
11+
class ContentLengthError(override val message: String, override val cause: Throwable?) : RepoSizeError, RuntimeException()
1112

1213
class PlanIterationLimitError(override val message: String, override val cause: Throwable?) : RuntimeException()
1314

0 commit comments

Comments
 (0)