Andy Wilkinson
decb53b686
Document JUnit 5 before JUnit 4
...
Closes gh-864
2022-11-18 18:25:54 +00:00
Andy Wilkinson
16a096faa0
Upgrade to REST Assured 5.2.1
...
Closes gh-876
2022-11-18 18:08:46 +00:00
Andy Wilkinson
7bb414421f
Upgrade to Mockito 4.9.0
...
Closes gh-875
2022-11-18 18:08:11 +00:00
Andy Wilkinson
5980ae79fa
Upgrade to Jackson 2.14.0
...
Closes gh-874
2022-11-18 18:05:07 +00:00
Andy Wilkinson
b0ab565d13
Upgrade to AsciidoctorJ PDF 2.3.3
...
Closes gh-873
2022-11-18 18:03:15 +00:00
Andy Wilkinson
1e19b5c829
Upgrade to AsciidoctorJ 2.5.7
...
Closes gh-872
2022-11-18 18:02:10 +00:00
Andy Wilkinson
6a2f8fc365
Switch to Tomcat's EL reference implementation
...
Closes gh-871
2022-11-18 17:55:39 +00:00
Andy Wilkinson
f8e85f7ccf
Upgrade to Tomcat 10.1.1
...
Closes gh-870
2022-11-18 17:48:37 +00:00
Andy Wilkinson
c71b8b2658
Update Bean Validation version in reference docs
...
Closes gh-869
2022-11-18 17:45:34 +00:00
Andy Wilkinson
5108890255
Upgrade to Hibernate Validator 8.0.0.Final
...
Closes gh-868
2022-11-18 17:45:28 +00:00
Andy Wilkinson
baa1269293
Upgrade to Jakarta Servlet 6.0.0
...
Closes gh-867
2022-11-18 17:45:16 +00:00
Andy Wilkinson
b080ee3041
Upgrade to Spring Framework 6.0.0
...
Closes gh-866
2022-11-18 17:45:01 +00:00
Andy Wilkinson
ecdbccfd15
Remove buildSamples from tasks run by Windows build
...
See gh-852
2022-10-17 18:19:26 +01:00
Andy Wilkinson
7520be5fa6
Remove buildSamples from tasks run during staging
...
See gh-852
2022-10-17 10:34:46 +01:00
Andy Wilkinson
702c9ad5ad
Upgrade to JUnit 4.13.1
...
Upgrade included dropping use of the now-deprecated ExpectedException
in favor of AssertJ's assertions for thrown exceptions.
Closes gh-863
2022-10-15 17:50:13 +01:00
Andy Wilkinson
ca777bdd54
Upgrade to Jackson 2.13.4.20221013
...
Closes gh-862
2022-10-15 17:11:17 +01:00
Andy Wilkinson
0c0962d52f
Polish
...
Dependency was accidentally added in f5a629af .
2022-10-15 17:08:24 +01:00
Andy Wilkinson
fea0dc6d27
Remove redundant version constraint for jruby-complete
...
Closes gh-861
2022-10-15 17:06:34 +01:00
Andy Wilkinson
641e3915ce
Upgrade to Mockito 4.8.0
...
Closes gh-860
2022-10-15 17:03:50 +01:00
Andy Wilkinson
b1ce159e52
Upgrade to Hibernate Validator 7.0.5.Final
...
Closes gh-859
2022-10-15 17:03:34 +01:00
Andy Wilkinson
737c1f8fca
Upgrade to Asciidoctor PDF 2.3.0
...
Closes gh-858
2022-10-15 17:03:34 +01:00
Andy Wilkinson
737b11439d
Upgrade to AsciidoctorJ 2.5.6
...
Closes gh-857
2022-10-15 17:03:33 +01:00
Andy Wilkinson
287741e2b4
Upgrade to PDFBox 2.0.27
...
Closes gh-856
2022-10-15 17:03:33 +01:00
Andy Wilkinson
4a958950c7
Upgrade to REST Assured 5.2.0
...
Closes gh-855
2022-10-15 17:03:29 +01:00
Andy Wilkinson
96b00d33d9
Upgrade to Spring Framework 6.0.0-RC1
...
Closes gh-854
2022-10-15 16:32:18 +01:00
Andy Wilkinson
632e735550
Link to current version of Spring Framework's reference documentation
...
Closes gh-853
2022-10-15 16:30:45 +01:00
Andy Wilkinson
4807bec4b7
Remove samples in favor of those in separate repository
...
Closes gh-852
2022-10-15 16:13:25 +01:00
Andy Wilkinson
c7717f17ed
Merge branch '2.0.x'
...
Closes gh-851
2022-10-12 17:11:37 +01:00
Andy Wilkinson
3f424cd770
Upgrade Gradle Enterprise Gradle Plugin 3.11.2
...
Closes gh-850
2022-10-12 17:11:11 +01:00
Andy Wilkinson
c1ec227a7d
Merge branch '2.0.x'
...
Closes gh-849
2022-10-12 11:34:21 +01:00
Andy Wilkinson
6b5f1a41a9
Merge pull request #843 from jprinet
...
* gh-843:
Upgrade to Gradle Enterprise Plugin 3.11.1
Closes gh-843
2022-10-12 11:34:07 +01:00
Jerome Prinet
335bad14aa
Upgrade to Gradle Enterprise Plugin 3.11.1
...
See gh-843
2022-10-12 11:33:37 +01:00
Andy Wilkinson
03b61ab075
Use Framework's HttpStatusCode to model response's status
...
Closes gh-848
2022-10-12 11:26:01 +01:00
Andy Wilkinson
b107d0e8ed
Merge branch '2.0.x'
2022-10-12 10:54:37 +01:00
Andy Wilkinson
37c77f3285
Tolerate responses with non-standard status codes with WebTestClient
...
Closes gh-847
2022-10-12 10:50:40 +01:00
Andy Wilkinson
f5a629af34
Handle form and query parameters separately
...
Previously, form and query parameters were handled together as
request parameters. Howeer, request parameters are a server-side
construct that's specific to the servlet specification. As such
they're not appropriate for the client-side documentation that
Spring REST Docs aims to produce.
This commit replaces support for documenting request parameters
with support for documenting query paramters found in the query
string of the request's URI and for documenting form parameters
found in the form URL encoded body of the request.
Closes gh-832
2022-10-12 10:18:33 +01:00
Andy Wilkinson
b4be34bf8e
Remove support for modifying request parameters
...
Request parameters are a server-side constructor, specific to the
servlet specification. Rather than modifying request parameters the
query string of the URI or the form URL encoded content of the body
should be modified instead.
Closes gh-846
2022-10-12 10:17:01 +01:00
Andy Wilkinson
a5e466b49e
Merge branch '2.0.x'
2022-07-18 19:53:17 +01:00
Andy Wilkinson
53811b777f
Correct promotion image and script
2022-07-18 19:52:51 +01:00
Andy Wilkinson
c3a193c6a2
Polish HTTP cookies documentation
...
See gh-592
2022-07-18 17:56:13 +01:00
Andy Wilkinson
3a87d5f094
Upgrade to Mockito 4.6.1
...
Closes gh-840
2022-07-18 17:38:53 +01:00
Andy Wilkinson
cbfec7f26d
Upgrade to Moneta 1.4.2
...
Closes gh-839
2022-07-18 17:38:27 +01:00
Andy Wilkinson
cd5fed45f4
Upgrade to AssertJ 3.23.1
...
Closes gh-838
2022-07-18 17:37:56 +01:00
Andy Wilkinson
5ff5e147b3
Upgrade to AsciidoctorJ PDF 2.1.4
...
Closes gh-837
2022-07-18 17:37:13 +01:00
Andy Wilkinson
30812e2731
Upgrade to REST Assured 5.1.1
...
Closes gh-836
2022-07-18 17:36:34 +01:00
Andy Wilkinson
7537e36f19
Upgrade to AsciidoctorJ 2.5.4
...
Closes gh-835
2022-07-18 17:34:20 +01:00
Andy Wilkinson
108e04bc87
Upgrade to JMustache 1.15
...
Closes gh-834
2022-07-18 17:33:48 +01:00
Andy Wilkinson
71773f89b6
Upgrade samples to Spring HATEOAS 2.0.0-M5
...
Closes gh-842
2022-07-18 17:29:56 +01:00
Andy Wilkinson
8c277ae8e4
Upgrade samples to Spring Data 2022.0.0-M5
...
Closes gh-841
2022-07-18 17:27:02 +01:00
Andy Wilkinson
f7bad388e2
Upgrade samples to Spring Framework 6.0.0.M5
...
See gh-822
2022-07-18 17:23:56 +01:00