Commit Graph

24722 Commits (41f26d3e232d72481858268430f9588447799138)
 

Author SHA1 Message Date
Stephane Nicoll a2d70d46e1 Merge pull request #20604 from dreis2211
* pr/20604:
  Polish BindableTests

Closes gh-20604
5 years ago
dreis2211 6ff842441c Polish BindableTests
See gh-20604
5 years ago
Stephane Nicoll 8593270b5b Only remove trailing slash from URI value
This commit upgrades the algorithm when trailing slash are to be
ignored. Previously a root URI (i.e. "/") would result to to empty
string which is an issue for monitoring system that requires tag values
to be non empty. If the URI is a single character, the trailing is not
applied and "/" is left as is.

Closes gh-20536
5 years ago
Stephane Nicoll 1bf7d25141 Remove Java 13 CI job
Closes gh-20578
5 years ago
Andy Wilkinson 9e7ab46ecc Merge branch '2.1.x' into 2.2.x
Closes gh-20589
5 years ago
Andy Wilkinson 5e61f0d7b1 Merge pull request #20583 from j0rdanit0
* gh-20583:
  Link to correct factory in TomcatReactiveWebServerFactory's javadoc

Closes gh-20583
5 years ago
Jordan Simpson 0d9d0f8532 Link to correct factory in TomcatReactiveWebServerFactory's javadoc
See gh-20583
5 years ago
Andy Wilkinson 242e6b9974 Merge branch '2.1.x' into 2.2.x
Closes gh-20587
5 years ago
Andy Wilkinson 4eb393ec5b Merge pull request #20577 from dreis2211
* gh-20577:
  Only suggest Ubuntu versions available in the Docker registry

Closes gh-20577
5 years ago
dreis2211 e6abcacf1a Only suggest Ubuntu versions available in the Docker registry
See gh-20577
5 years ago
Stephane Nicoll 833f0a1db3 Merge branch '2.1.x' into 2.2.x
See gh-20567
5 years ago
Stephane Nicoll d0ccb59931 Revert "Upgrade CI images to Ubuntu Bionic 20200311"
This reverts commit d25286c5

Closes gh-20566
5 years ago
Stephane Nicoll 168326d9e4 Polish
See gh-20576
5 years ago
dreis2211 0e796479dc Add Java 14 CI
Closes gh-20576
5 years ago
Stephane Nicoll 579a6ac254 Adapt tests for support for Java 14
See gh-20576
5 years ago
Stephane Nicoll 58a45c53ac Upgrade to Groovy 2.5.10
Closes gh-20575
5 years ago
Stephane Nicoll bece0f1360 Start building against Spring Kafka 2.3.7 snapshots
See gh-20574
5 years ago
Stephane Nicoll 96cffb9dd3 Start building against Spring Data Moore SR6 snapshots
See gh-20573
5 years ago
Stephane Nicoll e940e751c1 Start building against Spring Framework 5.2.5 snapshots
See gh-20571
5 years ago
Stephane Nicoll 3966730e02 Start building against Reactor Dysprosium-SR6 snapshots
See gh-20569
5 years ago
Stephane Nicoll 68a2be0ad5 Merge branch '2.1.x' into 2.2.x
Closes gh-20567
5 years ago
Stephane Nicoll 07d28dcc02 Merge pull request #20566 from dreis2211
* pr/20566:
  Upgrade CI images to Ubuntu Bionic 20200311

Closes gh-20566
5 years ago
dreis2211 d25286c5d6 Upgrade CI images to Ubuntu Bionic 20200311
See gh-20566
5 years ago
Andy Wilkinson ab3e2675fb Merge pull request #20323 from larsgrefer
* gh-20323:
  Fix recommended task dependency configuration

Closes gh-20323
5 years ago
Lars Grefer c748f36856 Fix recommended task dependency configuration
`compileJava.dependsOn(processResources)` is not enough to ensure the
correct behavior. Using `dependsOn` only affects the execution order
(`processResources` before `compileJava`) but not the up-to-date check
of `compileJava`. After modifying
`META-INF/additional-spring-configuration-metadata.json`, the
`processResouces` task will considered out-of-date and will be
re-executed, but after that `compileJava` will still be considered
up-to-date which causes the changes not to be merged into
`META-INF/spring-configuration-metadata.json`

With this change the up-do-date check of `compileJava` is affected,
too. Therefore, it will correctly re-execute the
configuration-processor when
`META-INF/additional-spring-configuration-metadata.json` was changed.

See gh-20323
5 years ago
Stephane Nicoll 4b82d7d944 Merge pull request #20541 from dreis2211
* pr/20541:
  Use @Configuration(proxyBeanMethods=false) wherever possible

