Rob Tompkins
cfb7777a07
Exception response for MockRestServiceServer
...
Closes gh-1954
2019-11-08 18:09:49 +00:00
Muhammad Hewedy
f638bfc6a9
Fix status code in webmvc.adoc
...
Closes gh-22396
2019-11-08 17:50:48 +00:00
Rossen Stoyanchev
b98d8ef06f
Merge pull request #22715
...
Closes gh-22715
2019-11-08 17:48:20 +00:00
Rossen Stoyanchev
32f82c0ed0
Polishing
2019-11-08 17:47:59 +00:00
Ilja
08f1cb454a
Allow sending headers with the disconnect frame
2019-11-08 17:41:39 +00:00
denisgalaybo
b0b6423714
Fixed error in webflux.adoc
...
Closes gh-23957
2019-11-08 17:19:53 +00:00
Rossen Stoyanchev
fd453a0753
Merge branch 'pr/23417'
...
Closes gh-23417
2019-11-08 15:04:15 +00:00
Rossen Stoyanchev
b2b02ad7a1
Polishing
2019-11-08 15:03:53 +00:00
Ilya Lukyanovich
801cca8cf8
Preserve ErrorMessage#getOriginalMessage()
...
See gh-23417
2019-11-08 15:03:53 +00:00
Tomo Suzuki
21d390a018
Replacing netty-all with specific dependencies
2019-11-08 13:00:37 +00:00
Qimiao Chen
9b8da04e64
Delete unnecessary variable assignment
...
Closes gh-23955
2019-11-08 13:39:02 +01:00
Rossen Stoyanchev
a6dd63f9ca
Merge pull request #23938
2019-11-08 09:18:06 +00:00
Rossen Stoyanchev
0e1a237139
Polishing
2019-11-08 09:17:25 +00:00
Johnny Lim
91f5f42d13
Add tests for PrincipalMethodArgumentResolver
2019-11-08 08:48:56 +00:00
Rossen Stoyanchev
c7b9988033
Merge pull request #23855
2019-11-08 08:45:03 +00:00
Rossen Stoyanchev
1261e64465
Minor refactoring
...
Apply default Accept header for HttpUrlConnection only.
See gh-23855
2019-11-08 08:44:04 +00:00
Lorenzo Torracchi
afae8c3045
Avoid default "Accept" from HttpUrlConnection
...
Closes gh-23740
2019-11-08 08:43:25 +00:00
Juergen Hoeller
d394c7a5c0
Upgrade to RxJava 2.2.14, OkHttp 3.14.4, JRuby 9.2.9, Rhino 1.7.11, Awaitility 3.1.6
2019-11-07 22:08:52 +01:00
Juergen Hoeller
6a48bb7b4d
Polishing
2019-11-07 22:08:29 +01:00
stsypanov
f5ae3c77c6
Use Method::getParameterCount where possible
2019-11-07 18:00:15 +01:00
Arjen Poutsma
55f3f128c9
Polishing
2019-11-07 14:29:47 +01:00
Arjen Poutsma
bf36f49dc5
Corrupt multipart should not hang SynchronossPartHttpMessageReader
...
This commit notifies the Synchronoss listener that the buffer stream
has ended.
Closes gh-23768
2019-11-07 09:10:07 +01:00
Rossen Stoyanchev
5d2fc2fc32
HttpHandlerConnector uses non-blocking thread
...
Closes gh-23936
2019-11-06 21:58:02 +00:00
Rossen Stoyanchev
627a9be654
Update WebMvcConfigurer#addInterceptors Javadoc
...
Closes gh-23908
2019-11-06 21:40:53 +00:00
Rossen Stoyanchev
203977972b
Fix issue with path matching options
...
Closes gh-23907
2019-11-06 17:54:39 +00:00
Rossen Stoyanchev
3a241b546f
Relax domain name checks in ResponseCookie
...
Closes gh-23924
2019-11-06 17:54:39 +00:00
Sam Brannen
29599a93a4
Re-enable support for invalid Expires attributes in MockCookie
...
Changes introduced in commit 9b2087618b
caused a regression for Cookie support in MockHttpServletResponse.
Specifically, an Expires attribute that cannot be parsed using
`ZonedDateTime.parse()` now results in an exception; whereas,
previously an entry such as `Expires=0` was allowed.
This commit fixes this issue in MockCookie by catching and ignoring any
DateTimeException thrown while attempting to parse an Expires attribute.
Closes gh-23911
2019-11-06 18:28:28 +01:00
Rossen Stoyanchev
9960ed55aa
Fix condition in ServletInvocableHandlerMethod
...
Closes gh-23775
2019-11-06 15:39:37 +00:00
Sam Brannen
29b31cad48
Align implementations of StringToUUIDConverter and UUIDEditor
...
Closes gh-23940
2019-11-06 14:21:52 +01:00
Sam Brannen
92228f0fc0
Test status quo for @RequestHeader UUID conversion support
...
See gh-23939
2019-11-06 13:49:44 +01:00
Sam Brannen
1a13700f8b
Polish contribution
...
See gh-23923
2019-11-06 12:57:01 +01:00
stsypanov
9da15ee23a
Improve usage of String.substring()
...
Closes gh-23923
2019-11-06 12:57:01 +01:00
Sam Brannen
f9c1f136c3
Polishing
2019-11-05 15:27:46 +01:00
Sam Brannen
fc1dcddb75
Fix grammar
2019-11-05 15:20:18 +01:00
Arjen Poutsma
6e3deb86f1
Javadoc
...
Describe source of parameters for ServerRequest (i.e. query string or
form data)
2019-11-05 14:30:31 +01:00
Sam Brannen
d6002092c4
Clean up build warnings for ApplicationContextExpressionTests
2019-11-04 15:44:53 +01:00
Sam Brannen
01fb35bd2d
Remove TestGroup.CI enum constant
...
Prior to this commit, the TestGroup.CI enum constant was only used in a
single test method in spring-core. In order to enable that test, the
`testGroups` JVM system property was configured for the
Publication-master CI build plan; however, the `testGroups` system
property is not set when executing local builds. Consequently, there
has been a Gradle cache miss for every `test` task when building
something locally that's already been built on the CI server.
This commit addresses this issue by removing the `TestGroup.CI` enum
constant. The `-PtestGroups=ci` command line configuration for the
Publication-master CI build plan has also been removed on the CI server.
Closes gh-23918
2019-11-04 15:44:53 +01:00
wonwoo
8855056395
Polish
2019-11-04 10:10:49 +00:00
Stephane Nicoll
87d4ad39da
Merge pull request #23729 from facewindu
...
* pr/23729:
Fix spring-core jar task 'up-to-date'-ness
Closes gh-23729
2019-11-04 10:44:53 +01:00
François Guillot
2411b657ae
Fix spring-core jar task 'up-to-date'-ness
...
See gh-23729
2019-11-04 10:29:58 +01:00
Sam Brannen
f746e9df82
Upgrade to Gradle 5.6.4
2019-11-03 15:04:58 +01:00
Spring Buildmaster
c28cc0bc74
Next Development Version
2019-11-02 08:19:35 +00:00
방성범 (Bang Seongbeom)
89fc0f2713
Fix typo in docs
...
Closes gh-23788
2019-11-01 11:57:03 +00:00
AlexeyAnufriev
2d208de145
Clear connection pool for OkHttpClient
...
Closes gh-23628
2019-11-01 11:44:16 +00:00
Arjen Poutsma
3858a69c42
Path RequestPredicate should honor servlet path
...
Closes gh-23841
2019-10-31 16:06:42 +01:00
Sam Brannen
95af079906
Document unidirectional @AliasFor attribute mapping support
...
See gh-23834
2019-10-31 15:27:27 +01:00
Rossen Stoyanchev
005d2018d4
Refine changes for PR
...
Closes gh-23882
2019-10-31 14:14:44 +00:00
Dekel Pilli
64f2beb9bf
Fixing NPE in AbstractNamedValueMethodArgumentResolver
...
See gh-23882
2019-10-31 14:13:44 +00:00
Rossen Stoyanchev
fd9678833f
Use int for maxParts instead of long
2019-10-31 14:13:44 +00:00
Rossen Stoyanchev
3691c187ef
Preserve order of onStatus handlers
...
Closes gh-23880
2019-10-31 14:13:44 +00:00