Commit Graph

24762 Commits (aa1954717cce4786e056153868a334054cd51a01)
 

Author SHA1 Message Date
Andy Wilkinson 648e468c86 Build against Spring HATEOAS 1.1.0.M1 snapshots
See gh-19649
5 years ago
Stephane Nicoll 42a06060f8 Upgrade to Spring Data Neumann-M1
Closes gh-19588
5 years ago
Stephane Nicoll ca1710ee56 Upgrade to Apache Cassandra 4.3.1
See gh-19588
5 years ago
Stephane Nicoll d282eb619f Upgrade to Elasticsearch 7.5.1
See gh-19588
5 years ago
Scott Frederick f268ede3c0 Start building against Spring Data Neumann-M1 snapshots
See gh-19588
5 years ago
Andy Wilkinson e415f759a2 Raise the minimum supported version of Gradle to 5.6
Closes gh-18777
5 years ago
Brian Clozel 3bd9eea079 Merge pull request #19464 from nosan
* pr/19464:
  Support nested requests in MetricsClientHttpRequestInterceptor

Closes gh-19464
5 years ago
Dmytro Nosan 25838b4794 Support nested requests in MetricsClientHttpRequestInterceptor
Prior to this commit, requests made by `HttpRequestInterceptor`
instances configured on `RestTemplate` would not be recorded
properly.

This commit ensures that nested requests are recorded separately.

See gh-19381
5 years ago
Andy Wilkinson 3f3bac98cb Merge branch '2.2.x' 5 years ago
Andy Wilkinson 136e4dcaaf Merge branch '2.1.x' into 2.2.x 5 years ago
Andy Wilkinson b23b69fea3 Upgrade to Reactor Californium-SR15
Closes gh-19640
5 years ago
Andy Wilkinson c66d2e8039 Relax the Gradle plugin's Kotlin version constraint
Enforcing the spring-boot-dependencies platform makes for too strong
an opinion about the version of Kotlin that should be on the build
script's classpath. It clashes with the version of Kotlin that's
embedded in Gradle and used with Gradle's Kotlin DSL.

This commit switches to a normal platform (rather than an enforced
platform) which allows it to express an opinion about the version of
Kotlin without making it a strict requirement.

Closes gh-19609
5 years ago
Andy Wilkinson c8236a74d8 Upgrade to Spring Security 5.3.0.M1
Closes gh-19654
5 years ago
Andy Wilkinson 39d9e486dd Build against Reactor Dysprosium-SR3 snapshots
See gh-19653
5 years ago
Andy Wilkinson 16fe64ded4 Build against Micrometer 1.3.3 snapshots 5 years ago
Andy Wilkinson 3a2f25c6ff Build against Spring AMQP 2.2.3 snapshots
See gh-19651
5 years ago
Andy Wilkinson 7595336184 Build against Spring Integration 5.3.0.M1 snapshots
See gh-19650
5 years ago
Brian Clozel 18ccbf031a Remove validation starter from web starters
This commit removes the validation starter from the web and
webflux starters - we've reconsidered that choice since many were
not using this feature as part of their default web experience.

Thit commit also changes the default EL implementation for the
Jakarta implementation, aligning all servers on it and simplifying
dependency management (especially exclusions that were required
previously).

