Commit Graph

3548 Commits (0f6a8c7b4936ea3704efd26dd621ca2c76c0ce31)

Author SHA1 Message Date
Andy Wilkinson 5280cfeec0 Adapt to breaking API change in Micrometer
See gh-37703
1 year ago
Andy Wilkinson 1d410dccea Adapt to breaking API change in Framework
See gh-37710
1 year ago
Andy Wilkinson 48059417b5 Upgrade to Kafka 3.6.0
Closes gh-37777
1 year ago
Simon Verhoeven d0cadd9c4a Add reference to the new RestClient class in documentation
See gh-37726
1 year ago
Moritz Halbritter 51d549964a Merge branch '3.1.x'
Closes gh-37692
1 year ago
Moritz Halbritter a416f93eec Merge branch '3.0.x' into 3.1.x
Closes gh-37691
1 year ago
Moritz Halbritter b742bced31 Merge branch '2.7.x' into 3.0.x
Closes gh-37690
1 year ago
Moritz Halbritter 63fccf43dc Polish "Remove link to LiveReload website due to timeout"
See gh-37643
1 year ago
Jonny Coddington 88bbab374d Remove link to LiveReload website due to timeout
See gh-37643
1 year ago
Moritz Halbritter 5b129ceb09 Switch reactor context propagation from auto to limited
- Polish
- Fix @since tags
- Add a test case
- Update context-propagation version

Closes gh-34201
1 year ago
Moritz Halbritter 30f29dead8 Revert "Temporarily remove auto-config for Reactor context propagation"
This reverts commit 88de3cc089.

See gh-34201
1 year ago
Phillip Webb 7ad4a9817d Rewrite nested jar support code and remove Java 8 support
Rewrite nested jar code to better align with the implementations
provided in Java 17. This update makes two fundamental changes to
the previous implementation:

- Resource cleanup is now handled using the `java.lang.ref.Cleaner`

- Jar URLs now use the form `jar:nested:/my.jar/!nested.jar!/entry`

Unlike the previous `jar🫙/my,jar!/nested.jar!/entry` URL format,
the new format is compatible with Java's default Jar URL handler.
Specifically, it now only uses a single `jar:` prefix and it no longer
includes multiple `!/` separators.

In addition to the changes above, many of the ancillary classes have
also been refactored and updated to create cleaner APIs.

Closes gh-37668
1 year ago
Phillip Webb c22548982a Relocate launcher classes
Create alternative launcher classes under the package
`org.springframework.boot.loader.launch` and use them in favor
of the previous location.

This update is designed to improve compatibility with future
changes in the loader.

Closes gh-37667
1 year ago
Phillip Webb 3d6859e80f Use the term "uber jar" in reference documentation and javadoc
Update reference documentation and javadoc to use the term "uber jar"
rather than "fat jar".

Closes gh-37653
1 year ago
Phillip Webb 932355adbf Polish adoc formatting 1 year ago
Scott Frederick ff99de49c4 Configure a RestClient.Builder with RestClientTest
This commit adds support for configuring a `RestClient.Builder` and
`MockRestServiceServer` support for the `RestClient` when using
`@RestClientTest` sliced tests.

Closes gh-37033
1 year ago
Andy Wilkinson 3e9a1cc1f8 Add Awaitility to spring-boot-starter-test
Closes gh-37195
1 year ago
Andy Wilkinson bebca55a8f Add testAndDevelopmentOnly configuration
Closes gh-35436
1 year ago
Moritz Halbritter 40d4c177cd Merge branch '3.1.x'
Closes gh-37616
1 year ago
Moritz Halbritter a1947d6deb Merge branch '3.0.x' into 3.1.x
Closes gh-37615
1 year ago
Moritz Halbritter d266806368 Merge branch '2.7.x' into 3.0.x
Closes gh-37614
1 year ago
Moritz Halbritter 8a5979ee8c Clarify ActiveMQ usage in JMS docs
The Apache ActiveMQ project has adopted the label "Classic" for the 5.x
broker in order to more easily compare and contrast it with the broker
code-named Artemis.

