#1236 - Update changelog to reflect 1.0.4.RELEASE changes.
This commit is contained in:
@@ -1,6 +1,21 @@
|
||||
Spring HATEOAS Changelog
|
||||
========================
|
||||
|
||||
Changes in version 1.0.4.RELEASE (2020-03-24)
|
||||
----------------------------------------
|
||||
- #1236 - Release 1.0.4.RELEASE.
|
||||
- #1235 - Upgrade to Jackson 2.10.3.
|
||||
- #1234 - Upgrade to Reactor Dysprosium-SR6.
|
||||
- #1233 - Fix CI scripts so they use maven caching.
|
||||
- #1232 - Upgrade to JUnit 5.6.1.
|
||||
- #1231 - Upgrade to Spring Framework 5.2.5.RELEASE.
|
||||
- #1220 - Backport IanaLinkRelations String constants to 1.0.
|
||||
- #1217 - Backport migration from RFC-5988 to RFC-8288.
|
||||
- #1207 - Fix nullability warnings in EntityModelProcessorWrapper.isValueTypeMatch(…).
|
||||
- #1197 - Link building does not consider method parameters declared in interfaces.
|
||||
- #1196 - Upgrade to Jackson BOM 2.10.2.20200130.
|
||||
- #1191 - Backport migration support for @ExposesResourceFor.
|
||||
|
||||
Changes in version 1.0.3.RELEASE (2020-01-15)
|
||||
----------------------------------------
|
||||
- #1184 - Back-port dependency upgrades from 1.1.
|
||||
|
||||
@@ -15,20 +15,18 @@
|
||||
*/
|
||||
package org.springframework.hateoas.support;
|
||||
|
||||
import com.jayway.jsonpath.JsonPath;
|
||||
import net.minidev.json.JSONArray;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDate;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.hateoas.IanaLinkRelations;
|
||||
import org.springframework.hateoas.Links;
|
||||
import org.springframework.http.HttpEntity;
|
||||
import org.springframework.http.HttpHeaders;
|
||||
import org.springframework.web.reactive.function.client.WebClient;
|
||||
|
||||
import com.jayway.jsonpath.JsonPath;
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDate;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Little helper to build a changelog from the tickets of a particular milestone.
|
||||
@@ -38,7 +36,7 @@ import com.jayway.jsonpath.JsonPath;
|
||||
*/
|
||||
class ChangelogCreator {
|
||||
|
||||
private static final int MILESTONE_ID = 40;
|
||||
private static final int MILESTONE_ID = 42;
|
||||
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) {
|
||||
|
||||
Reference in New Issue
Block a user