Commit Graph

33076 Commits (e5d27d33078e21d0bc5bac4734bec29b970fb477)
 

Author SHA1 Message Date
Madhura Bhave ce1dff86df Merge branch '2.5.x' into main
See gh-27140
3 years ago
Madhura Bhave c6acce569f Merge branch '2.4.x' into 2.5.x
See gh-27139
3 years ago
Madhura Bhave 877f618a69 Clarify that HATEOAS can be used with Webflux without starter
Closes gh-26897
3 years ago
Madhura Bhave 1dc8fa14c9 Merge branch '2.5.x' into main
Closes gh-27140
3 years ago
Madhura Bhave 503d50f39e Merge branch '2.4.x' into 2.5.x
Closes gh-27139
3 years ago
Madhura Bhave 6c4273b5c9 Document spring hateoas is spring mvc specific
Closes gh-26897
3 years ago
Madhura Bhave 1f3b32c3b9 Merge branch '2.5.x' into main
Closes gh-27138
3 years ago
Madhura Bhave 55593a7ac1 Merge branch '2.4.x' into 2.5.x
Closes gh-27137
3 years ago
Madhura Bhave eb4144eb97 Add clarification on when @DevaultValue is used during binding
Closes gh-26742
3 years ago
Madhura Bhave 32a1644cca Split spring boot features into multiple sections
See gh-27132
3 years ago
Madhura Bhave f06b784d6e Merge branch '2.5.x' into main
Closes gh-27122
3 years ago
Madhura Bhave c231714e2f Merge branch '2.4.x' into 2.5.x
Closes gh-27121
3 years ago
Madhura Bhave 44b0bd43a4 Automate publication of gradle plugin
Closes gh-27079
3 years ago
Stephane Nicoll 786d7cdb6e Merge branch '2.5.x'
Closes gh-27118
3 years ago
Stephane Nicoll 163a8e17f7 Merge pull request #27085 from dreis2211
* pr/27085:
  Update copyright year of updated file
  Avoid reflection in tests

Closes gh-27085
3 years ago
Stephane Nicoll ddf76c32c6 Update copyright year of updated file
See gh-27085
3 years ago
dreis2211 c852961011 Avoid reflection in tests
See gh-27085
3 years ago
Stephane Nicoll 573ca50333 Merge branch '2.5.x'
Closes gh-27117
3 years ago
Stephane Nicoll b011e4ff97 Merge pull request #27103 from temnur
* pr/27103:
  Remove unnecessary unit for spring.datasource.tomcat.max-active

Closes gh-27103
3 years ago
Nurlan Tembayev e57970393c Remove unnecessary unit for spring.datasource.tomcat.max-active
See gh-27103
3 years ago
Stephane Nicoll 53fe7b71f6 Merge branch '2.5.x'
Closes gh-27116
3 years ago
Stephane Nicoll a360cceede Merge pull request #27107 from biergit
* pr/27107:
  Fix anchor rewrites containing a question mark

Closes gh-27107
3 years ago
biergit 79638a8f63 Fix anchor rewrites containing a question mark
See gh-27107
3 years ago
Stephane Nicoll 0f20c236da Merge branch '2.5.x'
Closes gh-27112
3 years ago
Stephane Nicoll 4e8d466955 Merge pull request #27102 from cordin
* pr/27102:
  Fix typo in section title

Closes gh-27102
3 years ago
Cèsar Ordiñana 0c38449851 Fix typo in section title
See gh-27102
3 years ago
Brian Clozel f23fa2821c Merge branch '2.5.x'
Closes gh-27106
3 years ago
Brian Clozel 4db53601b5 Fix spring.netty.leak-detection metadata
Fixes gh-27104
3 years ago
Phillip Webb 5e6bed2888 Merge branch '2.5.x'
Closes gh-27097
3 years ago
Phillip Webb 0c99bc874e Merge branch '2.4.x' into 2.5.x
Closes gh-27096
3 years ago
Phillip Webb 618c1e42e2 Merge branch '2.3.x' into 2.4.x
Closes gh-27095
3 years ago
Phillip Webb 7b14d5bb08 Protect against NPE in isAlreadyPromoted
Fixes gh-27094
3 years ago
Spring Buildmaster 6f453e3fbe Next development version (v2.5.3-SNAPSHOT) 3 years ago
Phillip Webb d00db60bab Merge branch '2.5.x' 3 years ago
Phillip Webb dfbd82b838 Fix Kotlin 1.5.20 classpath issues
See gh-27086
3 years ago
Phillip Webb 716e8ab717 Merge branch '2.5.x' 3 years ago
Phillip Webb d44207161f Suppress Kotlin 1.5.20 deprecation warning
See gh-27086
3 years ago
Phillip Webb 674b9fb8fb Merge branch '2.5.x'
Closes gh-27088
3 years ago
Phillip Webb 8f9652c011 Upgrade to Kotlin 1.5.20
Closes gh-27086
3 years ago
Madhura Bhave e67609959b Merge branch '2.5.x' into main 3 years ago
Madhura Bhave b4346f0dda Merge branch '2.4.x' into 2.5.x 3 years ago
Madhura Bhave fb008a4b71 Merge branch '2.3.x' into 2.4.x 3 years ago
Madhura Bhave 82963a39be Fix typo 3 years ago
Andy Wilkinson bd192238ef Merge branch '2.5.x'
Closes gh-27083
3 years ago
Andy Wilkinson c150a9124a Merge branch '2.4.x' into 2.5.x
Closes gh-27082
3 years ago
Andy Wilkinson 2ea836752e Merge branch '2.3.x' into 2.4.x
Closes gh-27081
3 years ago
Andy Wilkinson 7617f0df60 Do not publish to Sonatype when already published
Closes gh-27080
3 years ago
Andy Wilkinson 8b9991fcc7 Merge branch '2.5.x'
Closes gh-27076
3 years ago
Andy Wilkinson 5a9fa3c8f1 Only close context that is active
Previously, SpringApplicationShutdownHook would call close() on any
registered application context even if it wasn't active as it had
already been closed. This could lead to deadlock if the context was
closed and System.exit was called during application context refresh.

This commit updates SpringApplicationShutdownHook so that it only
calls close() on active contexts. This prevents deadlock as it avoids
trying to sychronize on the context's startupShutdownMonitor on
the shutdown hook thread while it's still held on the main thread
which called System.exit and is waiting for all of the shutdown hooks
to complete.

Fixes gh-27049
3 years ago
Andy Wilkinson 0c01a08bba Merge branch '2.5.x' 3 years ago