Commit Graph

44919 Commits

Author SHA1 Message Date
Brian Clozel c8d036eaa8 Remove ServerHttpObservationFilter from WebFlux
This commit removes the auto-configuration of the
`ServerHttpObservationFilter` bean for WebFlux applications as it's been
deprecated by Spring Framework.

The Observability instrumentation is now handled at the
`WebHttpHandlerBuilder` in Framework directly and doesn't need any
auto-configuration from Spring Boot.

Closes gh-37344
2023-09-12 10:59:25 +02:00
Moritz Halbritter 8a1f6d4f32 Merge branch '3.1.x'
Closes gh-37335
2023-09-11 16:50:44 +02:00
Stephane Nicoll a1c2ca7f3b Upgrade to Jetty Reactive HTTPClient 4.0.0
Closes gh-37339
2023-09-11 16:29:30 +02:00
Stephane Nicoll 24eadd70ed Adapt to Spring Framework API change
This commit adapts to API changes in Spring Framework, see
spring-projects/spring-framework#31117

Previously, the "autowired" executable to use for a bean was always
resolved, even if a custom code fragment didn't really need it. This
is key for binding of immutable configuration properties as we use an
instance supplier for it.

This changes means that the workaround added in maintenance releases
can be removed.

See gh-37337
2023-09-11 16:03:27 +02:00
Andy Wilkinson 14a59a33dc Test that GraphQL QueryDSL auto-config backs off without Query DSL
See gh-34974
2023-09-11 15:00:22 +01:00
Moritz Halbritter e2d84fa462 Make SslStoreBundle implementations immutable
Closes gh-37222
2023-09-11 15:39:25 +02:00
Stephane Nicoll 671b04e3e3 Merge branch '3.1.x'
Closes gh-37337
2023-09-11 15:37:53 +02:00
Stephane Nicoll c298091e34 Merge branch '3.0.x' into 3.1.x
Closes gh-37336
2023-09-11 15:37:43 +02:00
Stephane Nicoll 112e85507c Support AOT processing of Value Object with several constructors
Previously, AOT processing failed on processing an immutable
configuration properties that declare several constructors as the core
framework infrastructure tries to resolve the "autowired" constructor
to use, even if the custom code fragments are never going to use it.

This commit workarounds the problem in maintenance releases until a
proper fix is provided in the core framework. When AOT runs, a
SmartInstantiationAwareBeanPostProcessor is added to the bean factory
to provide the constructor to use. This implementation relies on the
same algorithm that the binder uses at runtime.

Closes gh-37283
2023-09-11 15:27:02 +02:00
Stephane Nicoll 22bc339cb7 Upgrade to Tomcat 10.1.13
Closes gh-37333
2023-09-11 15:16:00 +02:00
Stephane Nicoll 18c4401f07 Upgrade to SQLite JDBC 3.43.0.0
Closes gh-37332
2023-09-11 15:16:00 +02:00
Stephane Nicoll 791e6dcc29 Upgrade to SnakeYAML 2.2
Closes gh-37331
2023-09-11 15:15:59 +02:00
Stephane Nicoll 35733199ab Upgrade to SLF4J 2.0.9
Closes gh-37330
2023-09-11 15:15:59 +02:00
Stephane Nicoll 94ba36b8d0 Upgrade to Selenium HtmlUnit 4.12.0
Closes gh-37329
2023-09-11 15:15:59 +02:00
Stephane Nicoll b7f77e055a Upgrade to Selenium 4.12.1
Closes gh-37328
2023-09-11 15:15:59 +02:00
Stephane Nicoll 07922563f0 Upgrade to REST Assured 5.3.2
Closes gh-37327
2023-09-11 15:15:59 +02:00
Stephane Nicoll 5d05347e2c Upgrade to Pooled JMS 3.1.2
Closes gh-37326
2023-09-11 15:15:59 +02:00
Stephane Nicoll ef04925a60 Upgrade to OpenTelemetry 1.30.0
Closes gh-37325
2023-09-11 15:15:59 +02:00
Stephane Nicoll 078b399a93 Upgrade to Neo4j Java Driver 5.12.0
Closes gh-37324
2023-09-11 15:15:58 +02:00
Stephane Nicoll b8eeb8d7f8 Upgrade to Native Build Tools Plugin 0.9.26
Closes gh-37323
2023-09-11 15:15:58 +02:00
Stephane Nicoll b89556eb80 Upgrade to MSSQL JDBC 12.4.1.jre11
Closes gh-37322
2023-09-11 15:15:58 +02:00
Stephane Nicoll 5dc6fcf3e5 Upgrade to Maven Enforcer Plugin 3.4.1
Closes gh-37321
2023-09-11 15:15:58 +02:00
Stephane Nicoll 037aba5f88 Upgrade to MariaDB 3.2.0
Closes gh-37320
2023-09-11 15:15:58 +02:00
Stephane Nicoll 795e796eb6 Upgrade to Jedis 4.4.4
Closes gh-37319
2023-09-11 15:15:58 +02:00
Stephane Nicoll 20cb8712db Upgrade to Infinispan 14.0.17.Final
Closes gh-37318
2023-09-11 15:15:58 +02:00
Stephane Nicoll bb249bea4c Upgrade to Hibernate 6.2.8.Final
Closes gh-37317
2023-09-11 15:15:57 +02:00
Stephane Nicoll 172b4c846a Upgrade to H2 2.2.222
Closes gh-37316
2023-09-11 15:15:57 +02:00
Stephane Nicoll 0b07c24bbd Upgrade to Flyway 9.22.0
Closes gh-37315
2023-09-11 15:15:57 +02:00
Stephane Nicoll 8283db3005 Upgrade to Elasticsearch Client 8.9.2
Closes gh-37314
2023-09-11 15:15:57 +02:00
Stephane Nicoll 18177451a9 Upgrade to Couchbase Client 3.4.10
Closes gh-37313
2023-09-11 15:15:57 +02:00
Stephane Nicoll 1ffb580d6f Upgrade to Commons DBCP2 2.10.0
Closes gh-37312
2023-09-11 15:15:57 +02:00
Stephane Nicoll 3a12a86ea2 Upgrade to Byte Buddy 1.14.7
Closes gh-37311
2023-09-11 15:15:56 +02:00
Brian Clozel 0d902c1323 Document Welcome Page support ordering
This commit documents the relative ordering of `HandlerMapping` support
in Spring MVC and WebFlux applications.
As of Spring Framework 6.1.0, the Welcome Page support acts as a
fallback in case no index route has been defined by the application as a
`RouterFunction` or within an annotated `@Controller`.

