1
0
mirror of synced 2026-07-09 12:50:19 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
github-actions[bot] 9d08114c58 Release 7.0.2 2025-12-15 20:23:38 +00:00
Josh Cummings 0155d4a345 Restore Check for DispatcherServlet on Classpath
Closes gh-18315
2025-12-15 12:18:22 -07:00
github-actions[bot] 29ad1e6b07 Next development version 2025-12-15 18:22:29 +00:00
2 changed files with 3 additions and 2 deletions
@@ -42,7 +42,8 @@ final class MethodSecuritySelector implements ImportSelector {
.isPresent("org.springframework.security.data.aot.hint.AuthorizeReturnObjectDataHintsRegistrar", null);
private static final boolean isWebPresent = ClassUtils
.isPresent("org.springframework.security.web.util.ThrowableAnalyzer", null);
.isPresent("org.springframework.web.servlet.DispatcherServlet", null)
&& ClassUtils.isPresent("org.springframework.security.web.util.ThrowableAnalyzer", null);
private static final boolean isObservabilityPresent = ClassUtils
.isPresent("io.micrometer.observation.ObservationRegistry", null);
+1 -1
View File
@@ -14,7 +14,7 @@
# limitations under the License.
#
springBootVersion=4.0.0-SNAPSHOT
version=7.0.1
version=7.0.2
samplesBranch=main
org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError
org.gradle.parallel=true