#1429 - Update changelog.

This commit is contained in:
Oliver Drotbohm
2021-01-13 11:09:33 +01:00
parent 11e9b9d931
commit 5adb65586b
2 changed files with 10 additions and 3 deletions

View File

@@ -1,6 +1,14 @@
Spring HATEOAS Changelog
========================
Changes in version 1.2.3 (2021-01-13)
----------------------------------------
- #1432 - Upgrade to Spring Framework 5.3.3.
- #1431 - RepresentationModelProcessor not invoked for PagedModel / CollectionModel consisting of RepresentationModels.
- #1419 - Backport direct release to maven central.
- #1416 - Use proper build plugins.
- #1413 - Extracted mappings still contain regex matching expressions.
Changes in version 1.2.2 (2020-12-09)
----------------------------------------
- #1409 - Upgrade to Spring Framework 5.3.2.

View File

@@ -38,7 +38,7 @@ import com.jayway.jsonpath.JsonPath;
*/
class ChangelogCreator {
private static final int MILESTONE_ID = 56;
private static final int MILESTONE_ID = 58;
private static final String URI_TEMPLATE = "https://api.github.com/repos/spring-projects/spring-hateoas/issues?milestone={id}&state=closed";
public static void main(String... args) {
@@ -52,8 +52,7 @@ class ChangelogCreator {
HttpEntity<String> response = webClient //
.get().uri(URI_TEMPLATE, MILESTONE_ID) //
.exchange() //
.flatMap(clientResponse -> clientResponse.toEntity(String.class)) //
.exchangeToMono(clientResponse -> clientResponse.toEntity(String.class)) //
.block(Duration.ofSeconds(10));
boolean keepChecking = true;