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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

## [1.9.3] - 2024-07-15

- Disable unhandled exceptions logging

## [1.9.2] - 2024-07-15

- Integrate Sentry
Expand Down Expand Up @@ -97,6 +101,8 @@

The first public release of the plugin.

[1.9.3]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.9.3

[1.9.2]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.9.2

[1.9.1]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.9.1
Expand Down Expand Up @@ -135,4 +141,4 @@ The first public release of the plugin.

[1.0.0]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.0.0

[Unreleased]: https://github.com/cycodehq/intellij-platform-plugin/compare/v1.9.2...HEAD
[Unreleased]: https://github.com/cycodehq/intellij-platform-plugin/compare/v1.9.3...HEAD
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.cycode.plugin
pluginName = Cycode
pluginRepositoryUrl = https://github.com/cycodehq/intellij-platform-plugin
# SemVer format -> https://semver.org
pluginVersion = 1.9.2
pluginVersion = 1.9.3

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 211.1
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/com/cycode/plugin/Consts.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@ class Consts {
val SENTRY_RELEASE = getSentryReleaseVersion()
const val SENTRY_SAMPLE_RATE = 1.0
const val SENTRY_SEND_DEFAULT_PII = false
const val SENTRY_ENABLE_UNCAUGHT_EXCEPTION_HANDLER = false
}
}
1 change: 1 addition & 0 deletions src/main/kotlin/com/cycode/plugin/sentry/SentryInit.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ object SentryInit {
options.dsn = Consts.SENTRY_DSN
options.isDebug = Consts.SENTRY_DEBUG
options.sampleRate = Consts.SENTRY_SAMPLE_RATE
options.isEnableUncaughtExceptionHandler = Consts.SENTRY_ENABLE_UNCAUGHT_EXCEPTION_HANDLER
options.release = Consts.SENTRY_RELEASE
options.isSendDefaultPii = Consts.SENTRY_SEND_DEFAULT_PII
options.serverName = ""
Expand Down