Commit Graph

12520 Commits (eba7951503cf32ff2e17e7a3468bb91ec6746d45)

Author SHA1 Message Date
Andy Wilkinson 0041446803 Upgrade to Elasticsearch 7.11.1
Closes gh-25359
4 years ago
Andy Wilkinson c6dece067c Upgrade to Spring Data 2021.0.0-M4
Closes gh-25004
4 years ago
Andy Wilkinson bb56de715b Upgrade to Spring Security 5.4.5
This commit also downgrade JOSE JWT to address an incompatibility with
the OIDC SDK 8.x. The OIDC SDK has also been upgraded to the latest 8.x
release to align with the version used by Spring Security.

Closes gh-25221
Fixes gh-25070
4 years ago
Andy Wilkinson 08f73e01da Upgrade to Spring Kafka 2.6.6
Closes gh-25292
4 years ago
Andy Wilkinson 50a258a9ec Upgrade to Spring Integration 5.4.4
Closes gh-25289
4 years ago
Andy Wilkinson 332ab5e1c6 Upgrade to Spring AMQP 2.3.5
Closes gh-25290
4 years ago
Andy Wilkinson a2695f215c Upgrade to Spring Data 2020.0.5
Closes gh-25002
4 years ago
Andy Wilkinson 06e36b6bbe Revert "Update code for Spring Data 2021.0.0-M3"
This reverts commit 4b0ef67e8e.

See gh-25004
4 years ago
Andy Wilkinson 6eb51eb2c3 Start building against Spring Data 2020.0.5 snapshots
See gh-25002
4 years ago
Stephane Nicoll 064f6eea33 Merge branch '2.4.x'
Closes gh-25354
4 years ago
Sébastien Deleuze 512efa1687 Refactor CacheConfigurations to avoid storing configuration classes
This commit refactors CacheConfigurations implementation to make
it more native friendly by storing strings instead of classes in
order to avoid loading the configuration classes
when CacheConfigurations is initialized at build time.

