Stéphane Nicoll
36c12e3651
Start building against Spring AMQP 3.1.8 snapshots
...
See gh-43004
2024-11-05 12:28:49 +09:00
Stéphane Nicoll
5acb87817c
Start building against Spring Kafka 3.1.10 snapshots
...
See gh-43003
2024-11-05 12:28:46 +09:00
Stéphane Nicoll
a36c62677c
Start building against Reactor Bom 2023.0.12 snapshots
...
See gh-43002
2024-11-05 12:28:44 +09:00
Stéphane Nicoll
a8a7ee8680
Start building against Spring Integration 6.2.11 snapshots
...
See gh-43001
2024-11-05 12:28:42 +09:00
Stéphane Nicoll
0549e5328b
Start building against Micrometer Tracing 1.3.6 snapshots
...
See gh-43000
2024-11-05 12:28:39 +09:00
Stéphane Nicoll
661e6e930d
Start building against Micrometer 1.13.7 snapshots
...
See gh-42998
2024-11-05 12:28:34 +09:00
Stéphane Nicoll
980043e059
Start building against Spring Data Bom 2023.1.12 snapshots
...
See gh-42997
2024-11-05 12:28:32 +09:00
Stéphane Nicoll
43622e93e2
Start building against Spring AMQP 3.1.8 snapshots
...
See gh-42996
2024-11-05 12:28:27 +09:00
Stéphane Nicoll
c1e04d69e8
Start building against Reactor Bom 2023.0.12 snapshots
...
See gh-42995
2024-11-05 12:28:22 +09:00
Stéphane Nicoll
9ba12afe43
Start building against Micrometer Tracing 1.2.12 snapshots
...
See gh-42994
2024-11-05 12:28:17 +09:00
Stéphane Nicoll
d75328a65b
Start building against Micrometer 1.12.12 snapshots
...
See gh-42993
2024-11-05 12:28:08 +09:00
Stéphane Nicoll
606709ab8b
Use Spring Framework's MockResolver implementation
...
Closes gh-42957
2024-11-05 11:59:01 +09:00
Phillip Webb
dbb5e05ebf
Merge branch '3.3.x'
...
Closes gh-42992
2024-11-04 16:19:04 -08:00
Phillip Webb
189e49f6d6
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42991
2024-11-04 15:56:29 -08:00
Phillip Webb
c62a018830
Align buildpack certificate and key parsers with SSL versions
...
Closes gh-37969
2024-11-04 15:53:39 -08:00
Phillip Webb
269f18c0ca
Merge branch '3.3.x'
...
Closes gh-42990
2024-11-04 14:34:39 -08:00
Phillip Webb
4a7c757945
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42989
2024-11-04 14:34:17 -08:00
Dmytro Nosan
7d8cb5fe49
Remove explicit '.xml' suffix check from LogbackLoggingSystem
...
Update `LogbackLoggingSystem` so that paths suffixes are no longer
checked for `.xml`. Since Logback now only supports XML files, we're
safe to pass all content along for processing. If the incorrect content
is found, Logback will throw an exception.
See gh-42986
2024-11-04 14:29:59 -08:00
Phillip Webb
202db9b7f4
Update copyright year of changed files
2024-11-04 14:28:23 -08:00
Andy Wilkinson
ba56bbe490
Merge branch '3.3.x'
...
Closes gh-42983
2024-11-04 13:15:27 +00:00
Andy Wilkinson
bffde8228e
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42982
2024-11-04 13:15:12 +00:00
Andy Wilkinson
2fc0016ef1
Fix spring-boot-gradle-plugin's tests in Eclipse
...
Closes gh-32625
2024-11-04 13:11:45 +00:00
Andy Wilkinson
a3168e3a2f
Centralize dependency management of Commons Compress
...
Closes gh-39368
2024-11-04 11:45:41 +00:00
Stéphane Nicoll
fdf24c6caa
Merge branch '3.3.x'
...
Closes gh-42976
2024-11-02 20:25:35 +09:00
Stéphane Nicoll
a224c8188c
Fix copyright year of updated file
...
See gh-42974
2024-11-02 20:21:19 +09:00
Tran Ngoc Nhan
9e92bfe906
Polish
...
See gh-42974
2024-11-02 20:20:06 +09:00
Phillip Webb
06f0b91429
Add @Order to WebSocketMessageConverterConfiguration
...
Add `@Order` to `WebSocketMessageConverterConfiguration` so that custom
`WebSocketMessageBrokerConfigurer` implementations can be added before
or after ours.
Fixes gh-42924
2024-11-01 17:49:38 -07:00
Dmytro Nosan
85b1c567f1
Support timeout property for GraphQL over SSE
...
See gh-42966
2024-11-01 14:13:32 -07:00
Phillip Webb
23607ee4c4
Add nullSafeValue method that accepts a mapper Function
...
Update `JsonObjectDeserializer` with a `nullSafeValue` method that
accepts a mapper `Function`
Closes gh-42972
2024-11-01 14:08:43 -07:00
Phillip Webb
2fa1180332
Make NamedPipeSocket.connect a no-op to fix connection exceptions
...
Update `NamedPipeSocket` so that `connect` methods are now no-ops. This
restores the behavior of Spring Boot 3.3 which previously handled the
case by overriding `ConnectionSocketFactory.connectSocket`. The newer
HTTP client code uses the `DetachedSocketFactory` interface which
doesn't offer a method that we can override, so instead we must change
the socket implementation itself.
Fixes gh-42952
2024-11-01 13:22:07 -07:00
Phillip Webb
bc5a25bf16
Polish
2024-11-01 13:14:05 -07:00
Andy Wilkinson
2b3c93ffda
Consider factory beans when finding candidates
...
Previously, if a bean name was a factory dereference its definition
would not be found. When the definition wasn't found it was assumed
that the bean was an autowire candidate and a default candidate.
If this, in fact, was not the case, @ConditionalOnMissingBean would
not match when it should have done and @ConditionalOnBean would
match when it should not had done.
This commit updates the bean-based conditions to correctly consider
factory beans so that whether or not they are a candidate can be
evaluated correctly.
Fixes gh-42970
2024-11-01 15:19:49 +00:00
Andy Wilkinson
4a9da78eb8
Merge branch '3.3.x'
...
Closes gh-42969
2024-11-01 14:32:51 +00:00
Andy Wilkinson
f9281a61ff
Rework Antora Gradle Infrastructure
...
Closes gh-40572
Co-authored-by: Phillip Webb <phil.webb@broadcom.com>
2024-11-01 14:28:18 +00:00
Moritz Halbritter
8f6aabc15b
Merge branch '3.3.x'
...
Closes gh-42960
2024-10-31 15:07:11 +01:00
Moritz Halbritter
6470748d6d
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42959
2024-10-31 15:07:02 +01:00
Moritz Halbritter
90b920a410
Use default address if null address is given
...
Closes gh-42958
2024-10-31 14:34:30 +01:00
Phillip Webb
23fe3977d2
Remove spring-boot-starter-aop dependencies
...
Update `spring-boot-starter-data` and `spring-boot-starter-integration`
so that they no longer depend on `spring-boot-starter-aop`. The removes
the dependency on AspectJ which should help improve startup time.
Closes gh-42934
2024-10-30 17:51:11 -07:00
Phillip Webb
9890872a9a
Improve performance of ConcurrentReferenceCachingMetadataReaderFactory
...
Update `ConcurrentReferenceCachingMetadataReaderFactory` with cache
by class name.
Closes gh-42949
2024-10-30 17:51:11 -07:00
Phillip Webb
7eb98b4487
Store bind handlers on first access
...
Update `ConfigurationPropertiesBinder` so that bind handler are fetched
and stored once.
Closes gh-42950
2024-10-30 17:50:51 -07:00
Andy Wilkinson
f4c6aab02b
Merge branch '3.3.x'
...
Closes gh-42945
2024-10-30 10:44:27 +00:00
Andy Wilkinson
53186655f9
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42944
2024-10-30 10:44:04 +00:00
Andy Wilkinson
e8b8584175
Merge branch '3.3.x'
...
Closes gh-42943
2024-10-30 10:26:19 +00:00
Andy Wilkinson
1ad5fb8638
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42942
2024-10-30 10:26:04 +00:00
Andy Wilkinson
1c61e59099
Prohibit unnecessary values on @ConditionalOnMissingBean
...
Closes gh-42941
2024-10-30 10:24:00 +00:00
Andy Wilkinson
00ceb378c4
Polish "Remove unnecessary values from @ConditionalOnMissingBean"
...
See gh-42933
2024-10-30 10:02:27 +00:00
Yanming Zhou
88d7a1e74a
Remove unnecessary values from @ConditionalOnMissingBean
...
See gh-42933
2024-10-30 10:00:11 +00:00
Andy Wilkinson
590ca7d3f6
Merge branch '3.3.x'
...
Closes gh-42939
2024-10-30 08:15:20 +00:00
Andy Wilkinson
31b1c40894
Fix link to checkpoint-restore status page
...
Closes gh-42938
2024-10-30 08:14:48 +00:00
Stéphane Nicoll
a52bdc98e7
Merge branch '3.3.x'
...
Closes gh-42936
2024-10-30 16:39:46 +09:00