#1429 - Update changelog.
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user