Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Fix issue where Amazon Q cannot process chunks from local `@workspace` context"
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,17 @@
)

// TODO: move to LspMessage.kt
@JsonIgnoreProperties(ignoreUnknown = true)

Check warning on line 77 in plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/ProjectContextProvider.kt

View check run for this annotation

Codecov / codecov/patch

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/ProjectContextProvider.kt#L77

Added line #L77 was not covered by tests
data class Usage(
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonProperty("memoryUsage")
val memoryUsage: Int? = null,
@JsonProperty("cpuUsage")
val cpuUsage: Int? = null,
)

// TODO: move to LspMessage.kt
@JsonIgnoreProperties(ignoreUnknown = true)

Check warning on line 86 in plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/ProjectContextProvider.kt

View check run for this annotation

Codecov / codecov/patch

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/project/ProjectContextProvider.kt#L86

Added line #L86 was not covered by tests
data class Chunk(
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonProperty("filePath")
val filePath: String? = null,
@JsonProperty("content")
Expand Down
Loading