Closes gh-19550
5 years ago
Andy Wilkinson 3857a313e3 Merge branch '2.2.x' 5 years ago
Andy Wilkinson 518e14a7bf Use system property rather than --quiet to suppress welcome message
Closes gh-19630
5 years ago
Andy Wilkinson 6d16c7d860 Build against Spring Data Moore-SR4 snapshots
See gh-19648
5 years ago
Andy Wilkinson 3faf023da4 Build against Spring Integration 5.2.3 snapshots
See gh-19647
5 years ago
Andy Wilkinson 0509248bf7 Build against Spring AMQP 2.2.3 snapshots
See gh-19646
5 years ago
Andy Wilkinson 803a24d6f4 Build against Micrometer 1.3.3 snapshots
See gh-19645
5 years ago
Andy Wilkinson cedcbaccdb Build against Spring HATEOAS 1.0.3 snapshots
See gh-19644
5 years ago
Andy Wilkinson fbc958e4dd Build against Reactor Dysprosium-SR3 snapshots
See gh-19643
5 years ago
Andy Wilkinson bda3cedf10 Suppress Gradle's welcome message in CI builds
Closes gh-19630
5 years ago
Andy Wilkinson 823d39d63a Pass Gradle Enterprise-related parameters into Windows build 5 years ago
Andy Wilkinson 5a1236819d Merge branch '2.2.x' 5 years ago
Andy Wilkinson 2c89a4b2fb Merge branch '2.1.x' into 2.2.x 5 years ago
Andy Wilkinson 5e14e33c94 Start building against Micrometer 1.1.10 snapshots
See gh-19639
5 years ago
Andy Wilkinson 2d995e740a Start building against Spring Data Lovelace-SR15 snapshots
See gh-19642
5 years ago
Andy Wilkinson bcaae99fa9 Start building against Spring AMQP 2.1.13 snapshots
See gh-19641
5 years ago
Andy Wilkinson d75a58d789 Start building against Reactor Californium-SR15 snapshots
See gh-19640
5 years ago
Andy Wilkinson efe919c531 Merge branch '2.2.x' 5 years ago
Andy Wilkinson 7fda317f0d Merge branch '2.1.x' into 2.2.x
Closes gh-19657
5 years ago
Andy Wilkinson 617ebaf3c0 Isolate Gradle Plugin build from other Gradle configuration
Closes gh-19656
5 years ago
Stephane Nicoll b97b0c1d7b Merge branch '2.2.x'
Closes gh-19635
5 years ago
Stephane Nicoll 19f664f41a Merge pull request #19621 from dreis2211
* pr/19621:
  Update copyright in legal doc section

Closes gh-19621
5 years ago
dreis2211 9fe114ebad Update copyright in legal doc section
See gh-19621
5 years ago
Phillip Webb af4b531173 Revert "Try to fix problem with corrupted build numbers on Artifactory"
This reverts commit ab981b9cba since
it's hopefully now fixed upstream.
5 years ago
Brian Clozel e0171a5da8 Polish 5 years ago
Madhura Bhave 94ab996597 Merge branch '2.2.x' 5 years ago
Madhura Bhave 1fa83757ce Fix tests
See gh-19599
5 years ago
Brian Clozel 0f567c879d Auto-configure HTTP client builders as Lazy
Prior to this commit, HTTP client builders auto-configured by Spring
Boot would be eagerly instantiating resources, even if those were not
used by the application.

This commit makes the `RestTemplateBuilder` bean as Lazy.
`WebClient.Builder` was already a prototype bean, but some of its
dependencies could consume resources, like the `HttpClientConnector` and
the related infrastructure. This commit makes those pieces lazy.

Note that since those components are meant to help instantiate actual
HTTP clients for application components, making them lazy won't make any
difference at runtime since they'll be used during context refresh, or
they won't be used at all.

Closes gh-19549
5 years ago
Madhura Bhave d510a7bd80 Merge branch '2.2.x'
Closes gh-19622
5 years ago
Madhura Bhave 139995469a Short circuit validation in bind handler if previous exception present
Closes gh-19599
5 years ago
Andy Wilkinson 88f7f8cca0 Merge pull request #19620 from vpavic
* gh-19620:
  Reuse optional configuration name constant

Closes gh-19620
5 years ago
Vedran Pavic 8757f63360 Reuse optional configuration name constant
See gh-19620
5 years ago
Andy Wilkinson 77badf77f7 Merge pull request #19619 from vpavic
* gh-19619:
  Simplify Gradle's build settings

Closes gh-19619
5 years ago