See gh-25321
4 years ago
Madhura Bhave 29ab9fd596 Merge branch '2.4.x'
Closes gh-25351
4 years ago
Madhura Bhave b5e1787641 Make devtools securityFilterChain back-off in presence of WebSecurityConfigurerAdapter
Fixes gh-25147
4 years ago
Andy Wilkinson 3ad68a39b6 Upgrade to Spring Integration 5.3.6.RELEASE
Closes gh-25283
4 years ago
Madhura Bhave 6fa7c6ac21 Merge branch '2.4.x'
Closes gh-25348
4 years ago
Madhura Bhave 00a358b4d3 Throw or warn for invalid config properties with list syntax
Fixes gh-25309
4 years ago
Andy Wilkinson bec065dfd3 Upgrade to Spring AMQP 2.2.15.RELEASE
Closes gh-25284
4 years ago
Andy Wilkinson df5f59127a Support Jetty 10
Closes gh-24886
4 years ago
Andy Wilkinson a95e93a8a9 Merge branch '2.4.x'
Closes gh-25347
4 years ago
Andy Wilkinson 08e86741fd Don't scan for `@Persistent` types as they may not be meant for Neo4j
Closes gh-25069
4 years ago
Madhura Bhave d69565cf3e Merge branch '2.4.x'
Closes gh-25346
4 years ago
Madhura Bhave 52a15647a9 Polish "Remove old documentation relating to yaml and profiles"
See gh-24620
4 years ago
Ramiro Aparicio 93f822e7b6 Remove old documentation relating to yaml and profiles
See gh-24620
4 years ago
Stephane Nicoll 15375fdf68 Merge branch '2.4.x'
Closes gh-25342
4 years ago
Stephane Nicoll 5d1bb3025b Add username alias for H2's JdbcDataSource
Closes gh-25263
4 years ago
Andy Wilkinson 87efacf039 Upgrade to Spring HATEOAS 1.2.4
Closes gh-25341
4 years ago
Andy Wilkinson cc35ffbfd9 Upgrade to RxJava2 2.2.21
Closes gh-25340
4 years ago
Andy Wilkinson 299134fb14 Upgrade to JUnit 4.13.2
Closes gh-25339
4 years ago
Andy Wilkinson edc7253635 Upgrade to FreeMarker 2.3.31
Closes gh-25338
4 years ago
Andy Wilkinson 29d46c86c9 Upgrade to Spring Data Neumann-SR7
Closes gh-25282
4 years ago
Andy Wilkinson 0348b57b16 Upgrade to Spring HATEOAS 1.1.4.RELEASE
Closes gh-25337
4 years ago
Andy Wilkinson 6ce61c504d Upgrade to RxJava2 2.2.21
Closes gh-25336
4 years ago
Andy Wilkinson 92c82a4f54 Upgrade to JUnit 4.13.2
Closes gh-25335
4 years ago
Andy Wilkinson 74b33cce5e Upgrade to FreeMarker 2.3.31
Closes gh-25334
4 years ago
Andy Wilkinson d0280f1d81 Upgrade to RxJava2 2.2.21
Closes gh-25332
4 years ago
Andy Wilkinson 9cabedfa11 Upgrade to Micrometer 1.6.4
Closes gh-25331
4 years ago
Andy Wilkinson 36a898a411 Upgrade to Liquibase 4.3.1
Closes gh-25330
4 years ago
Andy Wilkinson 48f8ec1f03 Upgrade to JUnit 4.13.2
Closes gh-25329
4 years ago
Andy Wilkinson 8155e09b8f Upgrade to Infinispan 12.0.1.Final
Closes gh-25328
4 years ago
Andy Wilkinson 9f8b539783 Upgrade to HikariCP 4.0.2
Closes gh-25327
4 years ago
Andy Wilkinson 20689e40fe Upgrade to FreeMarker 2.3.31
Closes gh-25326
4 years ago
Andy Wilkinson ccc7e74ee4 Upgrade to Caffeine 2.9.0
Closes gh-25325
4 years ago
Andy Wilkinson 5d52411291 Upgrade to Artemis 2.17.0
Closes gh-25324
4 years ago
Andy Wilkinson a91f32d14e Temporarily work around breaking API change in Spring Data Couchbase
See gh-25002
4 years ago
Andy Wilkinson d922d0f859 Upgrade to Micrometer 1.6.4
Closes gh-25291
4 years ago
Andy Wilkinson 43c923b3d5 Upgrade to Micrometer 1.5.11
Closes gh-25285
4 years ago
Andy Wilkinson 2f83a6714b Rework DataSource initialization
Previously, DataSource initialization was triggered via a
BeanPostProcessor or a schema created event from JPA. This caused
numerous problems with circular dependencies, bean lifecycle, etc and
added significant complexity.

This commit reworks DataSource initialization to remove the use of a
BeanPostProcessor entirely. In its place, DataSource initialization is
now driven by an InitializingBean with dependency relationships
between beans ensuring that initialization has been performed before
the DataSource is used. This aligns with the approach that's worked
well with Flyway and Liquibase.

More changes are planned to further simplify DataSource initialization.
The changes in this commit are a foundation for those changes. Any new
public API in this commit is highly likely to change before the next
GA.

