File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
kotlin/org/axonframework/intellij/ide/plugin/support Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Axon Framework plugin Changelog
4
4
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
+
5
11
## [ 0.6.0]
6
12
7
13
### Fixed
Original file line number Diff line number Diff line change 19
19
20
20
pluginGroup =io.axoniq.ide.intellij
21
21
pluginName =Axon Framework
22
- pluginVersion =0.6.0
22
+ pluginVersion =0.6.1
23
23
24
24
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
25
25
# for insight into build numbers and IntelliJ Platform versions.
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ class ReportingService {
38
38
options.isAttachServerName = false
39
39
options.sampleRate = 1.0
40
40
options.tracesSampleRate = 0.1
41
+ options.enableUncaughtExceptionHandler = false
41
42
}
42
43
}
43
44
Original file line number Diff line number Diff line change 14
14
~ limitations under the License.
15
15
-->
16
16
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" >
18
19
<id >io.axoniq.ide.intellij</id >
19
20
<name >Axon Framework</name >
20
21
<version >${project.version}</version >
You can’t perform that action at this time.
0 commit comments