Closes gh-20541
5 years ago
dreis2211 d9171d0afe Use @Configuration(proxyBeanMethods=false) wherever possible
See gh-20541
5 years ago
Andy Wilkinson 566f79b086 Merge branch '2.1.x' into 2.2.x
Closes gh-20543
5 years ago
Andy Wilkinson b51c7386aa Fix detection of application home for paths containing spaces
Fixes gh-20531
5 years ago
Andy Wilkinson 9fbb664db6 Avoid eager init when evaluating DevToolsDataSourceCondition
Previously, DevToolsDataSourceCondition called
getBeanNamesForType(Class) which could trigger unwanted initialization
of lazy init singletons and objects created by FactoryBeans.

This commit updates DevToolsDataSourceCondition to prohibit eager
init when getting the names of the beans of a particular type.

Fixes gh-20430
5 years ago
Andy Wilkinson e937b2e0cd Merge branch '2.1.x' into 2.2.x
Closes gh-20501
5 years ago
Andy Wilkinson f251772e17 Fix behaviour of DependencyCustomizer ifAllResourcesPresent
Previously, DependencyCustomizer's ifAllResourcesPresent method
would return a customizer that added modules if any of the resources
were present. This commit corrects this behaviours so that modules are
only added if all resources are present.

Fixes gh-20418
5 years ago
Andy Wilkinson e1ce21c3a5 Merge branch '2.1.x' into 2.2.x
Closes gh-20499
5 years ago
Andy Wilkinson 2b2113714d Use getTomcatWebServer to create TomcatWebServer instance
TomcatReactiveWebServerFactory's getTomcatWebServer is described as
being a hook point the can be overrideden to return a different
TomcatWebServer or to apply additional processing to the Tomcat
server. Previously, this did not work as the method was not called
to create the TomcatWebServer instance. Instead, TomcatWebServer was
instantiated and returned directly.

This commit updates TomcatReactiveWebServerFactory to call
getTomcatWebServer to create the TomcatWebServer instance. A test
has also been added to verify that the method is now used.

Fixes gh-20386
5 years ago
Andy Wilkinson 8e7a557954 Merge pull request #20436 from DreierF
* gh-20436:
  Update versiion of git-properties plugin shown in the docs

Closes gh-20436
5 years ago
Florian Dreier 76451d47b7 Update versiion of git-properties plugin shown in the docs
See gh-20436
5 years ago
Madhura Bhave a27e145f03 Merge branch '2.1.x' into 2.2.x
Closes gh-20432
5 years ago
Madhura Bhave 06d870bdd0 Do not wrap CF JSON Keys containing special characters
This reverts commit 6828a15d31.
The commit has been reverted as it breaks backwards compatiblity.

Fixes gh-20343
5 years ago
Stephane Nicoll 1fdb08300b Polish 5 years ago
Stephane Nicoll 3152971ad1 Merge branch '2.1.x' into 2.2.x
Closes gh-20421
5 years ago
Stephane Nicoll c5344b58c2 Merge pull request #20420 from dreis2211
* pr/20420:
  Upgrade CI to Docker 19.03.7

Closes gh-20420
5 years ago
dreis2211 570dca8064 Upgrade CI to Docker 19.03.7
See gh-20420
5 years ago
Stephane Nicoll 5009b5e511 Merge pull request #20388 from dreis2211
* pr/20388:
  Fix some deprecations

Closes gh-20388
5 years ago
dreis2211 f08a9db984 Fix some deprecations
See gh-20388
5 years ago
Stephane Nicoll 743671fabe Merge pull request #19987 from izeye
* pr/19987:
  Use ServerHttpResponse.getRawStatusCode() in WebFluxTags

Closes gh-19987
5 years ago
Johnny Lim 1721aeccb0 Use ServerHttpResponse.getRawStatusCode() in WebFluxTags
See gh-19987
5 years ago
Stephane Nicoll 8f61a4bf39 Merge pull request #20385 from dreis2211
* pr/20385:
  Test the Gradle Plugin against Gradle 6.2.2

Closes gh-20385
5 years ago
dreis2211 daa3855fc8 Test the Gradle Plugin against Gradle 6.2.2
See gh-20385
5 years ago
Madhura Bhave d83ef715a4 Merge branch '2.1.x' into 2.2.x
Closes gh-20375
5 years ago
Madhura Bhave bb8e653b3d Merge pull request #20361 from dreis2211
* pr/20361:
  Upgrade CI images to Ubuntu Bionic 20200219

Closes gh-20361
5 years ago