File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
sentry-samples-spring-boot/src/main/java/io/sentry/samples/spring/boot
sentry-samples-spring/src/main/java/io/sentry/samples/spring Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 55### Features
66
77- Provide API for attaching custom measurements to transactions ([ #2260 ] ( https://github.com/getsentry/sentry-java/pull/2260 ) )
8+ - Bump spring to 2.7.4 ([ #2279 ] ( https://github.com/getsentry/sentry-java/pull/2279 ) )
89
910## 6.5.0-beta.2
1011
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ object Config {
44 val kotlinVersion = " 1.6.10"
55 val kotlinStdLib = " stdlib-jdk8"
66
7- val springBootVersion = " 2.6.8 "
7+ val springBootVersion = " 2.7.4 "
88 val kotlinCompatibleLanguageVersion = " 1.4"
99
1010 val composeVersion = " 1.1.1"
Original file line number Diff line number Diff line change 44import org .springframework .context .annotation .Bean ;
55import org .springframework .context .annotation .Configuration ;
66import org .springframework .security .config .annotation .web .builders .HttpSecurity ;
7- import org .springframework .security .config .annotation .web .configuration .WebSecurityConfigurerAdapter ;
87import org .springframework .security .core .userdetails .User ;
98import org .springframework .security .core .userdetails .UserDetails ;
109import org .springframework .security .core .userdetails .UserDetailsService ;
1312import org .springframework .security .provisioning .InMemoryUserDetailsManager ;
1413
1514@ Configuration
16- public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
15+ @ SuppressWarnings ("deprecation" ) // WebSecurityConfigurerAdapter has been deprecated
16+ public class SecurityConfiguration
17+ extends org .springframework .security .config .annotation .web .configuration
18+ .WebSecurityConfigurerAdapter {
1719
1820 // this API is meant to be consumed by non-browser clients thus the CSRF protection is not needed.
1921 @ Override
Original file line number Diff line number Diff line change 55import org .springframework .context .annotation .Configuration ;
66import org .springframework .security .config .annotation .web .builders .HttpSecurity ;
77import org .springframework .security .config .annotation .web .configuration .EnableWebSecurity ;
8- import org .springframework .security .config .annotation .web .configuration .WebSecurityConfigurerAdapter ;
98import org .springframework .security .core .userdetails .User ;
109import org .springframework .security .core .userdetails .UserDetails ;
1110import org .springframework .security .core .userdetails .UserDetailsService ;
1514
1615@ Configuration
1716@ EnableWebSecurity
18- public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
17+ @ SuppressWarnings ("deprecation" ) // WebSecurityConfigurerAdapter has been deprecated
18+ public class SecurityConfiguration
19+ extends org .springframework .security .config .annotation .web .configuration
20+ .WebSecurityConfigurerAdapter {
1921
2022 // this API is meant to be consumed by non-browser clients thus the CSRF protection is not needed.
2123 @ Override
You can’t perform that action at this time.
0 commit comments