Fixes gh-13042
Fixes gh-23736
4 years ago
Stephane Nicoll 9bc4f8ede1 Polish "Group jdbc-related batch properties beneath spring.batch.jdbc"
See gh-25316
4 years ago
Mukul Chaundhyan d093807f95 Group jdbc-related batch properties beneath spring.batch.jdbc
See gh-25316
4 years ago
Andy Wilkinson 9a3889baec Align with breaking change in Spring Data MongoDB
See gh-25004
4 years ago
Stephane Nicoll 2f17bd6543 Upgrade to Spring Framework 5.3.4
Closes gh-25293
4 years ago
Stephane Nicoll 44d765bd00 Upgrade to Spring Framework 5.3.4
Closes gh-24998
4 years ago
Stephane Nicoll 32f6719ec1 Upgrade to Spring Framework 5.2.13
Closes gh-25281
4 years ago
Stephane Nicoll 696179762d Align default values for Cassandra's throttling properties
Closes gh-25149
4 years ago
izeye 9f0f7d59ef Fix Javadoc since tag for ConfigurationPropertiesReportEndpointWebExtension
See gh-25314
4 years ago
Andy Wilkinson ed03ac19bc Polish 4 years ago
Stephane Nicoll c2b85c1a0e Merge branch '2.4.x'
Closes gh-25313
4 years ago
Stephane Nicoll f6b5964258 Merge branch '2.3.x' into 2.4.x
Closes gh-25312
4 years ago
Stephane Nicoll 0da7822e27 Update copyright of changed files
See gh-25265
4 years ago
melburne 2163c96205 Fix incorrect detection of Amazon Redshift
See gh-25265
4 years ago
Andy Wilkinson accd3c0946 Merge branch '2.4.x'
Closes gh-25311
4 years ago
Andy Wilkinson 0dbf907f73 Merge branch '2.3.x' into 2.4.x
Closes gh-25310
4 years ago
Andy Wilkinson 78941c32c4 Polish "Ensure that Flyway/Liquibase run before jOOQ's DSLContext is used"
See gh-25279
4 years ago
Eddú Meléndez c55200d19a Ensure that Flyway/Liquibase run before jOOQ's DSLContext is used
See gh-25279
4 years ago
Andy Wilkinson 5618646fc7 Merge branch '2.4.x'
Closes gh-25308
4 years ago
Andy Wilkinson b86351d0cf Merge branch '2.3.x' into 2.4.x
Closes gh-25307
4 years ago
Andy Wilkinson a2adb877ee Polish "Encourage use of maven-publish plugin in Gradle docs"
See gh-25299
4 years ago
Robert Smith c0a5245a3e Encourage use of maven-publish plugin in Gradle docs
See gh-25299
4 years ago
Andy Wilkinson 29af4b953f Add dependency management for new hibernate-micrometer module
Fixes gh-25277
4 years ago
Andy Wilkinson d13df2e103 Merge branch '2.4.x'
Closes gh-25306
4 years ago
Andy Wilkinson c3cdfec9cb Merge branch '2.3.x' into 2.4.x
Closes gh-25305
4 years ago
Andy Wilkinson f907dc2f58 Add dependency management for new hibernate-micrometer module
Fixes gh-25277
4 years ago
Andy Wilkinson 9628df87ff Merge branch '2.4.x'
Closes gh-25304
4 years ago
Andy Wilkinson 55e3ca66e2 Replace native image system property with call to NativeDetector
Closes gh-25303
4 years ago
Stephane Nicoll 488c313586 Upgrade to Reactor 2020.0.4
Closes gh-25301
4 years ago
Stephane Nicoll dcbc3a29aa Upgrade to Reactor 2020.0.4
Closes gh-25286
4 years ago
Stephane Nicoll 98964990d4 Upgrade to Reactor Dysprosium-SR17
Closes gh-25280
4 years ago
Stephane Nicoll 9b7581a8ef Polish "Fix database name detection logic for MariaDB"
See gh-25173
4 years ago
anudeepg 053323f58b Fix database name detection logic for MariaDB
See gh-25173
4 years ago
Stephane Nicoll b50fb824a3 Merge branch '2.4.x'
Closes gh-25298
4 years ago
Stephane Nicoll a9ff33f74f Merge branch '2.3.x' into 2.4.x
Closes gh-25297
4 years ago
Stephane Nicoll 569002e917 Polish "Document Kafka Streams metrics support"
See gh-25272
4 years ago
izeye dff4ca2293 Document Kafka Streams metrics support
See gh-25272
4 years ago
Stephane Nicoll 8c0c30e7a8 Polish "Add support to auto-configure javax.jms.ExceptionListener"
See gh-25278
4 years ago
Eddú Meléndez 1f00c27c7e Add support to auto-configure javax.jms.ExceptionListener
See gh-25278
4 years ago
Stephane Nicoll 3f9f9a4637 Polish "Start building against Spring Data Neumann-SR7 snapshots"
See gh-25282
4 years ago
Stephane Nicoll a16a2de3c3 Merge branch '2.4.x'
Closes gh-25296
4 years ago
Stephane Nicoll 0bc03c7141 Associate application classloader to auto-configured Hazelcast instance
Closes gh-24836
4 years ago
Stephane Nicoll 349d755632 Start building against Spring Kafka 2.7.0-M2 snapshots
See gh-25295
4 years ago
Stephane Nicoll 56a2634990 Start building against Spring Integration 5.5.0-M2 snapshots
See gh-25294
4 years ago
Stephane Nicoll 5576f26115 Start building against Spring Kafka 2.6.6 snapshots
See gh-25292
4 years ago
Stephane Nicoll 67e1b64a23 Start building against Micrometer 1.6.4 snapshots
See gh-25291
4 years ago
Stephane Nicoll f8caab121d Start building against Spring AMQP 2.3.5 snapshots
See gh-25290
4 years ago
Stephane Nicoll 8a4f49c30b Start building against Spring Integration 5.4.4 snapshots
See gh-25289
4 years ago
Stephane Nicoll 31a98f90c8 Start building against Reactor 2020.0.4 snapshots
See gh-25286
4 years ago
Stephane Nicoll bab0862fdd Start building against Micrometer 1.5.11 snapshots
See gh-25285
4 years ago
Stephane Nicoll 080bec0b20 Start building against Spring AMQP 2.2.15 snapshots
See gh-25284
4 years ago
Stephane Nicoll 1004617d2f Start building against Spring Integration 5.3.6 snapshots
See gh-25283
4 years ago
Stephane Nicoll f1dda97900 Start building against Spring Data Neumann-SR7 snapshots
See gh-25282
4 years ago
Stephane Nicoll 33736e818b Start building against Spring Framework 5.2.13 snapshots
See gh-25281
4 years ago
Stephane Nicoll 2c2fedc156 Start building against Reactor Dysprosium-SR17 snapshots
See gh-25280
4 years ago
Stephane Nicoll ca9b583c7d Merge branch '2.4.x'
Closes gh-25271
4 years ago
Stephane Nicoll 61e9d04c68 Update copyright of changes files
See gh-25266
4 years ago
izeye f48893def5 Polish 4 years ago
Stephane Nicoll 3471adcf09 Merge branch '2.3.x' into 2.4.x 4 years ago
Stephane Nicoll b7f5f5cac0 Polish
See gh-25266
4 years ago
Andy Wilkinson 0a4c26532d Merge branch '2.4.x'
Closes gh-25259
4 years ago
Andy Wilkinson 392be57003 Apply Logback system properties and not just common properties to context
Closes gh-24894
4 years ago
Andy Wilkinson cc4bace12b Upgrade to Undertow 2.2.4.Final
Closes gh-25254
4 years ago
Andy Wilkinson 118b55579a Upgrade to Tomcat 9.0.43
Closes gh-25253
4 years ago
Andy Wilkinson 627d0b713f Upgrade to Solr 8.8.0
Closes gh-25252
4 years ago
Andy Wilkinson 078a7fdd15 Upgrade to Selenium HtmlUnit 2.47.1
Closes gh-25251
4 years ago
Andy Wilkinson 387fe4b5bb Upgrade to Prometheus PushGateway 0.10.0
Closes gh-25250
4 years ago
Andy Wilkinson 3c0972e7f9 Upgrade to Spring Security 5.5.0-M2
Closes gh-25255
4 years ago
Andy Wilkinson dadd6241ac Upgrade to Nimbus JOSE JWT 9.5
Closes gh-25249
4 years ago
Andy Wilkinson e8e8a4c16b Upgrade to OAuth2 OIDC SDK 9.1
Closes gh-25248
4 years ago
Andy Wilkinson 7e228556c7 Upgrade to Netty 4.1.59.Final
Closes gh-25247
4 years ago
Andy Wilkinson a70386b4e3 Upgrade to MSSQL JDBC 9.2.0.jre8
Closes gh-25246
4 years ago
Andy Wilkinson f91c6075c8 Upgrade to MariaDB 2.7.2
Closes gh-25245
4 years ago
Andy Wilkinson 80b0c384d6 Upgrade to Lombok 1.18.18
Closes gh-25244
4 years ago
Andy Wilkinson 07f74593a5 Upgrade to Liquibase 4.3.0
Closes gh-25243
4 years ago
Andy Wilkinson 723bdc77a5 Upgrade to JUnit Jupiter 5.7.1
Closes gh-25241
4 years ago
Andy Wilkinson 3e8773cda2 Upgrade to jOOQ 3.14.7
Closes gh-25240
4 years ago
Andy Wilkinson 454c4fcd0d Upgrade to Johnzon 1.2.10
Closes gh-25239
4 years ago
Andy Wilkinson 1bd78eb940 Upgrade to Jedis 3.5.1
Closes gh-25238
4 years ago
Andy Wilkinson 1f1f510cec Upgrade to Janino 3.1.3
Closes gh-25237
4 years ago
Andy Wilkinson 6fbb67e751 Upgrade to Infinispan 12.0.0.Final
Closes gh-25236
4 years ago
Andy Wilkinson 22568d42de Upgrade to HtmlUnit 2.47.1
Closes gh-25235
4 years ago
Andy Wilkinson 16ed1a9668 Upgrade to HikariCP 4.0.1
Closes gh-25234
4 years ago
Andy Wilkinson a1ff05ec12 Upgrade to Hibernate 5.4.28.Final
Closes gh-25233
4 years ago
Andy Wilkinson 5dba00fcac Upgrade to Flyway 7.5.3
Closes gh-25232
4 years ago
Andy Wilkinson 0cf846b484 Upgrade to Couchbase Client 3.1.2
Closes gh-25231
4 years ago
Andy Wilkinson bfbdc3bfaf Upgrade to Byte Buddy 1.10.20
Closes gh-25230
4 years ago
Andy Wilkinson 3200d52b15 Upgrade to AssertJ 3.19.0
Closes gh-25229
4 years ago
Andy Wilkinson 6e77c27da5 Upgrade to AppEngine SDK 1.9.86
Closes gh-25228
4 years ago
Andy Wilkinson 5a21395b0b Upgrade to Undertow 2.2.4.Final
Closes gh-25224
4 years ago
Andy Wilkinson 28fc2b1d52 Upgrade to Tomcat 9.0.43
Closes gh-25223
4 years ago
Andy Wilkinson 58c823ef22 Upgrade to Spring Session Bom 2020.0.3
Closes gh-25222
4 years ago
Andy Wilkinson 51ca7d67ba Upgrade to Netty 4.1.59.Final
Closes gh-25220
4 years ago
Andy Wilkinson ca24fd1437 Upgrade to MySQL 8.0.23
Closes gh-25219
4 years ago
Andy Wilkinson 5dfe3ccc89 Upgrade to MariaDB 2.7.2
Closes gh-25218
4 years ago
Andy Wilkinson d7cc673ac0 Upgrade to Lombok 1.18.18
Closes gh-25217
4 years ago
Andy Wilkinson d50be39bee Upgrade to JUnit Jupiter 5.7.1
Closes gh-25215
4 years ago
Andy Wilkinson 636a99ecd3 Upgrade to jOOQ 3.14.7
Closes gh-25214
4 years ago
Andy Wilkinson d2630151ce Upgrade to Johnzon 1.2.10
Closes gh-25213
4 years ago
Andy Wilkinson 1c2265feac Upgrade to Jetty 9.4.36.v20210114
Closes gh-25212
4 years ago
Andy Wilkinson 1ceba0910b Upgrade to Jaybird 3.0.10
Closes gh-25211
4 years ago
Andy Wilkinson 7d5484e9d1 Upgrade to Janino 3.1.3
Closes gh-25210
4 years ago
Andy Wilkinson d5cb97984f Upgrade to Infinispan 11.0.9.Final
Closes gh-25209
4 years ago
Andy Wilkinson 8f1bda83be Upgrade to Hibernate 5.4.28.Final
Closes gh-25208
4 years ago
Andy Wilkinson bd24553f7e Upgrade to Byte Buddy 1.10.20
Closes gh-25207
4 years ago
Andy Wilkinson fc4c101503 Upgrade to AppEngine SDK 1.9.86
Closes gh-25206
4 years ago
Andy Wilkinson 1adc4118da Upgrade to ActiveMQ 5.16.1
Closes gh-25205
4 years ago
Andy Wilkinson 63de8dec1f Upgrade to Undertow 2.1.6.Final
Closes gh-25204
4 years ago
Andy Wilkinson b1dd3fb827 Upgrade to Tomcat 9.0.43
Closes gh-25203
4 years ago
Andy Wilkinson aaad1613dc Upgrade to Spring Session Bom Dragonfruit-SR2
Closes gh-25202
4 years ago
Andy Wilkinson 13cbc1a80b Upgrade to Spring Security 5.3.8.RELEASE
Closes gh-25201
4 years ago
Andy Wilkinson 8e86957efc Upgrade to Netty 4.1.59.Final
Closes gh-25200
4 years ago
Andy Wilkinson f728367785 Upgrade to Neo4j OGM 3.2.20
Closes gh-25199
4 years ago
Andy Wilkinson e3bed12a16 Upgrade to MySQL 8.0.23
Closes gh-25198
4 years ago
Andy Wilkinson aa5e33bc83 Upgrade to Lombok 1.18.18
Closes gh-25197
4 years ago
Andy Wilkinson 97d4837feb Upgrade to Johnzon 1.2.10
Closes gh-25196
4 years ago
Andy Wilkinson 87404581b9 Upgrade to Jetty 9.4.36.v20210114
Closes gh-25195
4 years ago
Andy Wilkinson 05d805ad60 Upgrade to Jaybird 3.0.10
Closes gh-25194
4 years ago
Andy Wilkinson 3ada6e9304 Upgrade to Janino 3.1.3
Closes gh-25193
4 years ago
Andy Wilkinson adc601b72c Upgrade to Hibernate 5.4.28.Final
Closes gh-25192
4 years ago
Andy Wilkinson 4b6418f11f Upgrade to Hazelcast 3.12.12
Closes gh-25191
4 years ago
Andy Wilkinson 88afda03a3 Upgrade to Byte Buddy 1.10.20
Closes gh-25190
4 years ago
Andy Wilkinson fa6c749215 Upgrade to AppEngine SDK 1.9.86
Closes gh-25189
4 years ago
Andy Wilkinson da3f0dc1c7 Merge branch '2.4.x'
Closes gh-25186
4 years ago
Andy Wilkinson 9ba28a8b99 Merge branch '2.3.x' into 2.4.x
Closes gh-25185
4 years ago
Andy Wilkinson bd64e05203 Instrument AMQP AbstractCF when defined as a ConnectionFactory
Fixes gh-25138
4 years ago
Stephane Nicoll 5017d59d56 Merge branch '2.4.x'
Closes gh-25184
4 years ago
Stephane Nicoll 75fc896321 Avoid Illegal reflective access warnings with devtools
This commit improves RestartClassLoader to use a method introduced in
SmartClassLoader to avoid triggering a warning on Java 11 and later.