See gh-37606
1 year ago
Phillip Webb 052757c2d8 Polish 1 year ago
Andy Wilkinson ecc670772a Make user details service auto-configs back off more readily
Previously auto-configuration of a user details service (imperative
or reactive) would only back off on the presence of certain beans.
This led to situations where the im-memory service was
auto-configured and the default password was logged even though
another authentication mechanism was in use.

This commit updates the auto-configuration so that it backs off
when depending on Spring Security's OAuth2 Client and OAuth2
Resource Server modules. In the imperative case it will also back
off when depending on the SAML 2 provider.

Closes gh-35338
1 year ago
Moritz Halbritter 1d60e42a73 Merge branch '3.1.x'
Closes gh-37572
1 year ago
Sushant Kumar Singh 088d9ccc32 Remove mockito-inline from documentation
See gh-37561
1 year ago
Moritz Halbritter 1f137af90f Merge branch '3.1.x'
Closes gh-37533
1 year ago
Moritz Halbritter b5cc6f9f92 Merge branch '3.0.x' into 3.1.x
Closes gh-37532
1 year ago
Moritz Halbritter 17092e124d Merge branch '2.7.x' into 3.0.x
Closes gh-37531
1 year ago
Moritz Halbritter 6be8ce948a Document support for Java 21
Closes gh-37371
1 year ago
Moritz Halbritter ae7a3410ad Merge branch '3.1.x'
Closes gh-37511
1 year ago
Moritz Halbritter aabd6f58d5 Merge branch '3.0.x' into 3.1.x
Closes gh-37510
1 year ago
Moritz Halbritter 454342acfa Merge branch '2.7.x' into 3.0.x
Closes gh-37509
1 year ago
김희망 45e08f321c Use more idiomatic Kotlin in doc example
See gh-37491
1 year ago
Moritz Halbritter 77f0828f7f Merge branch '3.1.x'
Closes gh-37444
1 year ago
Moritz Halbritter 5d120faac2 Merge branch '3.0.x' into 3.1.x
Closes gh-37443
1 year ago
Moritz Halbritter 5a0bc0a112 Merge branch '2.7.x' into 3.0.x
Closes gh-37442
1 year ago
Moritz Halbritter ff2fc95daf Document that PKCS8 PEM files should be used whenever possible
Closes gh-37170
1 year ago
Brian Clozel 0fc97e9315 Auto-configure ObservationRegistry on JmsTemplate
Spring Boot auto-configures both a `JmsTemplate` and a
`JmsMessagingTemplate`. As of Spring Framework 6.2, JMS has
observability support when publishing messages.

This commit creates a bean post-processor that configures an
`ObservationRegistry` on the template, if the registry is present.

Closes gh-37388
1 year ago
Brian Clozel d6daf87074 Update Antora reference documentation links
This commit updates the base URLs for reference documentations when the
relevant Spring project is now being published with Antora.

This commit updates the following projects:

* Spring Framework
* Spring Integration
* Spring for GraphQL
* Spring Security, including Authorization Server
* Spring Batch
* Spring Data JPA

Closes gh-37428
1 year ago
Johnny Lim 8f4ccb0535 Polish
See gh-37393
1 year ago
Andy Wilkinson e3d884803e Add Docker Compose support for Neo4j
Closes gh-37379
1 year ago
Chris Bono b81d78f324 Add SSL section to Pulsar docs
- Add link to Spring Pulsar TLS docs
- Update usage of 'Spring Pulsar' to 'Spring for Apache Pulsar'

See gh-37375
1 year ago
Moritz Halbritter c387c87fda Polish "Add service connection from OpenTelemetry Collector"
See gh-35082
1 year ago
Eddú Meléndez 6997277f75 Add service connection from OpenTelemetry Collector
See gh-35082
1 year ago
Johnny Lim c2b78830ff Polish
See gh-37340
1 year ago
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
1 year ago
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
1 year ago
Andy Wilkinson ed5d16de84 Upgrade to Jetty 12
Closes gh-36073
1 year ago
Chris Bono 089fef0392 Add Pulsar ConnectionDetails support
Add `ConnectionDetails` support for Apache Pulsar and provide adapters
for Docker Compose and Testcontainers.

See gh-37197
1 year ago