Phillip Webb
cfdc173e34
Add RestClient SSL support
...
Add `RestClientSsl` support class to help apply an `SslBundle` to a
`RestClient.Builder`.
See gh-36213
1 year ago
Phillip Webb
5e01c66552
Add RestClient HttpMessageConverters support
...
Update `RestClientAutoConfiguration` to apply `HttpMessageConverters`
configuration.
See gh-36213
1 year ago
Phillip Webb
2d2f050262
Polish 'Add initial support for RestClient'
...
See gh-36213
1 year ago
Arjen Poutsma
a1a5acf128
Add initial support for RestClient
...
Introduce initial support for Spring Framework's `RestClient`, in the
form of a `RestClientCustomizer` and `RestClientAutoConfiguration`.
See gh-36213
1 year ago
Andy Wilkinson
4feaa28fd1
Polish "Support custom token validators for OAuth2"
...
See gh-35874
1 year ago
Roman Golovin
7500dab321
Support custom token validators for OAuth2
...
See gh-35874
1 year ago
Andy Wilkinson
ce8253ea95
Merge branch '3.1.x'
...
Closes gh-36238
1 year ago
Andy Wilkinson
c9f8d92656
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36237
1 year ago
Andy Wilkinson
2350d9c870
Adapt to Data changes missed due to predictive test selection
...
See gh-36190
1 year ago
Andy Wilkinson
5a9ca67fba
Start building against Spring Framework 6.2.0-M2 snapshots
...
See gh-36198
1 year ago
Andy Wilkinson
ec8e1e2c95
Start building against Spring Data Bom 2023.1.0 snapshots
...
See gh-36190
1 year ago
Phillip Webb
77245c3bd0
Merge branch '3.1.x'
...
Closes gh-36164
1 year ago
Phillip Webb
1f68db06ba
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36163
1 year ago
Phillip Webb
f1b0d76d9b
Merge branch '2.7.x' into 3.0.x
...
Closes gh-36162
1 year ago
Phillip Webb
b6990940b1
Polish 'Choose SAML party based on entity ID rather than always using first'
...
See gh-35902
1 year ago
Lasse Lindqvist
864af59adc
Choose SAML party based on entity ID rather than always using first
...
Update `Saml2RelyingPartyRegistrationConfiguration` so that
`RelyingPartyRegistrations` uses `collectionFromMetadataLocation`
rather than `fromMetadataLocation` and searches candidates for a
matching entity ID.
Prior to this commit, it was possible for the wrong provider to be
used if multiple candidates existed in the returned metadata.
See gh-35902
1 year ago
Andy Wilkinson
8fa80426b4
Merge branch '3.1.x'
...
Closes gh-36133
1 year ago
Johnny Lim
58a9961a31
Name methods consistently in KafkaConnectionDetails
...
See gh-35733
1 year ago
Scott Frederick
c22cbb0e2d
Merge branch '3.1.x'
...
Closes gh-36124
1 year ago
Scott Frederick
0a51c466f4
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36123
1 year ago
Andy Wilkinson
abaade28ea
Merge branch '3.1.x'
...
Closes gh-36122
1 year ago
Andy Wilkinson
e2f8fcf292
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36121
1 year ago
Andy Wilkinson
6effd6061c
Provide hints when template auto-config is excluded
...
Fixes gh-35682
1 year ago
Andy Wilkinson
b5a131d966
Merge branch '3.1.x'
...
Closes gh-36100
1 year ago
Andy Wilkinson
ba8b1717fb
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36099
1 year ago
Andy Wilkinson
79cd3a027a
Merge branch '2.7.x' into 3.0.x
...
Closes gh-36098
1 year ago
Andy Wilkinson
9e1f2c4257
Tolerate Flway 9.20
...
Closes gh-36029
1 year ago
Andy Wilkinson
98d459d76c
Revert "Merge branch '3.1.x'"
...
See gh-36092
1 year ago
Andy Wilkinson
6851904651
Merge branch '3.1.x'
...
Closes gh-36092
1 year ago
Andy Wilkinson
9a57611ef5
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36091
1 year ago
Andy Wilkinson
ffbef7bb80
Test server.max-http-request-header-size with Undertow
...
Closes gh-36047
1 year ago
Andy Wilkinson
b645eb32ac
Remove deprecated code that was to be removed in 3.2
...
Closes gh-36034
1 year ago
Andy Wilkinson
357c67a999
Merge branch '3.1.x'
1 year ago
Andy Wilkinson
3f7fe25cb9
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36044
1 year ago
Andy Wilkinson
2fae5de245
Merge branch '2.7.x' into 3.0.x
...
Closes gh-36043
1 year ago
Andy Wilkinson
d2966e1cbf
Polish "Replace calls to verifyComplete() to avoid indefinite blocking"
...
See gh-35915
1 year ago
ThomazPassarelli
f9da30faf1
Replace calls to verifyComplete() to avoid indefinite blocking
...
See gh-35915
1 year ago
Phillip Webb
212acf44f7
Merge branch '3.1.x'
1 year ago
Phillip Webb
7a2fc9e636
Fix checkstyle violation
...
See gh-35914
1 year ago
Phillip Webb
2ce36b15b3
Merge branch '3.1.x'
1 year ago
Phillip Webb
3c7fbf3423
Polish 'Apply SslConfigurer in addition to configured mappers'
...
See gh-35914
1 year ago
Fernando Cappi
e6b5322f3e
Apply SslConfigurer in addition to configured mappers
...
Update `ReactorClientHttpConnectorFactory` to that SSL configuration
is applied in addition to any configured mappers.
Prior to this commit, SSL configuration would prevent configured
mappers from being applied.
See gh-35914
1 year ago
Andy Wilkinson
295702003d
Merge branch '3.1.x'
1 year ago
Andy Wilkinson
7266d4863b
Merge branch '3.0.x' into 3.1.x
...
Closes gh-36009
1 year ago
Andy Wilkinson
39c382713b
Initialize WebSocket infrastructure when using WebFlux and Jetty
...
In Spring Framework 5.x with Jetty 9, the reactive
JettyRequestUpgradeStrategy was able to initialize Jetty's WebSocket
infrastructure itself. With Jetty 10 this is no longer possible and
Boot must perform the initialization as part of preparing the
reactive JettyWebServer.
This commit updates the reactive WebSocket auto-configuration to
initialize Jetty's WebSocket infrastructure as part of creating the
reactive JettyWebServer.
Fixes gh-33347
1 year ago
Andy Wilkinson
1e17d8eeea
Upgrade to Liquibase 4.22.0
...
Closes gh-35956
1 year ago
Andy Wilkinson
454aae92d6
Upgrade to Flyway 9.19.4
...
Closes gh-35948
1 year ago
Phillip Webb
23eb7ec1f8
Merge branch '3.1.x'
1 year ago
Phillip Webb
5d6a507142
Merge branch '3.0.x' into 3.1.x
1 year ago
Phillip Webb
48e13af8c4
Merge branch '2.7.x' into 3.0.x
1 year ago