See https://github.com/spring-projects/spring-framework/issues/26403

Closes gh-24857
4 years ago
Andy Wilkinson 55c47c8b5d Merge branch '2.4.x'
Closes gh-25183
4 years ago
Andy Wilkinson 698672e1cb Merge branch '2.3.x' into 2.4.x
Closes gh-25182
4 years ago
Andy Wilkinson 82dc2dffbd Select specific CLI distribution in CLI's integration tests
Previously, CommandLineInvoker would use the first -bin.zip file found
in build/distributions. If this directory contained multiple zips from
building different versions of Spring Boot, this could result in the
tests being run against the wrong version of the CLI.

This commit updates CommandLineInvoker look for a specific zip in
build/distributions, using the version from gradle.properties to
identify it.

Closes gh-25179
4 years ago
Andy Wilkinson 249b38e07d Merge branch '2.4.x'
Closes gh-25175
4 years ago
Andy Wilkinson 9da3b65ff3 Merge branch '2.3.x' into 2.4.x
Closes gh-25174
4 years ago
Stephane Nicoll b92bb9332b Polish "Filter properties with a particular prefix"
See gh-24718
4 years ago
Andy Wilkinson 708cbd7294 Ignore events from other contexts when waiting for DS init to complete
Fixes gh-24966
4 years ago
bono007 ad7c69a9cd Filter properties with a particular prefix
This commit improves the configprops endpoint to allow filtering
properties based on a particular prefix