Closes gh-34846
2023-09-11 15:04:43 +02:00
Brian Clozel c951c4c212 Polish GraphQL auto-configuration changes
This commit fixes build issues, as the recent changes surfaced an
existing problem: QueryDsl auto-configurations were not guarded by
classpath conditions for QueryDsl Core.

See gh-34974
2023-09-11 12:55:27 +02:00
Andy Wilkinson 04c9c166e6 Merge pull request #37119 from zpavloudis
* gh-37119:
  Polish "Support unwrapping in ValidatorAdapter"
  Support unwrapping in ValidatorAdapter

Closes gh-37119
2023-09-11 11:22:05 +01:00
Andy Wilkinson 4085425f91 Polish "Support unwrapping in ValidatorAdapter"
See gh-37119
2023-09-11 11:03:33 +01:00
Zisis Pavloudis eb6b151c41 Support unwrapping in ValidatorAdapter
See gh-37119
2023-09-11 10:42:32 +01:00
Andy Wilkinson 0242ba8a13 Merge branch '3.1.x' 2023-09-11 10:32:34 +01:00
Andy Wilkinson 7754dd290a Merge branch '3.0.x' into 3.1.x 2023-09-11 10:32:24 +01:00
Andy Wilkinson 994bafdfd9 Merge branch '2.7.x' into 3.0.x 2023-09-11 10:32:13 +01:00
Marten Deinum 5141e5c4ac Fix description of brokerUrl property in ArtemisProperties
Update description to refer to url instead of port.

See gh-37260
2023-09-11 10:31:19 +01:00
Andy Wilkinson 6f7bdb9751 Merge pull request #37272 from eddumelendez
* gh-37272:
  Add pulsar starters into dependency management

Closes gh-37272
2023-09-11 10:28:31 +01:00
Eddú Meléndez 10f9f29b2b Add pulsar starters into dependency management
Spring for Apache Pulsar was added, introducing two new starters.
Those starters should be listed in dependency management.

See gh-37272
2023-09-11 10:27:54 +01:00
Stephane Nicoll e22ae279d7 Merge branch '3.1.x' 2023-09-11 11:26:14 +02:00
Stephane Nicoll fcfd7b2655 Merge branch '3.0.x' into 3.1.x 2023-09-11 11:26:03 +02:00
Stephane Nicoll 571c8291a2 Merge branch '2.7.x' into 3.0.x 2023-09-11 11:25:55 +02:00
Stephane Nicoll 342419edb3 Upgrade to Tomcat 10.1.13
Closes gh-37306
2023-09-11 11:00:15 +02:00
Stephane Nicoll 8a69af94f2 Upgrade to Spring Kafka 3.0.11
Closes gh-37305
2023-09-11 11:00:15 +02:00
Stephane Nicoll f4f18d1d51 Upgrade to SLF4J 2.0.9
Closes gh-37304
2023-09-11 11:00:15 +02:00
Stephane Nicoll 6faff5e311 Upgrade to REST Assured 5.3.2
Closes gh-37303
2023-09-11 11:00:15 +02:00