Skip to content

Commit

Permalink
Merge pull request #3216 from 1c-syntax/dependabot/gradle/io.sentry-s…
Browse files Browse the repository at this point in the history
…entry-bom-7.1.0
  • Loading branch information
dependabot[bot] authored Dec 26, 2023
2 parents 29390f1 + 2cba3fa commit af747a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ val languageToolVersion = "6.1"

dependencyManagement {
imports {
mavenBom("io.sentry:sentry-bom:6.34.0")
mavenBom("io.sentry:sentry-bom:7.1.0")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
package com.github._1c_syntax.bsl.languageserver.aop.sentry;

import io.sentry.Scope;
import io.sentry.IScope;
import io.sentry.Sentry;
import io.sentry.protocol.User;
import jakarta.annotation.PostConstruct;
Expand All @@ -48,7 +48,7 @@ public class SentryScopeConfigurer {

@PostConstruct
public void init() {
Sentry.configureScope((Scope scope) -> {
Sentry.configureScope((IScope scope) -> {
var user = new User();
user.setId(UUID.randomUUID().toString());
scope.setUser(user);
Expand Down

0 comments on commit af747a3

Please sign in to comment.