See gh-24718
4 years ago
Stephane Nicoll 0f9fb13141 Fix formatting 4 years ago
Stephane Nicoll a2118e985a Merge branch '2.4.x'
Closes gh-25170
4 years ago
Stephane Nicoll 46bc551c2b Merge branch '2.3.x' into 2.4.x
Closes gh-25169
4 years ago
Stephane Nicoll 1524793a92 Fix use of deprecated Cassandra properties in integration tests
Closes gh-25148
4 years ago
Andy Wilkinson 514aede91e Merge branch '2.4.x'
Closes gh-25168
4 years ago
Andy Wilkinson 45e6c12cb6 Consider transitives when identifying project dependencies
Previously, when building a layered jar, the Gradle plugin only
considered a configuration's direct dependencies when identifying
project dependencies. This resulted in transitive project dependencies
being missed when deciding which dependencies belong in the
application layer.

This commit updates ResolvedDependencies to consider all projects
from the root project when collecting the IDs of local projects. This
ensures that any project dependency, no matter where it appears in the
dependency graph, is successfully identified.

Fixes gh-25163
4 years ago
Stephane Nicoll d436521472 Merge branch '2.4.x'
Closes gh-25167
4 years ago
Stephane Nicoll 7cb1605c11 Merge branch '2.3.x' into 2.4.x
Closes gh-25166
4 years ago
Stephane Nicoll e5098697cb Polish "Validate Cassandra defaults"
See gh-25130
4 years ago
bono007 f71ab69aeb Validate Cassandra defaults
See gh-25130
4 years ago
Stephane Nicoll d28d82d355 Merge branch '2.4.x'
Closes gh-25164
4 years ago
Stephane Nicoll acc8f3708b Update copyright of changed file
See gh-25150
4 years ago
bono007 4ef82c45ac Fix defaults for Cassandra's initQueryTimeout and idleTimeout
See gh-25150
4 years ago
Madhura Bhave 301e80be8c Fix raw types error 4 years ago
Madhura Bhave c05cb21ab7 Add a property to disable the `/actuator` discovery page
Closes gh-24693
4 years ago
Andy Wilkinson 3610fe50b7 Always use SimpleDriverDataSource when creating Liquibase DataSource
Closes gh-24944
4 years ago
Stephane Nicoll dca643500a Polish "Make Scheduler consistent for Spring Integration"
See gh-25109
4 years ago
Artem Bilan c5491cfdd7 Make Scheduler consistent for Spring Integration
Currently Spring Integration creates its own `TaskScheduler` bean if one
does not exist in the context yet. When we add `@EnableScheduling`,
Spring Boot auto-configures one for us, but this one comes with slightly
different options than the default in Spring Integration.

This commit makes sure that Spring Integration reuses the
auto-configured TaskScheduler if possible, regardless of the user
opting-in for `@EnabledScheduling`.

See gh-25109
4 years ago