Skip to content

Commit 320b994

Browse files
authored
Merge branch 'main' into java-25
2 parents 3b67e11 + 2c60e97 commit 320b994

File tree

5 files changed

+29
-29
lines changed

5 files changed

+29
-29
lines changed

app/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mtx/sidecar/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.5</version>
9+
<version>3.5.6</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -23,7 +23,7 @@
2323

2424
<!-- DEPENDENCIES VERSION -->
2525
<jdk.version>25</jdk.version>
26-
<cds.services.version>4.3.0</cds.services.version>
26+
<cds.services.version>4.3.1</cds.services.version>
2727
<cloud.sdk.version>5.22.0</cloud.sdk.version>
2828
<xsuaa.version>3.6.4</xsuaa.version>
2929
<cf-java-logging-support.version>3.8.6</cf-java-logging-support.version>
@@ -83,7 +83,7 @@
8383
<plugin>
8484
<groupId>org.apache.maven.plugins</groupId>
8585
<artifactId>maven-compiler-plugin</artifactId>
86-
<version>3.14.0</version>
86+
<version>3.14.1</version>
8787
<configuration>
8888
<release>${jdk.version}</release>
8989
<encoding>UTF-8</encoding>
@@ -119,7 +119,7 @@
119119
<plugin>
120120
<groupId>org.codehaus.mojo</groupId>
121121
<artifactId>flatten-maven-plugin</artifactId>
122-
<version>1.7.2</version>
122+
<version>1.7.3</version>
123123
<configuration>
124124
<updatePomFile>true</updatePomFile>
125125
<flattenMode>resolveCiFriendliesOnly</flattenMode>

srv/src/main/java/my/bookshop/config/WebSecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
@Configuration
1313
@ConditionalOnWebApplication
1414
@EnableWebSecurity
15-
@Order(1)
1615
public class WebSecurityConfig {
1716

1817
@Bean
18+
@Order(1)
1919
public SecurityFilterChain configure(HttpSecurity http) throws Exception {
2020
return http.securityMatchers(s -> s.requestMatchers(PathPatternRequestMatcher.withDefaults().matcher("/swagger/**"))) //
2121
.csrf(c -> c.disable()).authorizeHttpRequests(a -> a.anyRequest().permitAll())

0 commit comments

Comments
 (0)