#1279 - Prepare changelog.
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
Spring HATEOAS Changelog
|
||||
========================
|
||||
|
||||
Changes in version 1.0.5.RELEASE (2020-04-28)
|
||||
----------------------------------------
|
||||
- #1279 - Release 1.0.5.RELEASE.
|
||||
- #1272 - Backport adding Kotlin source to released artifacts.
|
||||
- #1267 - Use JDK 14 for Java.next CI testing.
|
||||
- #1263 - Remove .factorypath.
|
||||
- #1262 - Upgrade to Spring docs resource 0.2.1.
|
||||
|
||||
Changes in version 1.0.4.RELEASE (2020-03-24)
|
||||
----------------------------------------
|
||||
- #1236 - Release 1.0.4.RELEASE.
|
||||
|
||||
@@ -15,18 +15,20 @@
|
||||
*/
|
||||
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 java.time.Duration;
|
||||
import java.time.LocalDate;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import com.jayway.jsonpath.JsonPath;
|
||||
|
||||
/**
|
||||
* Little helper to build a changelog from the tickets of a particular milestone.
|
||||
@@ -36,7 +38,7 @@ import java.util.List;
|
||||
*/
|
||||
class ChangelogCreator {
|
||||
|
||||
private static final int MILESTONE_ID = 42;
|
||||
private static final int MILESTONE_ID = 44;
|
||||
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