Skip to content

Commit acda60a

Browse files
Merge pull request #58 from AxonFramework/feature/0.6.0-fixes
Implement small 0.6.0 fixes
2 parents 71dc1aa + e063c2b commit acda60a

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Axon Framework plugin Changelog
44

5+
## [0.6.1]
6+
7+
### Fixed
8+
- Uncaught exceptions were reported to Sentry, even ones not caused by the plugin. Disabled uncaught exception handling.
9+
- Require restart on plugin installation. Otherwise, ClassCastExceptions or Duplicate PluginExceptions can occur.
10+
511
## [0.6.0]
612

713
### Fixed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
pluginGroup=io.axoniq.ide.intellij
2121
pluginName=Axon Framework
22-
pluginVersion=0.6.0
22+
pluginVersion=0.6.1
2323

2424
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
2525
# for insight into build numbers and IntelliJ Platform versions.

src/main/kotlin/org/axonframework/intellij/ide/plugin/support/ReportingService.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class ReportingService {
3838
options.isAttachServerName = false
3939
options.sampleRate = 1.0
4040
options.tracesSampleRate = 0.1
41+
options.enableUncaughtExceptionHandler = false
4142
}
4243
}
4344

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
~ limitations under the License.
1515
-->
1616

17-
<idea-plugin require-restart="false">
17+
<!-- If we don't require the restart, there will be classcast exceptions. -->
18+
<idea-plugin require-restart="true">
1819
<id>io.axoniq.ide.intellij</id>
1920
<name>Axon Framework</name>
2021
<version>${project.version}</version>

0 commit comments

Comments
 (0)