Sam Brannen
8f3ca49bc4
Rename Retryable.run() to Retryable.execute()
...
See gh-34716
6 months ago
Sam Brannen
d74b863ae7
Polish Javadoc for core retry functionality
...
See gh-34716
6 months ago
Sam Brannen
8b9e620084
Allow FixedBackOff to be constructed with only a custom interval
...
This commit introduces two new constructors:
- FixedBackOff(long)
- FixedBackOff(Duration)
Closes gh-35028
6 months ago
Sam Brannen
fcdd439ad0
Polish Javadoc for FixedBackOff
6 months ago
Sébastien Deleuze
b901132192
Merge branch '6.2.x'
6 months ago
Sébastien Deleuze
05c3f56ec7
Rely on default retention in `@Contract`
...
Closes gh-35027
6 months ago
Brian Clozel
68df780c59
Upgrade to Micrometer 1.15.1
...
Closes gh-35019
6 months ago
Brian Clozel
3d63664ab0
Upgrade to Reactor 2025.0.0-M4
...
Closes gh-34997
6 months ago
Brian Clozel
bdc5fafd0a
Merge branch '6.2.x'
6 months ago
Brian Clozel
dee80ab1da
Upgrade to Reactor 2024.0.7
...
Closes gh-35021
6 months ago
Brian Clozel
07fd835ea9
Upgrade to Micrometer 1.14.8
...
Closes gh-35020
6 months ago
Brian Clozel
dec0deb7dc
Merge branch '6.2.x'
6 months ago
Brian Clozel
0d6c6eb2d5
Use Micrometer BOM for Context Propagation dependency
...
Closes gh-35026
6 months ago
Sam Brannen
d42d3f1a6c
Fix wording in Javadoc for RetryTemplate
...
See gh-34716
6 months ago
Sam Brannen
51b6e8cc9f
Rename RetryCallback to Retryable
...
See gh-34716
6 months ago
Sam Brannen
f927ff635a
Revise @Nullable declarations for contains*() in CollectionUtils
...
Closes gh-35023
6 months ago
Sam Brannen
2c0f01e8ed
Merge branch '6.2.x'
6 months ago
Sam Brannen
4d2cc4ae97
Polish contribution
...
See gh-35013
6 months ago
Mohammad Saeed Nouri
c04902fefb
Allow update of existing WebSession after max sessions limit is reached
...
Previously, when saving a WebSession, the system did not check whether
the session ID already existed. As a result, even if the session being
saved was an update to an existing one, it was incorrectly treated as a
new session, and a "maximum sessions exceeded" error was triggered.
This fix ensures that if a WebSession with the same ID already exists,
it will be updated rather than counted as a new session, thereby
preventing unnecessary session limit violations.
Closes gh-35013
Signed-off-by: Mohammad Saeed Nouri <msnsaeed71@gmail.com>
6 months ago
Sam Brannen
3c265e1044
Fix InMemoryWebSessionStoreTests.startsSessionImplicitly() test
6 months ago
Sam Brannen
222702f750
Polish WebSession support and tests
6 months ago
Sébastien Deleuze
be02d961fc
Merge branch '6.2.x'
6 months ago
Sébastien Deleuze
7bb19fcde8
Refine Kotlin Serialization hint registration
...
This commit adds support for serializer methods with a parameter.
Closes gh-34979
6 months ago
Sam Brannen
077146d636
Merge branch '6.2.x'
6 months ago
Sam Brannen
18d6a55e3e
Polishing and removal of "this." for method invocations
6 months ago
Sébastien Deleuze
b6a121ed44
Merge branch '6.2.x'
6 months ago
秦利斌
99890b6147
Fix ResourceHttpRequestHandler#setHeaders JavaDoc
...
Closes gh-35004
Signed-off-by: 秦利斌 <68638598+Allan-QLB@users.noreply.github.com>
6 months ago
Sébastien Deleuze
ef2495874d
Upgrade to Kotlin 2.2.0-RC2
...
See gh-34946
6 months ago
Sam Brannen
de7d50d39f
Redeclare @TestMethodOrder on @Nested test class
...
Thanks to the new Discovery Issue Reporting mechanism introduced in JUnit 5.13, I became
aware of the fact that the @Order annotations in NestedAfterTestClassSqlScriptsTests
were being silently ignored.
To address that, this commit redeclares @TestMethodOrder on @Nested test class.
6 months ago
Sam Brannen
5752585bb2
Clean up warnings in build
6 months ago
Sam Brannen
0b4f7f2f9d
Remove obsolete code
...
The hasNullableAnnotation() method was made obsolete in commit
b5d153febf .
See gh-34952
See gh-34261
6 months ago
Sam Brannen
799a37602d
Merge branch '6.2.x'
6 months ago
Sam Brannen
0afdb08099
Upgrade to JUnit 5.13.1
...
Closes gh-34969
6 months ago
Sam Brannen
315bbf3abe
Consistently declare nullability @Contract for core utilities
...
Closes gh-34934
6 months ago
Sébastien Deleuze
9505e768ae
Merge branch '6.2.x'
6 months ago
Sébastien Deleuze
40058ef875
Disable Gradle auto-provisioning
...
Closes gh-35007
6 months ago
Sam Brannen
7a6f9bd3c3
Use @TempDir in FileSystemUtilsTests
6 months ago
rstoyanchev
6c27dbc095
Merge branch '6.2.x'
6 months ago
rstoyanchev
c769f43b3e
Update docs on testing client code
...
Closes gh-34892
6 months ago
rstoyanchev
4782c697b8
Improve RestControllerAdvice documentation
...
Closes gh-34866
6 months ago
rstoyanchev
de52090959
Polishing contribution
...
Closes gh-34554
6 months ago
Vedran Pavic
4d862b871d
Improve Javadoc for @ExceptionHandler
...
This commit adds `ProblemDetail` and `ErrorResponse` to the list of
supported return types for `@ExceptionHandler` methods.
Closes gh-34554
Signed-off-by: Vedran Pavic <vedran@vedranpavic.com>
6 months ago
Jimmy Axenhus
fa781c8390
Correct name of Selenium WebDriver artifact
...
The selenium-htmlunit3-driver artifact does not exist.
Closes gh-34840
Signed-off-by: Jimmy Axenhus <github@axenhus.com>
6 months ago
Sam Brannen
583612fd40
Merge branch '6.2.x'
6 months ago
Sam Brannen
88cd7addda
Upgrade to Gradle 8.14.2
...
Closes gh-34937
6 months ago
Sam Brannen
87c0655e12
Polishing
6 months ago
Sam Brannen
ad2931b51f
Migrate away from AssertJ's catchThrowable()
...
Closes gh-35003
6 months ago
Sam Brannen
3aa3b81e1c
Update copyright headers
6 months ago
Johnny Lim
7f6a7b806e
Replace AssertionsForClassTypes with Assertions
...
Closes gh-34821
Signed-off-by: Johnny Lim <izeye@naver.com>
6 months ago
Sébastien Deleuze
977792009d
Introduce hints in RestClient API
...
This commit introduces hints in RestClient API for
SmartHttpMessageConverters supporting them.
Closes gh-34924
6 months ago