Commit Graph

33071 Commits (807582ec06e3ddd5dc995961f1a366e060326801)
 

Author SHA1 Message Date
Phillip Webb 807582ec06 Merge branch '2.4.x' into 2.5.x
Closes gh-27466
3 years ago
Phillip Webb 8ebeedbf93 Upgrade to Artifactory Resource 0.0.17
Closes gh-27465
3 years ago
Andy Wilkinson 4b74399486 Merge branch '2.4.x' into 2.5.x
Closes gh-27462
3 years ago
Andy Wilkinson 62db4c76f1 Fix problems with gradle-plugin-publishing
Closes gh-27461
3 years ago
Spring Buildmaster 2400e4e591 Next development version (v2.5.4-SNAPSHOT) 3 years ago
Andy Wilkinson e2c6929d2b Merge branch '2.4.x' into 2.5.x
Closes gh-27459
3 years ago
Andy Wilkinson f0625b42bf Trigger publish-gradle-plugin automatically
Closes gh-27454
3 years ago
Andy Wilkinson 3e99a97bd8 Merge branch '2.4.x' into 2.5.x
Closes gh-27457
3 years ago
Andy Wilkinson 1389d803ae Correct path in publish-gradle-plugin script
Fixes gh-27456
3 years ago
Andy Wilkinson 7225d0e54b Merge pull request #27453 from saraswathy-krish
* gh-27453:
  Polish "Fix deriving DataSources from custom type"
  Fix deriving DataSources from custom type

Closes gh-27453
3 years ago
Andy Wilkinson 18b4898977 Polish "Fix deriving DataSources from custom type"
See gh-27453
3 years ago
saraswathy-krish d0e2823c49 Fix deriving DataSources from custom type
Eliminate the unsupported datasource property exception thrown
when trying to derive a datasource from an unknown datasource type.

See gh-27453
3 years ago
Andy Wilkinson 44a9531ace Merge branch '2.4.x' into 2.5.x 3 years ago
Spring Buildmaster 3321b835f4 Next development version (v2.4.10-SNAPSHOT) 3 years ago
Andy Wilkinson 68c5f6cd30 Upgrade to Undertow 2.2.9.Final
Closes gh-27452
3 years ago
Andy Wilkinson 191bd8ca57 Upgrade to SLF4J 1.7.32
Closes gh-27451
3 years ago
Andy Wilkinson a279d42712 Upgrade to MySQL 8.0.26
Closes gh-27450
3 years ago
Andy Wilkinson 982d6c6097 Upgrade to Logback 1.2.4
Closes gh-27449
3 years ago
Andy Wilkinson 8044bd2424 Upgrade to Jedis 3.6.3
Closes gh-27448
3 years ago
Andy Wilkinson fcdc3833e8 Merge branch '2.4.x' into 2.5.x 3 years ago
Andy Wilkinson 3ca86435d1 Upgrade to Undertow 2.2.9.Final
Closes gh-27446
3 years ago
Andy Wilkinson aaf26245d5 Upgrade to SLF4J 1.7.32
Closes gh-27445
3 years ago
Andy Wilkinson 7fbfbfe21e Upgrade to MySQL 8.0.26
Closes gh-27444
3 years ago
Andy Wilkinson c7ba905993 Merge branch '2.4.x' into 2.5.x
Closes gh-27442
3 years ago
Andy Wilkinson 70ecaac16c Configure a mirror for registry-image image_resources
Closes gh-27441
3 years ago
Andy Wilkinson ca9396d890 Merge branch '2.4.x' into 2.5.x
Closes gh-27439
3 years ago
Andy Wilkinson 79990a1b9c Upgrade to artifactory-resource 0.0.15
Closes gh-27232
3 years ago
Andy Wilkinson bb26b7bdf5 Polish
Closes gh-27431
3 years ago
Andy Wilkinson 14e23bf556 Merge pull request #27418 from izeye
* gh-27418:
  Polish

Closes gh-27418
3 years ago
izeye 734293d491 Polish
See gh-27418
3 years ago
Andy Wilkinson 4a533e14c3 Merge branch '2.4.x' into 2.5.x
Closes gh-27428
3 years ago
Andy Wilkinson c8c1452ced Merge pull request #27417 from dreis2211
* gh-27417:
  Polishing

Closes gh-27417
3 years ago
dreis2211 4d0c98011e Polishing
See gh-27417
3 years ago
Andy Wilkinson bc9b34f031 Merge branch '2.4.x' into 2.5.x
Closes gh-27426
3 years ago
Andy Wilkinson dcced2561a Upgrade to Gradle Enterprise Conventions 0.0.8
Closes gh-26115
3 years ago
Andy Wilkinson 29c83bfd76 Instantiate detectors with ClassLoader that discovered them
Fixes gh-27422
3 years ago
Andy Wilkinson dfe91be885 Upgrade to Spring Integration 5.5.2
Closes gh-27166
3 years ago
Andy Wilkinson a5e95ef4c8 Merge branch '2.4.x' into 2.5.x
Closes gh-27419
3 years ago
Andy Wilkinson b5587b053d Use ClassLoader that will load Yaml to check if it's present
Fixes gh-27133
3 years ago
Andy Wilkinson c2819d6c50 Merge pull request #26769 from dreis2211
* gh-26769:
  Add Java 17 to JavaVersion enum

Closes gh-26769
3 years ago
dreis2211 0ea3b9246a Add Java 17 to JavaVersion enum
See gh-26769
3 years ago
Andy Wilkinson 6036cde7a3 Merge pull request #27409 from dreis2211
* gh-27409:
  Remove redundant deprecation suppressions

Closes gh-27409
3 years ago
dreis2211 f0df9671cd Remove redundant deprecation suppressions
See gh-27409
3 years ago
Andy Wilkinson 5783caabd7 Upgrade to Spring AMQP 2.3.10
Closes gh-27392
3 years ago
Andy Wilkinson 47289de332 Upgrade to Spring Kafka 2.7.4
Closes gh-27165
3 years ago
Andy Wilkinson 9d2cb162e6 Configure initializer dependencies grouped by detector
Previously, database initializers were detected and were configured
with dependencies based on their detection order. For example, if
detectors a, b, and c detected initializers a1, b1, b2, and c1,
c1 would depend on b2, b2 on b1, and b1 on a1:

------     ------     ------     ------
| c1 | --> | b2 | --> | b1 | --> | a1 |
------     ------     ------     ------

This could cause a dependency cycle in certain situations, for
example because the user had already configured b1 to depend on b2.

This commit reduces the risk of a cycle being created by batching
the initializers by their detector, with dependencies being
configured between each batch rather than between every initializer.
In the example above, this results in c1 depending on b1 and b2,
and b1 and b2 depending on a1:

           ------
------     | b1 |     ------
| c1 | --> |    | --> | a1 |
------     | b2 |     ------
           ------

As b1 and b2 were detected by the same detector, no dependency
between those initializers is defined.

Closes gh-27131
3 years ago
Andy Wilkinson cfed99dff5 Merge branch '2.4.x' into 2.5.x 3 years ago
Andy Wilkinson 9d64269552 Upgrade to Logback 1.2.4
Closes gh-27380
3 years ago
Andy Wilkinson 9973937af3 Upgrade to Spring AMQP 2.3.10
Closes gh-27391
3 years ago
Andy Wilkinson b354188bd8 Upgrade to Spring Data 2021.0.3
Closes gh-27164
3 years ago