Skip to content

Commit 5dd1a5a

Browse files
authored
Fix 'Cannot create extension' from improper CodeWhisperer extension declarations (#4773)
1 parent 4a61ea7 commit 5dd1a5a

22 files changed

+49
-29
lines changed
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 'Cannot create extension' in AWS Toolkit"
4+
}
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. -->
22
<!-- SPDX-License-Identifier: Apache-2.0 -->
33
<idea-plugin>
4-
<depends optional="true" config-file="ext-codetransform-java.xml">com.intellij.modules.java</depends>
4+
<depends optional="true" config-file="codetransform-ext-java.xml">com.intellij.modules.java</depends>
55
<depends optional="true">org.jetbrains.plugins.gradle</depends>
66
</idea-plugin>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<!-- Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. -->
1+
<!-- Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. -->
22
<!-- SPDX-License-Identifier: Apache-2.0 -->
33

44
<idea-plugin>
55
<extensions defaultExtensionNs="amazon.q.codewhisperer">
6-
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererRust"/>
6+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererSql"/>
77
</extensions>
88
</idea-plugin>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!-- Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. -->
2+
<!-- SPDX-License-Identifier: Apache-2.0 -->
3+
4+
<idea-plugin>
5+
<extensions defaultExtensionNs="amazon.q.codewhisperer">
6+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererGo"/>
7+
</extensions>
8+
</idea-plugin>
File renamed without changes.
File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. -->
2+
<!-- SPDX-License-Identifier: Apache-2.0 -->
3+
4+
<idea-plugin>
5+
<extensions defaultExtensionNs="amazon.q.codewhisperer">
6+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererJavaScript"/>
7+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererTypeScript"/>
8+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererJsx"/>
9+
<programmingLanguage implementation="software.aws.toolkits.jetbrains.services.codewhisperer.language.languages.CodeWhispererTsx"/>
10+
<importAdder implementation="software.aws.toolkits.jetbrains.services.codewhisperer.importadder.CodeWhispererJSImportAdder"/>
11+
</extensions>
12+
</idea-plugin>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)