Skip to content

Feature/update java 25#599

Draft
Aboruhen wants to merge 8 commits intomasterfrom
feature/update-java-25
Draft

Feature/update java 25#599
Aboruhen wants to merge 8 commits intomasterfrom
feature/update-java-25

Conversation

@Aboruhen
Copy link
Copy Markdown
Collaborator

Description

SSDK 21.0.1, java 25, BOAT 18.0.1

Checklist

  • I made sure, I read CONTRIBUTING.md to put right branch prefix as per my need.
  • I made sure to update CHANGELOG.md.
  • I made sure to update Stream Wiki(only valid in case of new stream module or architecture changes).
  • My changes are adequately tested.
  • I made sure all the SonarCloud Quality Gate are passed.

Comment on lines +26 to +27
return http.authorizeExchange(AuthorizeExchangeSpec::anyExchange)
.csrf(ServerHttpSecurity.CsrfSpec::disable)
.csrf().disable()
.build();
return http.authorizeExchange(AuthorizeExchangeSpec::anyExchange)
.csrf(ServerHttpSecurity.CsrfSpec::disable)
Comment on lines +18 to +19
return http.authorizeExchange(AuthorizeExchangeSpec::anyExchange)
.csrf(ServerHttpSecurity.CsrfSpec::disable)
public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
return http.csrf().disable().build();
return http.authorizeExchange(AuthorizeExchangeSpec::anyExchange)
.csrf(ServerHttpSecurity.CsrfSpec::disable)
Comment on lines +28 to +30
return http
.authorizeExchange(AuthorizeExchangeSpec::anyExchange)
.csrf(ServerHttpSecurity.CsrfSpec::disable)
.disable()
return http
.authorizeExchange(exchanges -> exchanges.anyExchange().permitAll())
.csrf(ServerHttpSecurity.CsrfSpec::disable)
Comment on lines +22 to +24
return http
.authorizeExchange(exchanges -> exchanges.anyExchange().permitAll())
.csrf(ServerHttpSecurity.CsrfSpec::disable)
return http.authorizeExchange().anyExchange().permitAll().and().csrf().disable().build();
return http
.authorizeExchange(exchanges -> exchanges.anyExchange().permitAll())
.csrf(ServerHttpSecurity.CsrfSpec::disable)
Comment on lines +30 to +32
return http
.authorizeExchange(exchanges -> exchanges.anyExchange().permitAll())
.csrf(ServerHttpSecurity.CsrfSpec::disable)
.disable()
return http
.authorizeExchange(exchanges -> exchanges.anyExchange().permitAll())
.csrf(ServerHttpSecurity.CsrfSpec::disable)
@Aboruhen Aboruhen force-pushed the feature/update-java-25 branch from 7e06946 to 7ebc599 Compare April 16, 2026 08:52
@ValueMapping(source = "BY_ASSET_CLASS", target = "ASSET_CLASS")
@ValueMapping(source = "BY_REGION", target = "REGION")
@ValueMapping(source = "BY_COUNTRY", target = "COUNTRY")
@ValueMapping(source = "BY_CURRENCY", target = "BY_CURRENCY")
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since source and target are now the same, does it still need the explicit mapping?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

4 participants