From 019962a3b8d3ad65c463a28e78ff694f58f8df29 Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Tue, 3 Dec 2024 15:47:50 +0100 Subject: [PATCH] Handle RC and milestone calver comparison. --- .../internal/project/ProjectVersion.java | 19 +- .../ReleaseTrainContentsUpdaterTests.java | 48 +- .../projects/spring-cloud-wiki/Home.asciidoc | 32 +- .../Spring-Cloud-2020.0-Release-Notes.md | 540 +----------------- .../Spring-Cloud-2024.0-Release-Notes.md | 67 +++ .../Spring-Cloud-Angel-Release-Notes.asciidoc | 26 +- ...pring-Cloud-Brixton-Release-Notes.asciidoc | 44 +- .../Spring-Cloud-Edgware-Release-Notes.md | 30 +- .../Spring-Cloud-Finchley-Release-Notes.md | 62 +- .../Spring-Cloud-Greenwich-Release-Notes.md | 308 ++++++++++ .../Spring-Cloud-Hoxton-Release-Notes.md | 1 + .../Spring-IO-Platform-Compatibility.md | 2 + .../spring-cloud-wiki/git/COMMIT_EDITMSG | 1 - .../projects/spring-cloud-wiki/git/HEAD | 1 - .../projects/spring-cloud-wiki/git/config | 13 - .../spring-cloud-wiki/git/description | 1 - .../git/hooks/applypatch-msg.sample | 15 - .../git/hooks/commit-msg.sample | 24 - .../git/hooks/post-update.sample | 8 - .../git/hooks/pre-applypatch.sample | 14 - .../git/hooks/pre-commit.sample | 47 -- .../git/hooks/pre-push.sample | 49 -- .../git/hooks/pre-rebase.sample | 165 ------ .../git/hooks/pre-receive.sample | 23 - .../git/hooks/prepare-commit-msg.sample | 42 -- .../spring-cloud-wiki/git/hooks/update.sample | 127 ---- .../projects/spring-cloud-wiki/git/index | Bin 985 -> 0 bytes .../spring-cloud-wiki/git/info/exclude | 6 - .../projects/spring-cloud-wiki/git/logs/HEAD | 2 - .../git/logs/refs/heads/master | 2 - .../git/logs/refs/remotes/origin/HEAD | 1 - .../1f/a2c37fe634da1c5e640dcb461711d356f660f2 | 1 - .../35/e014e66523b759069c13bdb290a453e75ca14c | Bin 6550 -> 0 bytes .../b4/e40ce66b58da90ff7fc067259a647f422c1e89 | Bin 368 -> 0 bytes ...c4c84dde10142d0818339be58a04bb9d252ab9.idx | Bin 13728 -> 0 bytes ...4c84dde10142d0818339be58a04bb9d252ab9.pack | Bin 95748 -> 0 bytes .../spring-cloud-wiki/git/packed-refs | 2 - .../spring-cloud-wiki/git/refs/heads/master | 1 - .../git/refs/remotes/origin/HEAD | 1 - 39 files changed, 580 insertions(+), 1145 deletions(-) create mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2024.0-Release-Notes.md create mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Greenwich-Release-Notes.md create mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Hoxton-Release-Notes.md delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/COMMIT_EDITMSG delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/HEAD delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/config delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/description delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/applypatch-msg.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/commit-msg.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/post-update.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-applypatch.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-commit.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-push.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-rebase.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-receive.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/prepare-commit-msg.sample delete mode 100755 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/update.sample delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/index delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/info/exclude delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/HEAD delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/heads/master delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/remotes/origin/HEAD delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/1f/a2c37fe634da1c5e640dcb461711d356f660f2 delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/35/e014e66523b759069c13bdb290a453e75ca14c delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/b4/e40ce66b58da90ff7fc067259a647f422c1e89 delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/pack/pack-73c4c84dde10142d0818339be58a04bb9d252ab9.idx delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/pack/pack-73c4c84dde10142d0818339be58a04bb9d252ab9.pack delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/packed-refs delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/heads/master delete mode 100644 releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/remotes/origin/HEAD diff --git a/releaser-core/src/main/java/releaser/internal/project/ProjectVersion.java b/releaser-core/src/main/java/releaser/internal/project/ProjectVersion.java index 9588aaa0..df1ed32c 100644 --- a/releaser-core/src/main/java/releaser/internal/project/ProjectVersion.java +++ b/releaser-core/src/main/java/releaser/internal/project/ProjectVersion.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2019 the original author or authors. + * Copyright 2013-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -46,6 +46,7 @@ enum ReleaseType { * version; * * @author Marcin Grzejszczak + * @author Olga Maciaszek-Sharma */ public class ProjectVersion implements Comparable, Serializable { @@ -842,6 +843,9 @@ public class ProjectVersion implements Comparable, Serializable else if (thatOldTrain) { return -1 * compareWithOldTrain(thisVersion, thatVersion); } + if (thisVersion.major().equals(thatVersion.major())) { + return calVerSuffixComparison(thatVersion); + } // new train comparison return thisVersion.compareTo(thatVersion); } @@ -896,6 +900,19 @@ public class ProjectVersion implements Comparable, Serializable return thisNumber.compareTo(thatNumber); } + private int calVerSuffixComparison(ProjectVersion thatVersion) { + // With calVer if this project version doesn't have suffix, + // and the other has suffix, but is not snapshot is when this project version is a GA + // and the other project version is a milestone or RC + if (this.version.assertVersion().suffix.isEmpty()) { + if (!(thatVersion.assertVersion().suffix.isEmpty() || thatVersion.isSnapshot())) { + return 1; + } + } + return this.version.compareTo(thatVersion); + + } + } } diff --git a/releaser-core/src/test/java/releaser/internal/docs/ReleaseTrainContentsUpdaterTests.java b/releaser-core/src/test/java/releaser/internal/docs/ReleaseTrainContentsUpdaterTests.java index 3d9ff93f..a6c57129 100644 --- a/releaser-core/src/test/java/releaser/internal/docs/ReleaseTrainContentsUpdaterTests.java +++ b/releaser-core/src/test/java/releaser/internal/docs/ReleaseTrainContentsUpdaterTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2013-2022 the original author or authors. + * Copyright 2013-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,6 +41,7 @@ import org.springframework.util.FileSystemUtils; /** * @author Marcin Grzejszczak + * @author Olga Maciaszek-Sharma */ public class ReleaseTrainContentsUpdaterTests { @@ -129,6 +130,24 @@ public class ReleaseTrainContentsUpdaterTests { .contains("Updating project page to release train [Edgware.SR7]"); } + @Test + public void should_update_the_contents_of_wiki_on_GA_when_previous_release_RC() throws GitAPIException, IOException { + this.properties.getMetaRelease().setEnabled(true); + this.properties.getGit().setUpdateReleaseTrainWiki(true); + this.properties.getGit() + .setReleaseTrainWikiUrl(this.wikiRepo.getAbsolutePath() + "/"); + + File file = this.updater.updateReleaseTrainWiki(newGACalver()); + + BDDAssertions.then(file).isNotNull(); + BDDAssertions.then(calverWithRCWikiEntryContent(file)).contains("# 2024.0.0") + .contains( + "Spring Cloud Consul `4.2.0` ([issues](https://github.com/spring-cloud/spring-cloud-consul/releases/tag/v4.2.0))"); + BDDAssertions.then(GitTestUtils.openGitProject(file).log().call().iterator() + .next().getShortMessage()) + .contains("Updating project page to release train [2024.0.0]"); + } + @Test public void should_generate_the_contents_of_wiki_when_release_train_missing() throws GitAPIException, IOException { this.properties.getMetaRelease().setEnabled(true); @@ -172,6 +191,10 @@ public class ReleaseTrainContentsUpdaterTests { return string(file, "Spring-Cloud-2020.0-Release-Notes.md"); } + private String calverWithRCWikiEntryContent(File file) throws IOException { + return string(file, "Spring-Cloud-2024.0-Release-Notes.md"); + } + private String string(File file, String s) throws IOException { return new String(Files.readAllBytes(new File(file, s).toPath())); } @@ -272,4 +295,27 @@ public class ReleaseTrainContentsUpdaterTests { new ProjectVersion("spring-cloud-function", "1.0.0.RELEASE")); } + Projects newGACalver() { + return new Projects( + new ProjectVersion("spring-cloud-bus", "4.2.0"), + new ProjectVersion("spring-cloud-commons", "4.2.0"), + new ProjectVersion("spring-cloud-contract", "4.2.0"), + new ProjectVersion("spring-cloud-config", "4.2.0"), + new ProjectVersion("spring-cloud-consul", "4.2.0"), + new ProjectVersion("spring-cloud-netflix", "4.2.0"), + new ProjectVersion("spring-cloud-consul", "4.2.0"), + new ProjectVersion("spring-cloud-stream", "4.2.0"), + new ProjectVersion("spring-cloud-zookeeper", "4.2.0"), + new ProjectVersion("spring-boot", "3.4.0"), + new ProjectVersion("spring-cloud-task", "3.2.0"), + // newer release train, current version in file is 2024.0.0-RC1 + new ProjectVersion("spring-cloud-release", "2024.0.0"), + new ProjectVersion("spring-cloud-vault", "4.2.0"), + new ProjectVersion("spring-cloud-gateway", "4.2.0"), + new ProjectVersion("spring-cloud-openfeign", "4.2.0"), + new ProjectVersion("spring-cloud-circuitbreaker", "3.2.0"), + new ProjectVersion("spring-cloud-kubernetes", "3.2.0"), + new ProjectVersion("spring-cloud-function", "4.2.0")); + } + } diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Home.asciidoc b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Home.asciidoc index d88e8b78..9b5ff8e9 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Home.asciidoc +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Home.asciidoc @@ -1,12 +1,28 @@ -Spring Cloud provides tools for developers to quickly build some of the common patterns in distributed systems (e.g. configuration management, service discovery, circuit breakers, intelligent routing, micro-proxy, control bus, one-time tokens, global locks, leadership election, distributed sessions, cluster state). -Coordination of distributed systems leads to boiler plate patterns, and using Spring Cloud developers can quickly stand up services and applications that implement those patterns. -They will work well in any distributed environment, including the developer's own laptop, bare metal data centres, and managed platforms such as Cloud Foundry. +# NOTICE + +This wiki is no longer updated and is here for historical purposes. + +Please see +https://github.com/spring-cloud/spring-cloud-release/wiki for up to date information. + +--- + +Spring Cloud provides tools for developers to quickly build some of +the common patterns in distributed systems (e.g. configuration +management, service discovery, circuit breakers, intelligent routing, +micro-proxy, control bus, one-time tokens, global locks, leadership +election, distributed sessions, cluster state). Coordination of +distributed systems leads to boiler plate patterns, and using Spring +Cloud developers can quickly stand up services and applications that +implement those patterns. They will work well in any distributed +environment, including the developer's own laptop, bare metal data +centres, and managed platforms such as Cloud Foundry. See https://projects.spring.io/spring-cloud[projects.spring.io/spring-cloud] for details. == Release Notes -See the following release notes for upgrade instructions and "new and noteworthy" features: +See the following release notes for upgrade instructions and "new and noteworthy" features (newer release trains at the end): - link:Spring-Cloud-Angel-Release-Notes[Angel] @@ -18,4 +34,10 @@ See the following release notes for upgrade instructions and "new and noteworthy - link:Spring-Cloud-Edgware-Release-Notes[Edgware] -- link:Spring-Cloud-Finchley-Release-Notes[Finchley] \ No newline at end of file +- link:Spring-Cloud-Finchley-Release-Notes[Finchley] + +- link:Spring-Cloud-Greenwich-Release-Notes[Greenwich] + +- link:https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-Hoxton-Release-Notes[Hoxton] + +- link:https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-2020.0-Release-Notes[2020.0 (code name ilford)] \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2020.0-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2020.0-Release-Notes.md index 35e014e6..d77bda8d 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2020.0-Release-Notes.md +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2020.0-Release-Notes.md @@ -1,539 +1 @@ -# 2020.0.4 - -[All Issues](https://github.com/orgs/spring-cloud/projects/64) - -2021-09-22 - -- Spring Cloud Cloudfoundry `3.0.2` -- Spring Cloud Config `3.0.5` -- Spring Cloud Contract `3.0.4` -- Spring Cloud Consul `3.0.4` -- Spring Cloud Gateway `3.0.4` -- Spring Cloud Netflix `3.0.4` -- Spring Cloud Vault `3.0.4` -- Spring Cloud Kubernetes `2.0.4` -- Spring Cloud Circuitbreaker `2.0.2` -- Spring Cloud Bus `3.0.3` -- Spring Cloud Cli `3.0.3` -- Spring Cloud Zookeeper `3.0.4` -- Spring Cloud Sleuth `3.0.4` -- Spring Cloud Starter Build `2020.0.4` -- Spring Cloud Task `2.3.2` -- Spring Cloud Commons `3.0.4` -- Spring Cloud Openfeign `3.0.4` - - -# 2020.0.3 - -## Breaking changes - -Actuator is no longer a required dependency of config server [1742](https://github.com/spring-cloud/spring-cloud-config/issues/1742) - -[All Issues](https://github.com/orgs/spring-cloud/projects/61) - -2021-05-28 - -- Spring Cloud Cloudfoundry `3.0.2` -- Spring Cloud Config `3.0.4` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/89?closed=1)) -- Spring Cloud Contract `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/77?closed=1)) -- Spring Cloud Consul `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/57?closed=1)) -- Spring Cloud Gateway `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/51?closed=1)) -- Spring Cloud Netflix `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/102?closed=1)) -- Spring Cloud Vault `3.0.3` -- Spring Cloud Kubernetes `2.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/31?closed=1)) -- Spring Cloud Circuitbreaker `2.0.2` -- Spring Cloud Bus `3.0.3` -- Spring Cloud Cli `3.0.3` -- Spring Cloud Zookeeper `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/37?closed=1)) -- Spring Cloud Sleuth `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/90?closed=1)) -- Spring Cloud Starter Build `2020.0.3` -- Spring Cloud Task `2.3.2` -- Spring Cloud Commons `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/89?closed=1)) -- Spring Cloud Openfeign `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/36?closed=1)) - - -This release makes it possible for all projects except for Spring Cloud Contract to use Spring Boot 2.5. Spring Boot 2.5 includes a major update of Groovy that can lead to various issues while using Spring Cloud Contract. - -# 2020.0.2 - -[All Issues](https://github.com/orgs/spring-cloud/projects/53) - -2021-03-17 - -- Spring Cloud Cloudfoundry `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-cloudfoundry/milestone/16?closed=1)) -- Spring Cloud Commons `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/87?closed=1)) -- Spring Cloud Config `3.0.3` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/88?closed=1)) -- Spring Cloud Contract `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/75?closed=1)) -- Spring Cloud Consul `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/56?closed=1)) -- Spring Cloud Gateway `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/49?closed=1)) -- Spring Cloud Netflix `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/100?closed=1)) -- Spring Cloud Circuitbreaker `2.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/milestone/8?closed=1)) -- Spring Cloud Zookeeper `3.0.2` -- Spring Cloud Kubernetes `2.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/30?closed=1)) -- Spring Cloud Vault `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/47?closed=1)) -- Spring Cloud Task `2.3.1` -- Spring Cloud Sleuth `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/88?closed=1)) -- Spring Cloud Bus `3.0.2` -- Spring Cloud Cli `3.0.2` -- Spring Cloud Starter Build `2020.0.2` -- Spring Cloud Openfeign `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/34?closed=1)) - -# 2020.0.1 - -[All Issues](https://github.com/orgs/spring-cloud/projects/52) - -2021-01-27 - -- Spring Cloud Openfeign `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/33?closed=1)) -- Spring Cloud Config `3.0.2` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/87?closed=1)) -- Spring Cloud Commons `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/86?closed=1)) -- Spring Cloud Contract `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/74?closed=1)) -- Spring Cloud Consul `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/54?closed=1)) -- Spring Cloud Gateway `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/48?closed=1)) -- Spring Cloud Netflix `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/99?closed=1)) -- Spring Cloud Zookeeper `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/34?closed=1)) -- Spring Cloud Vault `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/46?closed=1)) -- Spring Cloud Kubernetes `2.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/29?closed=1)) -- Spring Cloud Sleuth `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/87?closed=1)) -- Spring Cloud Bus `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/47?closed=1)) -- Spring Cloud Cli `3.0.1` ([issues](https://github.com/spring-cloud/spring-cloud-cli/milestone/24?closed=1)) -- Spring Cloud Starter Build `2020.0.1` - -# 2020.0.0 - -## Known Issues - -- 2020.0.0 Spring Cloud Consul: Retry support has not been added yet using `spring.config.import=consul:`. Follow the [issue here](https://github.com/spring-cloud/spring-cloud-consul/issues/703). The workaround is to use the old bootstrap style by including `spring-cloud-starter-bootstrap`. - -Spring Cloud Config [3.0.1](https://github.com/spring-cloud/spring-cloud-config/milestone/85?closed=1) has been released to fix the issues below. Please use version 2020.0.1 which includes all the fixes below. - -- 2020.0.0 Spring Cloud Config: Retry support is missing for `spring.config.import=configserver:`. Follow the issue [here](github.com/spring-cloud/spring-cloud-config/issues/1775). For a workaround, continue to use `bootstrap.{yml|properties}` and add a dependency on `spring-cloud-starter-bootstrap` to restore the old behavior. -- 2020.0.0 Spring Cloud Config: spring-cloud-config-dependencies imports a milestone of spring-vault. Follow the issue [here](github.com/spring-cloud/spring-cloud-config/issues/1776). See [a workaround here](https://github.com/spring-cloud/spring-cloud-config/issues/1776#issuecomment-749782456) -- 2020.0.0 Spring Cloud Config: using `spring.config.import` value of `spring.profiles.active` not being used. Follow the issue and see workarounds [here](https://github.com/spring-cloud/spring-cloud-config/issues/1777). -- 2020.0.0 Spring Cloud Config: Multi-document YAML and properties files from config server have the same property source name which leads to a missing property source. Follow the issue [here](https://github.com/spring-cloud/spring-cloud-config/issues/1778). - -## Breaking changes - -- As [announced](https://spring.io/blog/2019/12/23/spring-cloud-roadmap-and-hoxton-and-greenwich-maintenance-and-eol-announcements), the following modules have been removed from spring-cloud-netflix: - - spring-cloud-netflix-archaius - - spring-cloud-netflix-concurrency-limits - - spring-cloud-netflix-core - - spring-cloud-netflix-dependencies - - spring-cloud-netflix-hystrix - - spring-cloud-netflix-hystrix-contract - - spring-cloud-netflix-hystrix-dashboard - - spring-cloud-netflix-hystrix-stream - - spring-cloud-netflix-ribbon - - spring-cloud-netflix-sidecar - - spring-cloud-netflix-turbine - - spring-cloud-netflix-turbine-stream - - spring-cloud-netflix-zuul - - spring-cloud-starter-netflix-archaius - - spring-cloud-starter-netflix-hystrix - - spring-cloud-starter-netflix-hystrix-dashboard - - spring-cloud-starter-netflix-ribbon - - spring-cloud-starter-netflix-turbine - - spring-cloud-starter-netflix-turbine-stream - - spring-cloud-starter-netflix-zuul - - Support for ribbon, hystrix and zuul was removed across the release train projects. - -- Bootstrap, provided by spring-cloud-commons, is no longer enabled by default. If your project requires it, it can be re-enabled by properties or by a new starter. - - To re-enable by properties set `spring.cloud.bootstrap.enabled=true` or `spring.config.use-legacy-processing=true`. These need to be set as an environment variable, java system property or a command line argument. - - The other option is to include the new `spring-cloud-starter-bootstrap`. - -- Support has been added for the new Spring Boot `spring.config.import` syntax for Config Server, Consul, Zookeeper and Vault. The existing properties to configure the different services are still supported but need to be put in `application.properties` or `application.yml`. - - `spring.config.import=configserver:` - - `spring.config.import=consul:` - - `spring.config.import=zookeeper:` - - `spring.config.import=vault:` - -- Spring Cloud Consul removed the old tags-as-metadata functionality [issue](https://github.com/spring-cloud/spring-cloud-consul/issues/630) - -- Previously the property to disable the Spring Cloud Config Client Health Indicator was `health.config.enabled=false`. It is now `management.health.config.enabled=false` following the Spring Boot convention. - -- Spring Cloud Security was removed and code was moved to the individual Spring Cloud projects. - -- The `spring-cloud-gateway-core` module was moved to `spring-cloud-gateway-server`. If you are using `spring-cloud-gateway-starter` this will not be an issue. - -- The implementation of spring-cloud-bus was migrated to use spring-cloud-function instead of the legacy annotation-driven model. This should have minimal effect on users. - -- `spring-cloud-stream` is now an optional dependency of `spring-cloud-bus`. If you are using a binder other than rabbitmq or kafka you will need to inclue the new `spring-cloud-starter-bus-stream`. - -- Actuator endpoints with invalid characters (dashes) have been updated to remove them: - - `bus-env` is now `busenv` - - `bus-refresh` is now `busrefresh` - - `service-registry` is now `serviceregistry` - -- In Spring Cloud Config, the endpoints from the resource API that used the `useDefaultLabel` query parameter have [been removed](https://github.com/spring-cloud/spring-cloud-config/issues/1643). -- As [announced](https://spring.io/blog/2020/04/17/spring-cloud-2020-0-0-m1-released) Spring Cloud GCP is no longer part of the Spring Cloud release train - -### Spring Cloud Kubernetes - -#### Code Refactoring -* Code that was not dependent on any Kubernetes client was moved into a module name `spring-cloud-kubernetes-commons` -* Packages were renamed to be Fabric8 specific. Any package that began with `org.springframework.cloud.kubernetes` has been renamed too `org.springframework.cloud.kubernetes.fabric8` - -#### Kubernetes Client Implementations -* There are alternate implementations for much of the functionality in Spring Cloud Kubernetes using the [Kubernetes Java Client](https://github.com/kubernetes-client/java). - -| Functionality | Starter | -| ---------------- | --------------- | -| Kubernetes Detection | spring-cloud-kubernetes-client | -| Configuration | spring-cloud-starter-kubernetes-client-config | -| Loadbalancer | spring-cloud-starter-kubernetes-client-loadbalancer | -| Discovery | spring-cloud-starter-kubernetes-client-all | - -NOTE: When using the new Informer based DiscoveryClient you must give cluster wide permissions to the app due to [a bug in the Kubernetes Java Client](https://github.com/kubernetes-client/java/pull/1409) - - -#### Configuration Change Listener -* Classes related to event based and polling configuration change listeners have now been split up [PR 644](https://github.com/spring-cloud/spring-cloud-kubernetes/pull/644) - -#### Renamed Starters - -| Old Starter | Renamed Starter | -| ---------------- | --------------- | -| spring-cloud-starter-kubernetes | spring-cloud-starter-kubernetes-fabric8 | -| spring-cloud-starter-kubernetes-config | spring-cloud-starter-kubernetes-fabric8-config | -| spring-cloud-starter-kubernetes-all | spring-cloud-starter-kubernetes-fabric8-all | -| spring-cloud-starter-kubernetes-loadbalancer | spring-cloud-starter-kubernetes-fabric8-loadbalancer | - - -### Spring Cloud Sleuth - -Most notable breaking changes: - -#### `3.0.0-RC1` - -##### Moving OpenTelemetry support to incubator - -OpenTelemetry was unable to provide a reliable GA date of their modules. We've decided to remove OpenTelemetry support from Spring Cloud Sleuth and move it to incubator https://github.com/spring-cloud-incubator/spring-cloud-sleuth-otel/ . If you want to continue using OpenTelemetry with Spring Cloud Sleuth you need to add the Spring repositories, the `spring-cloud-sleuth-otel-dependencies` BOM and `spring-cloud-sleuth-otel-autoconfigure` dependency. - -We have released a `1.0.0-M1` of Spring Cloud Sleuth OTel that is compatible with the `2020.0.0-RC1` release train. - -.Maven -```xml - - 1.0.0-M1 - - - - - - org.springframework.cloud - spring-cloud-dependencies - - ${release.train.version} - pom - import - - - org.springframework.cloud - spring-cloud-sleuth-otel-dependencies - - ${spring-cloud-sleuth-otel.version} - import - pom - - - - - - org.springframework.cloud - spring-cloud-starter-sleuth - - - org.springframework.cloud - spring-cloud-sleuth-brave - - - - - org.springframework.cloud - spring-cloud-sleuth-otel-autoconfigure - - - - - - spring-snapshots - https://repo.spring.io/snapshot - true - - - spring-milestones - https://repo.spring.io/milestone - - - - - spring-snapshots - https://repo.spring.io/snapshot - - - spring-milestones - https://repo.spring.io/milestone - - -``` - -.Gradle -``` -ext { - springCloudSleuthOtelVersion = "1.0.0-M1" -} - -dependencyManagement { - imports { - mavenBom "org.springframework.cloud:spring-cloud-dependencies:${releaseTrainVersion}" - mavenBom "org.springframework.cloud:spring-cloud-sleuth-otel-dependencies:${springCloudSleuthOtelVersion}" - } -} - -dependencies { - implementation("org.springframework.cloud:spring-cloud-starter-sleuth") { - exclude group: 'org.springframework.cloud', module: 'spring-cloud-sleuth-brave' - } - implementation "org.springframework.cloud:spring-cloud-sleuth-otel-autoconfigure" -} - -repositories { - mavenCentral() - maven { - url "https://repo.spring.io/snapshot" - } - maven { - url "https://repo.spring.io/milestone" - } - maven { - url "https://repo.spring.io/release" - } -} -``` - -#### `3.0.0-M6` - -##### Modules - -* New modules: `spring-cloud-sleuth-autoconfigure`, `spring-cloud-sleuth-api`, `spring-cloud-sleuth-instrumentation` - `spring-cloud-sleuth-core` removed and changed to `spring-cloud-sleuth-instrumentation` & `spring-cloud-sleuth-api` -* Removed `spring-cloud-starter-sleuth-otel` - To add OpenTelemetry support you need to add `spring-cloud-starter-sleuth` (adds Brave by default), exclude Brave and add `spring-cloud-sleuth-otel` dependency -* Except for the tests, `spring-cloud-sleuth-autoconfigure` is the only module that can have access to `@Configuration`, `@ConfiguraationProperties` classes. - Tests have been added to ensure such separation. - -##### Package moving - -* `org.springframework.cloud.sleuth.api` -> `org.springframework.cloud.sleuth` -* `org.springframework.cloud.sleuth.brave.autoconfig` -> `org.springframework.cloud.sleuth.autoconfig.brave` -* `org.springframework.cloud.sleuth.otel.autoconfig` -> `org.springframework.cloud.sleuth.autoconfig.otel` -* `org.springframework.cloud.sleuth` -> `org.springframework.cloud.sleuth` -* Instrumentation: `org.springframework.cloud.sleuth.annotation` -> `org.springframework.cloud.sleuth.instrument.annotation` -* All the autoconfiguration classes were moved under `org.springframework.cloud/sleuth.autoconfig` package - -##### Global class modifications - -* Any class registered as a bean is now public - -##### Classes - -* `RateLimitingSampler` constructor changed -* Merged a lot of auto configuration classes into one (e.g. `BraveAutoConfiguration` now imports various other configurations) -* Renamed `TraceBraveAutoConfiguration` to `BraveAutoConfiguration` -* Renamed `TraceOtelAutoConfiguration` to `OtelAutoConfiguration` -* Removed all `NoOp` implementations of the API - -To see the whole list check [this Github page](https://github.com/spring-cloud/spring-cloud-sleuth/issues?q=label%3A%22breaking+change%22+is%3Aclosed) and search for `3.0.0` milestones. - -You can also check the [Sleuth 3.0.0 migration guide](https://github.com/spring-cloud/spring-cloud-sleuth/wiki/Spring-Cloud-Sleuth-3.0-Migration-Guide). - -#### Up till `3.0.0-M5` - -* Introduces abstraction over tracers [PR 1757](https://github.com/spring-cloud/spring-cloud-sleuth/pull/1757) - * You can use Spring Cloud Sleuth's abstraction over Span's lifecycle [Check the docs](https://docs.spring.io/spring-cloud-sleuth/docs/3.0.x-SNAPSHOT/reference/html/using.html#using) - * You can use Brave or OpenTelemetry directly -* Module change / removal - * Point of entry should be `spring-cloud-starter-sleuth` (Brave support) or `spring-cloud-starter-otel` (OpenTelemetry support). - * If you want to use Zipkin: `spring-cloud-starter-zipkin` is removed and you should replace is with `spring-cloud-sleuth-zipkin` dependency. -* Enable reactor manual instrumentation when in gateway breaking change enhancement [Issue 1710](https://github.com/spring-cloud/spring-cloud-sleuth/issues/1710) -* Remove the legacy Sleuth keys, span naming breaking change [Issue 1564](https://github.com/spring-cloud/spring-cloud-sleuth/issues/1564) -* Remove the legacy MDC entries and remain with the Brave MDC ones only breaking change enhancement [Issue 1221](https://github.com/spring-cloud/spring-cloud-sleuth/issues/1221) - -# 2020.0.0-RC1 - -[All Issues](https://github.com/orgs/spring-cloud/projects/50) - -2020-12-11 - -- Spring Cloud Circuitbreaker `2.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/milestone/7?closed=1)) -- Spring Cloud Contract `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/73?closed=1)) -- Spring Cloud Kubernetes `2.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/27?closed=1)) -- Spring Cloud Commons `3.0.0-RC1` -- Spring Cloud Openfeign `3.0.0-RC1` -- Spring Cloud Cloudfoundry `3.0.0-RC1` -- Spring Cloud Security `3.0.0-RC1` -- Spring Cloud Bus `3.0.0-RC1` -- Spring Cloud Cli `3.0.0-RC1` -- Spring Cloud Zookeeper `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/32?closed=1)) -- Spring Cloud Sleuth `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/85?closed=1)) -- Spring Cloud Consul `3.0.0-RC1` -- Spring Cloud Starter Build `2020.0.0-RC1` -- Spring Cloud Gateway `3.0.0-RC1` -- Spring Cloud Netflix `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/97?closed=1)) -- Spring Cloud Vault `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/43?closed=1)) -- Spring Cloud Config `3.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/83?closed=1)) - - -# 2020.0.0-M6 - -[All Issues](https://github.com/orgs/spring-cloud/projects/49) - -2020-12-01 - -- Spring Cloud Sleuth `3.0.0-M6` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/84?closed=1)) -- Spring Cloud Consul `3.0.0-M6` -- Spring Cloud Gateway `3.0.0-M6` -- Spring Cloud Zookeeper `3.0.0-M6` -- Spring Cloud Config `3.0.0-M6` -- Spring Cloud Cloudfoundry `3.0.0-M6` -- Spring Cloud Netflix `3.0.0-M6` -- Spring Cloud Kubernetes `2.0.0-M6` -- Spring Cloud Circuitbreaker `2.0.0-M6` -- Spring Cloud Contract `3.0.0-M6` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/72?closed=1)) -- Spring Cloud Starter Build `2020.0.0-M6` -- Spring Cloud Security `3.0.0-M6` -- Spring Cloud Bus `3.0.0-M6` -- Spring Cloud Cli `3.0.0-M6` -- Spring Cloud Vault `3.0.0-M6` -- Spring Cloud Openfeign `3.0.0-M6` -- Spring Cloud Commons `3.0.0-M6` - -# 2020.0.0-M5 - -[All Issues](https://github.com/orgs/spring-cloud/projects/46) - -2020-11-17 - -- Spring Cloud Consul `3.0.0-M5` -- Spring Cloud Gateway `3.0.0-M5` -- Spring Cloud Zookeeper `3.0.0-M5` -- Spring Cloud Sleuth `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/81?closed=1)) -- Spring Cloud Cloudfoundry `3.0.0-M5` -- Spring Cloud Config `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/82?closed=1)) -- Spring Cloud Kubernetes `2.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/24?closed=1)) -- Spring Cloud Netflix `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/95?closed=1)) -- Spring Cloud Starter Build `2020.0.0-M5` -- Spring Cloud Circuitbreaker `2.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/milestone/6?closed=1)) -- Spring Cloud Contract `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/70?closed=1)) -- Spring Cloud Security `3.0.0-M5` -- Spring Cloud Bus `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/46?closed=1)) -- Spring Cloud Cli `3.0.0-M5` -- Spring Cloud Openfeign `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/30?closed=1)) -- Spring Cloud Vault `3.0.0-M5` -- Spring Cloud Commons `3.0.0-M5` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/80?closed=1)) - - - - -# 2020.0.0-M4 - -[All Issues](https://github.com/orgs/spring-cloud/projects/43) - -2020-10-05 - -- Spring Cloud Sleuth `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/79?closed=1)) -- Spring Cloud Consul `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/51?closed=1)) -- Spring Cloud Config `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/80?closed=1)) -- Spring Cloud Kubernetes `2.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/21?closed=1)) -- Spring Cloud Gateway `3.0.0-M4` -- Spring Cloud Circuitbreaker `2.0.0-M4` -- Spring Cloud Contract `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/68?closed=1)) -- Spring Cloud Starter Build `2020.0.0-M4` -- Spring Cloud Netflix `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/92?closed=1)) -- Spring Cloud Cloudfoundry `3.0.0-M4` -- Spring Cloud Security `3.0.0-M4` -- Spring Cloud Cli `3.0.0-M4` -- Spring Cloud Bus `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/45?closed=1)) -- Spring Cloud Zookeeper `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/31?closed=1)) -- Spring Cloud Commons `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/77?closed=1)) -- Spring Cloud Openfeign `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/25?closed=1)) -- Spring Cloud Vault `3.0.0-M4` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/42?closed=1)) - - - - -# 2020.0.0-M3 - -[All Issues](https://github.com/orgs/spring-cloud/projects/42) - -2020-07-23 - -- Spring Cloud Sleuth `3.0.0-M3` -- Spring Cloud Kubernetes `2.0.0-M3` -- Spring Cloud Consul `3.0.0-M3` -- Spring Cloud Config `3.0.0-M3` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/77?closed=1)) -- Spring Cloud Gateway `3.0.0-M3` -- Spring Cloud Starter Build `2020.0.0-M3` -- Spring Cloud Circuitbreaker `2.0.0-M3` -- Spring Cloud Contract `3.0.0-M3` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/67?closed=1)) -- Spring Cloud Cloudfoundry `3.0.0-M3` -- Spring Cloud Security `3.0.0-M3` -- Spring Cloud Netflix `3.0.0-M3` -- Spring Cloud Cli `3.0.0-M3` -- Spring Cloud Bus `3.0.0-M3` -- Spring Cloud Zookeeper `3.0.0-M3` -- Spring Cloud Commons `3.0.0-M3` -- Spring Cloud Vault `3.0.0-M3` -- Spring Cloud Openfeign `3.0.0-M3` - - -# 2020.0.0-M2 - -[All Issues](https://github.com/orgs/spring-cloud/projects/39) - -2020-05-29 - -- Spring Cloud Netflix `3.0.0-M2` -- Spring Cloud Sleuth `3.0.0-M2` -- Spring Cloud Consul `3.0.0-M2` -- Spring Cloud Kubernetes `2.0.0-M2` -- Spring Cloud Gateway `3.0.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/38?closed=1)) -- Spring Cloud Circuitbreaker `2.0.0-M2` -- Spring Cloud Contract `3.0.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/65?closed=1)) -- Spring Cloud Starter Build `2020.0.0-M2` -- Spring Cloud Config `3.0.0-M2` -- Spring Cloud Build `3.0.0-M2` -- Spring Cloud Cloudfoundry `3.0.0-M2` -- Spring Cloud Security `3.0.0-M2` -- Spring Cloud Bus `3.0.0-M2` -- Spring Cloud Cli `3.0.0-M2` -- Spring Cloud Vault `3.0.0-M2` -- Spring Cloud Zookeeper `3.0.0-M2` -- Spring Cloud Commons `3.0.0-M2` -- Spring Cloud Openfeign `3.0.0-M2` - - -# 2020.0.0-M1 - -2020-04-16 - -- Spring Cloud Netflix `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/88?closed=1)) -- Spring Cloud Function `3.1.0.M1` -- Spring Cloud Sleuth `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/74?closed=1)) -- Spring Cloud Consul `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/47?closed=1)) -- Spring Cloud Kubernetes `2.0.0.M1` -- Spring Cloud Gateway `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/36?closed=1)) -- Spring Cloud Circuitbreaker `2.0.0.M1` -- Spring Cloud Contract `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/63?closed=1)) -- Spring Cloud Starter Build `2020.0.0-M1` -- Spring Cloud Config `3.0.0.M1` -- Spring Cloud Build `3.0.0.M1` -- Spring Cloud Cloudfoundry `3.0.0.M1` -- Spring Cloud Security `3.0.0.M1` -- Spring Cloud Bus `3.0.0.M1` -- Spring Cloud Vault `3.0.0.M1` -- Spring Cloud Zookeeper `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/28?closed=1)) -- Spring Cloud Commons `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/72?closed=1)) -- Spring Cloud Openfeign `3.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/23?closed=1)) - - +The 2020.0 Release Notes have moved to https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-2020.0-Release-Notes \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2024.0-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2024.0-Release-Notes.md new file mode 100644 index 00000000..4709fdfc --- /dev/null +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-2024.0-Release-Notes.md @@ -0,0 +1,67 @@ +# 2024.0.0-RC1 + +2024-11-08 + +- Spring Cloud Starter Build `2024.0.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-starter-build/releases/tag/v2024.0.0-RC1)) +- Spring Cloud Vault `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/releases/tag/v4.2.0-RC1)) +- Spring Cloud Stream `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-stream/releases/tag/v4.2.0-RC1)) +- Spring Cloud Function `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-function/releases/tag/v4.2.0-RC1)) +- Spring Cloud Netflix `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/releases/tag/v4.2.0-RC1)) +- Spring Cloud Consul `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-consul/releases/tag/v4.2.0-RC1)) +- Spring Cloud Config `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-config/releases/tag/v4.2.0-RC1)) +- Spring Cloud Build `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-build/releases/tag/v4.2.0-RC1)) +- Spring Cloud Gateway `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/releases/tag/v4.2.0-RC1)) +- Spring Cloud Kubernetes `3.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/releases/tag/v3.2.0-RC1)) +- Spring Cloud Contract `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-contract/releases/tag/v4.2.0-RC1)) +- Spring Cloud Circuitbreaker `3.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/releases/tag/v3.2.0-RC1)) +- Spring Cloud Commons `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-commons/releases/tag/v4.2.0-RC1)) +- Spring Cloud Openfeign `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/releases/tag/v4.2.0-RC1)) +- Spring Cloud Zookeeper `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/releases/tag/v4.2.0-RC1)) +- Spring Cloud Bus `4.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-bus/releases/tag/v4.2.0-RC1)) +- Spring Cloud Task `3.2.0-RC1` ([issues](https://github.com/spring-cloud/spring-cloud-task/releases/tag/v3.2.0-RC1)) + + +# 2024.0.0-M2 + +2024-10-08 + +- Spring Cloud Bus `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-bus/releases/tag/v4.2.0-M2)) +- Spring Cloud Contract `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/releases/tag/v4.2.0-M2)) +- Spring Cloud Circuitbreaker `3.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/releases/tag/v3.2.0-M2)) +- Spring Cloud Zookeeper `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/releases/tag/v4.2.0-M2)) +- Spring Cloud Task `3.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-task/releases/tag/v3.2.0-M2)) +- Spring Cloud Kubernetes `3.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/releases/tag/v3.2.0-M2)) +- Spring Cloud Starter Build `2024.0.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-starter-build/releases/tag/v2024.0.0-M2)) +- Spring Cloud Netflix `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/releases/tag/v4.2.0-M2)) +- Spring Cloud Openfeign `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/releases/tag/v4.2.0-M2)) +- Spring Cloud Commons `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-commons/releases/tag/v4.2.0-M2)) +- Spring Cloud Consul `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-consul/releases/tag/v4.2.0-M2)) +- Spring Cloud Config `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-config/releases/tag/v4.2.0-M2)) +- Spring Cloud Vault `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-vault/releases/tag/v4.2.0-M2)) +- Spring Cloud Build `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-build/releases/tag/v4.2.0-M2)) +- Spring Cloud Gateway `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/releases/tag/v4.2.0-M2)) +- Spring Cloud Stream `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-stream/releases/tag/v4.2.0-M2)) +- Spring Cloud Function `4.2.0-M2` ([issues](https://github.com/spring-cloud/spring-cloud-function/releases/tag/v4.2.0-M2)) + + +# 2024.0.0-M1 + +2024-08-19 + +- Spring Cloud Bus `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-bus/releases/tag/v4.2.0-M1)) +- Spring Cloud Zookeeper `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/releases/tag/v4.2.0-M1)) +- Spring Cloud Circuitbreaker `3.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-circuitbreaker/releases/tag/v3.2.0-M1)) +- Spring Cloud Task `3.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-task/releases/tag/v3.2.0-M1)) +- Spring Cloud Contract `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-contract/releases/tag/v4.2.0-M1)) +- Spring Cloud Kubernetes `3.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/releases/tag/v3.2.0-M1)) +- Spring Cloud Netflix `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/releases/tag/v4.2.0-M1)) +- Spring Cloud Starter Build `2024.0.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-starter-build/releases/tag/v2024.0.0-M1)) +- Spring Cloud Config `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-config/releases/tag/v4.2.0-M1)) +- Spring Cloud Build `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-build/releases/tag/v4.2.0-M1)) +- Spring Cloud Openfeign `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/releases/tag/v4.2.0-M1)) +- Spring Cloud Consul `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-consul/releases/tag/v4.2.0-M1)) +- Spring Cloud Gateway `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/releases/tag/v4.2.0-M1)) +- Spring Cloud Commons `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-commons/releases/tag/v4.2.0-M1)) +- Spring Cloud Stream `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-stream/releases/tag/v4.2.0-M1)) +- Spring Cloud Function `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-function/releases/tag/v4.2.0-M1)) +- Spring Cloud Vault `4.2.0-M1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/releases/tag/v4.2.0-M1)) \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Angel-Release-Notes.asciidoc b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Angel-Release-Notes.asciidoc index 04ff5b00..a133b0ae 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Angel-Release-Notes.asciidoc +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Angel-Release-Notes.asciidoc @@ -1,5 +1,4 @@ -Spring Cloud Angel focuses on providing good out of box experience for typical use cases and extensibility mechanism to cover others. -Many of the features are implemented by Netflix OSS, with wrappers for Spring Boot apps being the main focus of Spring Cloud. +Spring Cloud Angel focuses on providing good out of box experience for typical use cases and extensibility mechanism to cover others. Many of the features are implemented by Netflix OSS, with wrappers for Spring Boot apps being the main focus of Spring Cloud. - Distributed/versioned configuration (git, svn, spring-cloud-config) - Service registration and discovery (eureka, spring-cloud-netflix) @@ -12,39 +11,28 @@ Many of the features are implemented by Netflix OSS, with wrappers for Spring Bo == Main Projects === Spring Cloud Config - -Centralized external configuration management backed by a git repository. -The configuration resources map directly to Spring `Environment` but could be used by non-Spring applications if desired. +Centralized external configuration management backed by a git repository. The configuration resources map directly to Spring `Environment` but could be used by non-Spring applications if desired. === Spring Cloud Netflix - Integration with various Netflix OSS components (Eureka, Hystrix, Zuul, Archaius, etc.). === Spring Cloud Bus - -An event bus for linking services and service instances together with distributed messaging. -Useful for propagating state changes across a cluster (e.g. config change events). +An event bus for linking services and service instances together with distributed messaging. Useful for propagating state changes across a cluster (e.g. config change events). === Spring Cloud Security - Provides support for load-balanced OAuth2 rest client and authentication header relays in a Zuul proxy. === Spring Cloud AWS - -Easy integration with hosted Amazon Web Services. -It offers a convenient way to interact with AWS provided services using well-known Spring idioms and APIs, such as the messaging or caching API. Developers can build their application around the hosted services without having to care about infrastructure or maintenance. +Easy integration with hosted Amazon Web Services. It offers a convenient way to interact with AWS provided services using well-known Spring idioms and APIs, such as the messaging or caching API. Developers can build their application around the hosted services without having to care about infrastructure or maintenance. === Spring Cloud Connectors - -Makes it easy for PaaS applications in a variety of platforms to connect to backend services like databases and message brokers (the project formerly known as "Spring Cloud"). +Makes it easy for PaaS applications in a variety of platforms to connect to backend services like +databases and message brokers (the project formerly known as "Spring Cloud"). === Spring Cloud Starters - -Spring Boot-style starter projects to ease dependency management for consumers of Spring Cloud. -(Discontinued as a project and merged with the other projects after Angel.SR2.) +Spring Boot-style starter projects to ease dependency management for consumers of Spring Cloud. (Discontinued as a project and merged with the other projects after Angel.SR2.) === Spring Cloud CLI - Spring Boot CLI plugin for creating Spring Cloud component applications quickly in Groovy Spring Cloud Angel builds on Spring Boot 1.2.x, and parts of it (notably the OAuth2 support that moved to Spring Boot) does not work with Spring Boot 1.3.x. \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Brixton-Release-Notes.asciidoc b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Brixton-Release-Notes.asciidoc index 9c08f655..f14acbe8 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Brixton-Release-Notes.asciidoc +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Brixton-Release-Notes.asciidoc @@ -1,40 +1,28 @@ -Spring Cloud Brixton builds on Spring Boot 1.3.x. -It adds the following new projects: + +Spring Cloud Brixton builds on Spring Boot 1.3.x. It adds the following new projects: === Spring Cloud Zookeeper - Service discovery and configuration management with Apache Zookeeper. === Spring Cloud Cloudfoundry - -Integrates your application with Pivotal Cloudfoundry. -Provides a service discovery implementation and also makes it easy to implement SSO and OAuth2 protected resources, and also to create a Cloudfoundry service broker. +Integrates your application with Pivotal Cloudfoundry. Provides a service discovery implementation and also makes it easy to implement SSO and OAuth2 protected resources, and also to create a Cloudfoundry service broker. === Spring Cloud Cluster - -Leadership election and common stateful patterns with an abstraction and implementation for Zookeeper, Redis, Hazelcast, Consul. -(Now deprecated and superseded by Spring Integration.) +Leadership election and common stateful patterns with an abstraction and implementation for Zookeeper, Redis, Hazelcast, Consul. (Now deprecated and superseded by Spring Integration.) === Spring Cloud Consul - Service discovery and configuration management with Hashicorp Consul. === Spring Cloud Sleuth - Distributed tracing for Spring Cloud applications, compatible with Zipkin, HTrace and log-based (e.g. ELK) tracing. === Spring Cloud Stream - -Messaging microservices with Redis, Rabbit or Kafka. -Simple declarative model to send and receive messages in a Spring Cloud app. +Messaging microservices with Redis, Rabbit or Kafka. Simple declarative model to send and receive messages in a Spring Cloud app. === Spring Cloud Task - -Short lived microservices. -Simple declarative for adding both functional and non-functional features to Spring Boot apps. +Short lived microservices. Simple declarative for adding both functional and non-functional features to Spring Boot apps. === Spring Cloud Zookeeper - Service discovery and configuration management with Apache Zookeeper. Spring Cloud Brixton builds with Spring Boot 1.3.x but it should work with 1.4.x as well (we do compatibility tests and hope to be able to fix any issues that crop up). @@ -47,22 +35,17 @@ Some of the highlights of the Brixton release train are: * Hashicorp Consul support for service registration/discovery & configuration via Spring Cloud Consul * Apache Zookeeper support for service registration/discovery, configuration via Spring Cloud Zookeeper and leader election in Spring Cloud Cluster * Distributed tracing through the Spring Cloud Sleuth abstraction with two out of the box implementations: one supporting logging (ideal for log collectors and multiplexers like Logstash and Loggregator) and one supporting Twitter's Zipkin -* Netflix https://medium.com/netflix-techblog/introducing-atlas-netflixs-primary-telemetry-platform-bd31f4d8ed9a[Atlas Telemetry System], the next generation https://github.com/Netflix/spectator/wiki[Spectator Metrics library] and recent versions of Eureka, Ribbon, Hystrix and Feign are available in Spring Cloud Netflix +* Netflix http://techblog.netflix.com/2014/12/introducing-atlas-netflixs-primary.html[Atlas Telemetry System], the next generation https://github.com/Netflix/spectator/wiki[Spectator Metrics library] and recent versions of Eureka, Ribbon, Hystrix and Feign are available in Spring Cloud Netflix * Spring Cloud Bus is now powered by the recently released https://spring.io/blog/2016/05/10/spring-cloud-stream-1-0-0-release-is-available[Spring Cloud Stream] * Cluster Leadership election and locks via Spring Cloud Cluster * Export of Spring Boot metrics to Amazon Cloudwatch, and native support for Amazon RDS + == Notes: -Starting with Brixton, Zuul will no longer automatically send all headers to downstream services. -By default `Cookie`, `Set-Cookie` and `Authorization` *are not* sent to downstream services. -To return to the Angel behaviour, set `zuul.sensitiveHeaders=""` in the Zuul configuration. -See https://cloud.spring.io/spring-cloud-static/Brixton.SR6/#_cookies_and_sensitive_headers[the documentation] for more information. +Starting with Brixton, Zuul will no longer automatically send all headers to downstream services. By default `Cookie`, `Set-Cookie` and `Authorization` *are not* sent to downstream services. To return to the Angel behaviour, set `zuul.sensitiveHeaders=""` in the Zuul configuration. See http://cloud.spring.io/spring-cloud-static/Brixton.SR6/#_cookies_and_sensitive_headers[the documentation] for more information. -A `@LoadBalanced` `RestTemplate` is no longer created by default. -See the https://cloud.spring.io/spring-cloud-static/spring-cloud.html=_spring_resttemplate_as_a_load_balancer_client[updated documentation for details]. -You need to create it in your application’s configuration. -For example: +A `@LoadBalanced` `RestTemplate` is no longer created by default. See the http://cloud.spring.io/spring-cloud-static/spring-cloud.html=_spring_resttemplate_as_a_load_balancer_client[updated documentation for details]. You need to create it in your application’s configuration. For example: ```java @Configuration @@ -80,9 +63,7 @@ Please note the correct BOM to use is `spring-cloud-dependencies` not `spring-cl === Migrating Spring Cloud Hystrix, Turbine and Bus with AMQP -The Bus, Hystrix and Turbine support that used to be implemented on top of Spring AMQP have all been migrated to use Spring Cloud Stream. -The old artifacts still exist, but are deprecated and will be removed at some point. -Instead of the `spring-cloud-*-amqp` artifacts you should use whatever raw feature you need, plus a stream binder of your choice, e.g. `spring-cloud-netflix-hystrix-stream` and `spring-cloud-starter-stream-rabbit` instead of `spring-cloud-netflix-hystrix-amqp`. +The Bus, Hystrix and Turbine support that used to be implemented on top of Spring AMQP have all been migrated to use Spring Cloud Stream. The old artifacts still exist, but are deprecated and will be removed at some point. Instead of the `spring-cloud-*-amqp` artifacts you should use whatever raw feature you need, plus a stream binder of your choice, e.g. `spring-cloud-netflix-hystrix-stream` and `spring-cloud-starter-stream-rabbit` instead of `spring-cloud-netflix-hystrix-amqp`. |=== |Angel | Brixton (with AMQP) | Brixton (with Kafka) | @@ -111,5 +92,4 @@ NOTE: There is still a `spring-cloud-netflix-hystrix-amqp` in the Brixton releas - 2016/11/24 - Sleuth version `1.0.11.RELEASE` https://github.com/spring-cloud/spring-cloud-sleuth/milestone/17?closed=1[(issues)] - 2016/11/23 - Config version `1.1.3.RELEASE` https://github.com/spring-cloud/spring-cloud-config/milestone/21?closed=1[(issues)] -Note: -There was an XXE vulnerability in xstream (which is used by Eureka), so please upgrade to Brixton.SR7 to pull in the latest version of that library which fixed the issue (https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-3674). \ No newline at end of file +Note: There was an XXE vulnerability in xstream (which is used by Eureka), so please upgrade to Brixton.SR7 to pull in the latest version of that library which fixed the issue (https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-3674). \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Edgware-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Edgware-Release-Notes.md index 8d77c2f1..6a346863 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Edgware-Release-Notes.md +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Edgware-Release-Notes.md @@ -19,6 +19,35 @@ A number of starters did not follow normal Spring Cloud naming conventions. In E | spring-cloud-starter-turbine-stream | spring-cloud-starter-netflix-turbine-stream | | spring-cloud-starter-zuul | spring-cloud-starter-netflix-zuul | + + +# Edgware.SR6 + +2019-05-23 + + - Spring Cloud Starter `Edgware.SR6` + - Spring Cloud Release `Edgware.SR6` + - Spring Cloud Security `1.2.4.RELEASE` + - Spring Cloud Bus `1.3.5.RELEASE` + - Spring Cloud Stream `Ditmars.SR5` + - Spring Cloud Task `1.2.4.RELEASE` + - Spring Cloud Netflix `1.4.7.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/issues?q=is%3Aclosed+milestone%3A1.4.7.RELEASE)) + - Spring Cloud Sleuth `1.3.6.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/issues?q=is%3Aclosed+milestone%3A1.3.6.RELEASE)) + - Spring Cloud Config `1.4.7.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/56?closed=1)) + - Spring Cloud `Edgware.SR6` + - Spring Cloud Dependencies `Edgware.SR6` + - Spring Cloud Commons `1.3.6.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/56?closed=1)) + - Spring Cloud Build `1.3.13.RELEASE` + - Spring Cloud Vault `1.1.3.RELEASE` (upgraded to Vault 1.1.3) + - Spring Cloud Zookeeper `1.2.3.RELEASE` + - Spring Cloud Contract `1.2.7.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/issues?q=is%3Aclosed+milestone%3A1.2.7.RELEASE)) + - Spring Cloud Aws `1.2.4.RELEASE` + - Spring Cloud Consul `1.3.6.RELEASE` + - Spring Cloud Cloudfoundry `1.1.3.RELEASE` + - Spring Cloud Function `1.0.2.RELEASE` + - Spring Cloud Gateway `1.0.3.RELEASE` + + # Edgware.SR5 2018-10-16 @@ -145,4 +174,3 @@ A number of starters did not follow normal Spring Cloud naming conventions. In E - Spring Cloud Vault `1.1.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/5?closed=1)) - Spring Cloud Gateway `1.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/2?closed=1)) - diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Finchley-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Finchley-Release-Notes.md index f8174569..b6d8bdb8 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Finchley-Release-Notes.md +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Finchley-Release-Notes.md @@ -1,5 +1,65 @@ Spring Cloud Finchley builds on Spring Boot 2.0.x and is not compatible with 1.x.y. + + + + +# Finchley.SR4 + +2019-06-08 + + - Spring Cloud Commons `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/60?closed=1)) + - Spring Cloud Openfeign `2.0.4.RELEASE` + - Spring Cloud Dependencies `Finchley.SR4` + - Spring Cloud Release `Finchley.SR4` + - Spring Cloud Starter `Finchley.SR4` + - Spring Cloud Stream `Elmhurst.SR3` + - Spring Cloud Cloudfoundry `2.0.2.RELEASE` + - Spring Cloud Task `2.0.2.RELEASE` + - Spring Cloud Build `2.0.6.RELEASE` + - Spring Cloud Vault `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/32?closed=1)) + - Spring Cloud Zookeeper `2.0.2.RELEASE` + - Spring Cloud Config `2.0.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/65?closed=1)) + - Spring Cloud Aws `2.0.3.RELEASE` + - Spring Cloud Bus `2.0.2.RELEASE` + - Spring Cloud `Finchley.SR4` + - Spring Cloud Security `2.0.2.RELEASE` + - Spring Cloud Gateway `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/23?closed=1)) + - Spring Cloud Netflix `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/78?closed=1)) + - Spring Cloud Sleuth `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/61?closed=1)) + - Spring Cloud Consul `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/36?closed=1)) + - Spring Cloud Contract `2.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/52?closed=1)) + - Spring Cloud Function `1.0.2.RELEASE` + + +# Finchley.SR3 + +2019-02-22 + + - Spring Cloud Config `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/57?closed=1)) + - Spring Cloud Function `1.0.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/7?closed=1)) + - Spring Cloud Starter `Finchley.SR3` + - Spring Cloud Release `Finchley.SR3` + - Spring Cloud Stream `Elmhurst.SR2` + - Spring Cloud Sleuth `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/60?closed=1)) + - Spring Cloud Cloudfoundry `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-cloudfoundry/milestone/10?closed=1)) + - Spring Cloud Zookeeper `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/milestone/25?closed=1)) + - Spring Cloud Aws `2.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-aws/milestone/25?closed=1)) + - Spring Cloud Task `2.0.1.RELEASE` + - Spring Cloud Commons `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/55?closed=1)) + - Spring Cloud Build `2.0.5.RELEASE` + - Spring Cloud Openfeign `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/8?closed=1)) + - Spring Cloud Vault `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/26?closed=1)) + - Spring Cloud `Finchley.SR3` + - Spring Cloud Security `2.0.1.RELEASE` + - Spring Cloud Bus `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/33?closed=1)) + - Spring Cloud Contract `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/44?closed=1)) + - Spring Cloud Consul `2.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/36?closed=1)) + - Spring Cloud Gateway `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/19?closed=1)) + - Spring Cloud Dependencies `Finchley.SR3` + - Spring Cloud Netflix `2.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/72?closed=1)) + + # Finchley.SR2 2018-10-23 @@ -213,4 +273,4 @@ Spring Cloud Finchley builds on Spring Boot 2.0.x and is not compatible with 1.x - Spring Cloud Task `2.0.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-task/milestone/18?closed=1)) - Spring Cloud Vault `2.0.0.M3` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/11?closed=1)) - Spring Cloud Zookeeper `2.0.0.M2` - - Spring Cloud Commons `2.0.0.M3` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/34?closed=1)) + - Spring Cloud Commons `2.0.0.M3` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/34?closed=1)) \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Greenwich-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Greenwich-Release-Notes.md new file mode 100644 index 00000000..04fd25d6 --- /dev/null +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Greenwich-Release-Notes.md @@ -0,0 +1,308 @@ + + + +# Greenwich.SR6 + +2020-05-15 + +[All Issues](https://github.com/orgs/spring-cloud/projects/39) + + - Spring Cloud Config `2.1.8.RELEASE` + - Spring Cloud Commons `2.1.6.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/74?closed=1)) + + +# Greenwich.SR5 + +2020-02-01 + + - Spring Cloud Build `2.1.10.RELEASE` + - Spring Cloud Sleuth `2.1.7.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/71?closed=1)) + - Spring Cloud Consul `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/45?closed=1)) + - Spring Cloud Gateway `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/33?closed=1)) + - Spring Cloud Contract `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/60?closed=1)) + - Spring Cloud Netflix `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/87?closed=1)) + - Spring Cloud Gcp `1.1.5.RELEASE` + - Spring Cloud Config `2.1.6.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/73?closed=1)) + - Spring Cloud Starter Build `Greenwich.SR5` + - Spring Cloud Openfeign `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/20?closed=1)) + - Spring Cloud Commons `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/69?closed=1)) + - Spring Cloud Aws `2.1.4.RELEASE` + - Spring Cloud Vault `2.1.5.RELEASE` + - Spring Cloud Bus `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/41?closed=1)) + - Spring Cloud Kubernetes `1.0.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/17?closed=1)) + + +# Greenwich.SR4 + +2019-11-18 + + - Spring Cloud Security `2.1.5.RELEASE` + - Spring Cloud Starter `Greenwich.SR4` + - Spring Cloud Kubernetes `1.0.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/16?closed=1)) + - Spring Cloud Commons `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/65?closed=1)) + - Spring Cloud Openfeign `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/17?closed=1)) + - Spring Cloud Dependencies Parent `2.1.9.RELEASE` + - Spring Cloud Stream `Fishtown.SR4` + - Spring Cloud Contract `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/56?closed=1)) + - Spring Cloud Consul `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/43?closed=1)) + - Spring Cloud Vault `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/34?closed=1)) + - Spring Cloud Dependencies `Greenwich.SR4` + - Spring Cloud Zookeeper `2.1.4.RELEASE` + - Spring Cloud Task `2.1.3.RELEASE` + - Spring Cloud Bus `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/41?closed=1)) + - Spring Cloud Release `Greenwich.SR4` + - Spring Cloud Cloudfoundry `2.1.4.RELEASE` + - Spring Cloud Build `2.1.9.RELEASE` + - Spring Cloud Netflix `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/83?closed=1)) + - Spring Cloud `Greenwich.SR4` + - Spring Cloud Sleuth `2.1.6.RELEASE` + - Spring Cloud Config `2.1.5.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/70?closed=1)) + - Spring Cloud Gateway `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/28?closed=1)) + - Spring Cloud Function `2.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/18?closed=1)) + - Spring Cloud Gcp `1.1.4.RELEASE` + - Spring Cloud Starter Parent `Greenwich.SR4` + - Spring Cloud Aws `2.1.4.RELEASE` + + +# Greenwich.SR3 + +2019-09-10 + + - Spring Cloud Commons `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/62?closed=1)) + - Spring Cloud Openfeign `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/14?closed=1)) + - Spring Cloud Security `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-security/milestone/22?closed=1)) + - Spring Cloud Stream `Fishtown.SR4` + - Spring Cloud Kubernetes `1.0.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/13?closed=1)) + - Spring Cloud Build `2.1.7.RELEASE` + - Spring Cloud Zookeeper `2.1.3.RELEASE` + - Spring Cloud Gateway `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/26?closed=1)) + - Spring Cloud Dependencies `Greenwich.SR3` + - Spring Cloud Netflix `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/81?closed=1)) + - Spring Cloud Bus `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/40?closed=1)) + - Spring Cloud Dependencies Parent `2.1.7.RELEASE` + - Spring Cloud Task `2.1.3.RELEASE` + - Spring Cloud Starter `Greenwich.SR3` + - Spring Cloud Cloudfoundry `2.1.3.RELEASE` + - Spring Cloud `Greenwich.SR3` + - Spring Cloud Vault `2.1.3.RELEASE` + - Spring Cloud Config `2.1.4.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/68?closed=1)) + - Spring Cloud Release `Greenwich.SR3` + - Spring Cloud Function `2.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/18?closed=1)) + - Spring Cloud Consul `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/42?closed=1)) + - Spring Cloud Starter Parent `Greenwich.SR3` + - Spring Cloud Gcp `1.1.3.RELEASE` + - Spring Cloud Sleuth `2.1.3.RELEASE` + - Spring Cloud Aws `2.1.3.RELEASE` + - Spring Cloud Contract `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/53?closed=1)) + + +# Greenwich.SR2 + +2019-06-21 + + - Spring Cloud Task `2.1.2.RELEASE` + - Spring Cloud Config `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/66?closed=1)) + - Spring Cloud Stream `Fishtown.SR3` ([issues](https://github.com/spring-cloud/spring-cloud-stream/milestone/60?closed=1)) + - Spring Cloud `Greenwich.SR2` + - Spring Cloud Sleuth `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/62?closed=1)) + - Spring Cloud Commons `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/61?closed=1)) + - Spring Cloud Openfeign `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/12?closed=1)) + - Spring Cloud Release `Greenwich.SR2` + - Spring Cloud Kubernetes `1.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/11?closed=1)) + - Spring Cloud Aws `2.1.2.RELEASE` + - Spring Cloud Vault `2.1.2.RELEASE` + - Spring Cloud Function `2.0.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/18?closed=1)) + - Spring Cloud Bus `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/37?closed=1)) + - Spring Cloud Build `2.1.6.RELEASE` + - Spring Cloud Zookeeper `2.1.2.RELEASE` + - Spring Cloud Dependencies `Greenwich.SR2` + - Spring Cloud Gcp `1.1.2.RELEASE` + - Spring Cloud Contract `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/51?closed=1)) + - Spring Cloud Consul `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/41?closed=1)) + - Spring Cloud Security `2.1.3.RELEASE` + - Spring Cloud Gateway `2.1.2.RELEASE` + - Spring Cloud Cloudfoundry `2.1.2.RELEASE` + - Spring Cloud Netflix `2.1.2.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/76?closed=1)) + - Spring Cloud Starter `Greenwich.SR2` + + +# Greenwich.SR1 + +2019-03-05 + + - Spring Cloud Netflix `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/75?closed=1)) + - Spring Cloud Stream `Fishtown.SR2` + - Spring Cloud Gcp `1.1.1.RELEASE` + - Spring Cloud Cloudfoundry `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-cloudfoundry/milestone/12?closed=1)) + - Spring Cloud Build `2.1.3.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-build/milestone/24?closed=1)) + - Spring Cloud Commons `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-commons/milestone/58?closed=1)) + - Spring Cloud `Greenwich.SR1` + - Spring Cloud Openfeign `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/11?closed=1)) + - Spring Cloud Task `2.1.1.RELEASE` + - Spring Cloud Sleuth `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/59?closed=1)) + - Spring Cloud Aws `2.1.1.RELEASE` + - Spring Cloud Release `Greenwich.SR1` + - Spring Cloud Zookeeper `2.1.1.RELEASE` + - Spring Cloud Bus `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/36?closed=1)) + - Spring Cloud Vault `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/30?closed=1)) + - Spring Cloud Kubernetes `1.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/10?closed=1)) + - Spring Cloud Dependencies `Greenwich.SR1` + - Spring Cloud Contract `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/49?closed=1)) + - Spring Cloud Consul `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/38?closed=1)) + - Spring Cloud Gateway `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/22?closed=1)) + - Spring Cloud Function `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/17?closed=1)) + - Spring Cloud Starter `Greenwich.SR1` + - Spring Cloud Config `2.1.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/61?closed=1)) + - Spring Cloud Security `2.1.2.RELEASE` ([2.1.1 issues + documentation fixes](https://github.com/spring-cloud/spring-cloud-security/issues?q=is%3Aclosed+milestone%3A2.1.1.RELEASE)) + + +# Greenwich.RELEASE + +2019-01-22 + +Spring Cloud Greenwich builds on Spring Boot 2.1.x + +For a complete list of the issues resolved in this release see the [Greenwich.RELEASE GitHub Project](https://github.com/orgs/spring-cloud/projects/19). + + - Spring Cloud Sleuth `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/58?closed=1)) + - Spring Cloud Gcp `1.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gcp/milestone/9?closed=1)) + - Spring Cloud Netflix `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/74?closed=1)) + - Spring Cloud Consul `2.1.0.RELEASE` + - Spring Cloud Gateway `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/21?closed=1)) + - Spring Cloud Function `2.0.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/14?closed=1)) + - Spring Cloud Stream `Fishtown.RELEASE` ([Announcement](https://spring.io/blog/2019/01/08/announcing-general-availability-of-spring-cloud-stream-fishtown-release-2-1-0-release)) + - Spring Cloud Zookeeper `2.1.0.RELEASE` + - Spring Cloud Cloudfoundry `2.1.0.RELEASE` + - Spring Cloud Aws `2.1.0.RELEASE` + - Spring Cloud Task `2.1.0.RELEASE` ([Announcement](https://spring.io/blog/2019/01/22/spring-cloud-task-2-1-0-ga-is-now-available)) + - Spring Cloud Kubernetes `1.0.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/9?closed=1)) + - Spring Cloud Contract `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/48?closed=1)) + - Spring Cloud Security `2.1.0.RELEASE` + - Spring Cloud Bus `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/35?closed=1)) + - Spring Cloud Config `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/60?closed=1)) + - Spring Cloud Vault `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/29?closed=1)) + - Spring Cloud Openfeign `2.1.0.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/milestone/10?closed=1)) + - Spring Cloud Commons `2.1.0.RELEASE` + + +# Greenwich.RC2 + +2018-12-21 + +See all issues assigned to Greenwich.RC2 at the [Github Project](https://github.com/orgs/spring-cloud/projects/12) + + - Spring Cloud Security `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-security/issues?q=is%3Aclosed+milestone%3A2.1.0.RC3)) + - Spring Cloud Vault `2.1.0.RC1` + - Spring Cloud Contract `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/46?closed=1)) + - Spring Cloud Kubernetes `1.0.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/8?closed=1)) + - Spring Cloud Commons `2.1.0.RC2` + - Spring Cloud Zookeeper `2.1.0.RC2` + - Spring Cloud Openfeign `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/issues?q=is%3Aclosed+milestone%3A2.1.0.RC3)) + - Spring Cloud Aws `2.1.0.RC1` + - Spring Cloud Starter `Greenwich.RC2` + - Spring Cloud Bus `2.1.0.RC3` + - Spring Cloud Sleuth `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/issues?q=is%3Aclosed+milestone%3A2.1.0.RC3)) + - Spring Cloud Netflix `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/73?closed=1)) + - Spring Cloud Stream `Fishtown.RC4` + - Spring Cloud Gcp `1.1.0.RC2` + - Spring Cloud Cloudfoundry `2.1.0.RC2` + - Spring Cloud Build `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-build/milestone/21?closed=1)) + - Spring Cloud Dependencies `Greenwich.RC2` + - Spring Cloud Task `2.1.0.M2` + - Spring Cloud Release `Greenwich.RC2` + - Spring Cloud Function `2.0.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/15?closed=1)) + - Spring Cloud `Greenwich.RC2` + - Spring Cloud Consul `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-consul/milestone/37?closed=1)) + - Spring Cloud Config `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/59?closed=1)) + - Spring Cloud Gateway `2.1.0.RC3` ([issues](https://github.com/spring-cloud/spring-cloud-gateway/milestone/20?closed=1)) + +# Greenwich.RC1 + +Spring Cloud Greenwich builds on Spring Boot 2.1.x and is not compatible with 2.0.x or 1.x.y. + +See all issues assigned to Greenwich.RC1 at the [Github Project](https://github.com/orgs/spring-cloud/projects/18) + +2018-12-12 + + - Spring Cloud Kubernetes `1.0.0.RC1` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/issues?q=is%3Aclosed+milestone%3A1.0.0.RC1)) + - Spring Cloud Security `2.1.0.RC2` + - Spring Cloud Vault `2.1.0.RC1` ([issues](https://github.com/spring-cloud/spring-cloud-vault/milestone/27?closed=1)) + - Spring Cloud Commons `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-commons/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Contract `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Openfeign `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-openfeign/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Zookeeper `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-zookeeper/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Stream `Fishtown.RC2` + - Spring Cloud Starter `Greenwich.RC1` + - Spring Cloud Aws `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-aws/milestone/24?closed=1)) + - Spring Cloud Sleuth `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Bus `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-bus/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Netflix `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Gcp `1.1.0.RC1` ([issues](https://github.com/spring-cloud/spring-cloud-gcp/milestone/10?closed=1)) + - Spring Cloud Cloudfoundry `2.1.0.RC2` + - Spring Cloud Build `2.1.0.RC3` + - Spring Cloud Dependencies `Greenwich.RC1` + - Spring Cloud Function `2.0.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/13?closed=1)) + - Spring Cloud Task `2.1.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-task/milestone/29?closed=1)) + - Spring Cloud Release `Greenwich.RC1` + - Spring Cloud Consul `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-config/milestone/59?closed=1)) + - Spring Cloud Config `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-config/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud Gateway `2.1.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-config/issues?q=is%3Aclosed+milestone%3A2.1.0.RC1)) + - Spring Cloud `Greenwich.RC1` + +# Greenwich.M3 + +2018-11-19 + + - Spring Cloud `Greenwich.M3` + - Spring Cloud Zookeeper `2.1.0.M1` + - Spring Cloud Gateway `2.1.0.M3` + - Spring Cloud Bus `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/31?closed=1)) + - Spring Cloud Consul `2.1.0.M2` + - Spring Cloud Stream `Fishtown.RC2` + - Spring Cloud Aws `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-aws/milestone/24?closed=1)) + - Spring Cloud Release `Greenwich.M3` + - Spring Cloud Commons `2.1.0.M2` + - Spring Cloud Vault `2.1.0.M2` + - Spring Cloud Netflix `2.1.0.M3` + - Spring Cloud Openfeign `2.1.0.M2` + - Spring Cloud Kubernetes `1.0.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/6?closed=1)) + - Spring Cloud Gcp `1.1.0.M3` + - Spring Cloud Config `2.1.0.M3` + - Spring Cloud Dependencies `Greenwich.M3` + - Spring Cloud Contract `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/38?closed=1)) + - Spring Cloud Sleuth `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/54?closed=1)) + - Spring Cloud Build `2.1.0.RC2` + - Spring Cloud Security `2.1.0.M1` + - Spring Cloud Function `2.0.0.RC2` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/13?closed=1)) + - Spring Cloud Task `2.1.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-task/milestone/29?closed=1)) + - Spring Cloud Cloudfoundry `2.1.0.M1` + - Spring Cloud Starter `Greenwich.M3` + +# Greenwich.M2 + +2018-11-18 + + - Spring Cloud Zookeeper `2.1.0.M1` + - Spring Cloud Bus `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-bus/milestone/31?closed=1)) + - Spring Cloud Consul `2.1.0.M2` + - Spring Cloud Gateway `2.1.0.M2` + - Spring Cloud Stream `Fishtown.RC1` + - Spring Cloud Aws `2.0.1.RELEASE` ([issues](https://github.com/spring-cloud/spring-cloud-aws/milestone/24?closed=1)) + - Spring Cloud Commons `2.1.0.M2` + - Spring Cloud `Greenwich.M2` + - Spring Cloud Release `Greenwich.M2` + - Spring Cloud Vault `2.1.0.M2` + - Spring Cloud Netflix `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-netflix/milestone/70?closed=1)) + - Spring Cloud Openfeign `2.1.0.M2` + - Spring Cloud Kubernetes `1.0.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-kubernetes/milestone/6?closed=1)) + - Spring Cloud Dependencies `2.1.0.RC2` + - Spring Cloud Gcp `1.1.0.M3` + - Spring Cloud Config `2.1.0.M2` + - Spring Cloud Contract `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-contract/milestone/38?closed=1)) + - Spring Cloud Sleuth `2.1.0.M2` ([issues](https://github.com/spring-cloud/spring-cloud-sleuth/milestone/54?closed=1)) + - Spring Cloud Build `2.1.0.RC2` + - Spring Cloud Security `2.1.0.M1` + - Spring Cloud Task `2.1.0.M1` ([issues](https://github.com/spring-cloud/spring-cloud-task/milestone/29?closed=1)) + - Spring Cloud Function `2.0.0.RC1` ([issues](https://github.com/spring-cloud/spring-cloud-function/milestone/12?closed=1)) + - Spring Cloud Cloudfoundry `2.1.0.M1` + - Spring Cloud Starter `Greenwich.M2` \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Hoxton-Release-Notes.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Hoxton-Release-Notes.md new file mode 100644 index 00000000..670063c5 --- /dev/null +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-Cloud-Hoxton-Release-Notes.md @@ -0,0 +1 @@ +The Hoxton Release Notes have moved to https://github.com/spring-cloud/spring-cloud-release/wiki/Spring-Cloud-Hoxton-Release-Notes \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-IO-Platform-Compatibility.md b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-IO-Platform-Compatibility.md index 3d425956..96dc7774 100644 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-IO-Platform-Compatibility.md +++ b/releaser-core/src/test/resources/projects/spring-cloud-wiki/Spring-IO-Platform-Compatibility.md @@ -3,3 +3,5 @@ | Athens | 1.4.x | Camden | | Brussels | 1.5.x | Dalston & Edgware | | Cairo | 2.0.x | Finchley | + +The Spring IO Platform has been discontinued in favor of Spring Boot. \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/COMMIT_EDITMSG b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/COMMIT_EDITMSG deleted file mode 100644 index abfb3053..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -adding Spring Clouud 2020.0 release notes diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/HEAD b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/HEAD deleted file mode 100644 index cb089cd8..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/config b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/config deleted file mode 100644 index 28304c42..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/config +++ /dev/null @@ -1,13 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = true -[remote "origin"] - url = git@github.com:spring-projects/spring-cloud.wiki.git - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/description b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/description deleted file mode 100644 index 498b267a..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/applypatch-msg.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/applypatch-msg.sample deleted file mode 100755 index a5d7b84a..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/commit-msg.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/commit-msg.sample deleted file mode 100755 index bc8d07cb..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/post-update.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/post-update.sample deleted file mode 100755 index ec17ec19..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-applypatch.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-applypatch.sample deleted file mode 100755 index 4142082b..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-commit.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-commit.sample deleted file mode 100755 index 6c55be87..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-commit.sample +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1; then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0; then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-push.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-push.sample deleted file mode 100755 index 29d0a57a..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-push.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -while read local_ref local_sha remote_ref remote_sha; do - if [ "$local_sha" = $z40 ]; then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ]; then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=$(git rev-list -n 1 --grep '^WIP' "$range") - if [ -n "$commit" ]; then - echo >&2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-rebase.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-rebase.sample deleted file mode 100755 index e2532c61..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-rebase.sample +++ /dev/null @@ -1,165 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2; then - topic="refs/heads/$2" -else - topic=$(git symbolic-ref HEAD) || - exit 0 # we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) ;; - -*) - exit 0 # we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=$(git rev-list --pretty=oneline ^master "$topic") -if test -z "$not_in_master"; then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 # we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=$(git rev-list ^master "^$topic" ${publish} | sort) -only_next_2=$(git rev-list ^master ${publish} | sort) -if test "$only_next_1" = "$only_next_2"; then - not_in_topic=$(git rev-list "^$topic" master) - if test -z "$not_in_topic"; then - echo >&2 "$topic is already up to date with master" - exit 1 # we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=$(git rev-list --pretty=oneline ^${publish} "$topic") - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -<<\DOC_END - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". - -DOC_END diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-receive.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-receive.sample deleted file mode 100755 index 66107d96..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/pre-receive.sample +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT"; then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"; do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - ;; - esac - i=$((i + 1)) - done -fi diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/prepare-commit-msg.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/prepare-commit-msg.sample deleted file mode 100755 index 10fa14c5..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/update.sample b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/update.sample deleted file mode 100755 index 68a5e634..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/hooks/update.sample +++ /dev/null @@ -1,127 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in -refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; -refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; -refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname >/dev/null 2>&1; then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; -refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; -refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; -refs/remotes/*,commit) - # tracking branch - ;; -refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; -*) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/index b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/index deleted file mode 100644 index a7171b93a32cbedcce7af3a11c023801cfaf68dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 985 zcmZ?q402{*U|<4b&gg4TE}PZnAB(_imc7B=~vELLUZ|;DVyeymVdXocz)h zT_Xb{13d%Xpwyhy#Nt$4zxN(7yiDHjqUV3T{nl*4gf$f=f!41uxC#d#F3V!rD{UY$dr-=t=s7mh6 zytl^GSJ0M08^s={qRfht{5)JXLHw1F`ewiCx<>&p8WesU9Z647!%sI~K%k8J*B45}#pa!Jf7#`G7|BCz>;GSgu+)Sl<4_UJbEmLK|f{L^H~YpM?Mno*)` zjowF1(Cl$dNiR<Gyk95C#T~b$^4%dvZy~= z_J%wyTR3afK|Ym zK^ba~r@wAMPGU(~eo?NjbAE0?Vo7FFW=>{FB|LdEgao;|0#k$}gQbE2*On(d&$1(K nP557bAYFA 1540806486 +0100 clone: from git@github.com:spring-projects/spring-cloud.wiki.git -3fa536308bcdaf5c4670c0c438ead6b3cad990da 1fa2c37fe634da1c5e640dcb461711d356f660f2 Ryan Baxter 1639686770 -0500 commit: adding Spring Clouud 2020.0 release notes diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/heads/master b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/heads/master deleted file mode 100644 index 15e49d8a..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 3fa536308bcdaf5c4670c0c438ead6b3cad990da Marcin Grzejszczak 1540806486 +0100 clone: from git@github.com:spring-projects/spring-cloud.wiki.git -3fa536308bcdaf5c4670c0c438ead6b3cad990da 1fa2c37fe634da1c5e640dcb461711d356f660f2 Ryan Baxter 1639686770 -0500 commit: adding Spring Clouud 2020.0 release notes diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/remotes/origin/HEAD b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/remotes/origin/HEAD deleted file mode 100644 index 03769567..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/logs/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 3fa536308bcdaf5c4670c0c438ead6b3cad990da Marcin Grzejszczak 1540806486 +0100 clone: from git@github.com:spring-projects/spring-cloud.wiki.git diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/1f/a2c37fe634da1c5e640dcb461711d356f660f2 b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/1f/a2c37fe634da1c5e640dcb461711d356f660f2 deleted file mode 100644 index 8fbe5806..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/1f/a2c37fe634da1c5e640dcb461711d356f660f2 +++ /dev/null @@ -1 +0,0 @@ -x•ŽkN1 „ůťSřTnN"!„ŕpÇq RwSĄY·gË ř5ŁŃ7Ł‘ľ,§ 6ř»9Tˇxő(JTBŞś±µŘ)Ú™|lŢZ9jĘćÂC× ®qpä0©Ü‚xŠ((Ţ%ĺJŠל±˛ám~ôŻ?ĽÂ3Ođ0Ęźyú\ľöµôĺŽä2%Šá˘ŮÓýáŤ˙×p­§őŢ.ă&/çľm,Z< =+_Ö>őj~äQĚ \ No newline at end of file diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/35/e014e66523b759069c13bdb290a453e75ca14c b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/35/e014e66523b759069c13bdb290a453e75ca14c deleted file mode 100644 index 7d124dbe22ed1c6fdde7eda7156f4ada1595c4c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6550 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 IACw5j=py{Cw*UYD diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/b4/e40ce66b58da90ff7fc067259a647f422c1e89 b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/objects/b4/e40ce66b58da90ff7fc067259a647f422c1e89 deleted file mode 100644 index 6cc45a7f828e76b2eb9a1d220be13a3b0251530a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmV-$0gwK80V^p=O;s>8vtTeZFfcPQQSivmP1Q>*PR`6s$xmiDajPYuK`;N{l3%~2 z()51%G(SG|7OF6~peQphUDr7$zcfYH$iT=z&p+?HUH@a5F0 z(1ME|vV0t8S%c?c)9;d)Q;g{hpaD#LI(d%29=Z1~P$kH89Awym?r!Xcg@WIC-=$ectgz-*aa6-t){^EPVFk8+B_4g5UuE{euDiyGHy65*VKVkO8OwbN~hb6MzN4{s%4? z@c@MX3nFm+AEW>>04;zXzyM$Zu>OMsjQ_y}-~sRg_yK|dVSp$=0w4*H0muOq{-F#; zb$|vy3!n?o0~i2|0VV)5fYm>2!D#o7mtb`IhbtKW!wujLcnkOl@Bst@f&d|aP(au} zBEk3{(STS$!au%%@&Azwu2TV-fNVe>pb$_DCu1|FH~M0jvRj1GWIW|JVoPG2rAM z=U}`9Tmh~Dw}3mq1K{!h$_56s1A_-30)S@z2Q)AOz5EYAFEF4N7#@HaKn9=&&;sZH z3;@P|FoBU3zy{z10Byi{0DJ%efY3igz$gk31Be5p0MY=U5tuwc5uglE`3KMmObeh5 z(D?_@3=C)nW&|(>m;%fJKr=8KfIR?c1?KnH!UaAOC0q(67e zs66byww@_CViv%QWq;%OWn}UE*=yB~a^1>3j6yVctEqCd_ZKh$w7$)(mW6(AyO0|A zk1Gjxxucrs(&Rcv&MV>?-E> zsd-&88p`FX{<1CH)%_skaFy(-4j8){6DsPb=s#+!ex8i&?p=R19Mxi%$8i{Z1#R(^a-P-=vzZ>YcEMI&N;;0i-N`pkaiZ(Bj((ylSrn1uB9!)6UP(>1aigzXa^!51rc47ykMfK-o=Kdps+^bCgCnc|jtOAAORZ8G@)bD}_ksRbB zS6O~pI^*Mbr9sNL1s|%31P4vl!_sWT#IKqY2=j|M03dUHp}d&7tD+VPmf26=hB~6 z6ALRe{y;4B{w?8cq*un(7omfvLu@Skh0j^ePhYvDM?1@@8*|z^h$Jw?g3sc-zhBp7 zOo1E&c?eNEgH()E>sfWaoLY?!gJLIYyaogdo=Rr5PW09of(BU)^WmA3SzN?+kob)) zn;(PmZvzTlahO6`lX%2JHgkdo@Amr&^Gb?{&96@DG^(L$@0E7>l8=yc76mEFq>+{= zzOa0#lkHzvw^(s+-VLH+s54-5ul}ZjxZi+p!lUvo%jyT!baJum7Zic!b|PiDlX3yW zEpch;&%2u_{1q5Z=k)O|ENybFdi~4PjYUIGgWW%xVQ=2ZUZnd^d%GypIOM=S<=#c) zBHILnDx4->3duq*x z!V$Tz#8j|YdLFx1YJWwPgi~z43#ejC*QoHmV<7Ml%gx;^p}iYk+9L{73zfLjWXKcm z{Bh=C(TVZ(FjS*t{)zdE21caA$_{&6ZIvcio)pTTxZ8DNDaMy0e=TD?a6Syax7+bkwv!3^QGhl>j2ilyuNGM)?nss$(+fKgZUr}p#&cmhZh;U zHayHb*58`x7N@bEwiwdg6&A7N=)Pj93JY!(RU^K->urDXH81v4W6~{4)wCU45d#yy z)!nK7y*A=}5e6bFzWX|x^M;wTujQ@}>-~o@-gh#r^7w7`XBnwP8^b5XD=WdbqN_fv zzhu|5>ADg`X<4I_M*hwdJ(<;DXZ~B+B&eG_wox#Hn@>|zcYEN#F7x+qNWq6riOOnz zmEcxCH#OB3_GpObNc&9MZ_nr$o6755(^i->hv-cvexI3gu{WHI_R#2&O(m-ehm2ea zf&HDo1(h!RIO?MUbo;fH!&>BEE=>6(>1%y_f&N<2<`;7sj!zXUpM||u &R>r!nO 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®01fqsy(?fS)=E>qTvfeC{B3QZtKWU-qc@kIyu4fp! zBEk^3epcCe%^XCW>f=`$>IUuEw1%}8u^f!TM~-utqX^!jD+?6iBeQ%dX}*&Y-y-wi z?eun`_BT?Juq>O# zv2V;~@<$dtIas6QoEvvDl_IqHkef-)OKg^Yd@}kMZFmJ_=b`hG-@1=U3BK%cKI3ye zG7d0JoufY)wU`Vg*0fc1a}z|qI36PnPig!SN?F40@i39gRgjtEn_Xfn7h>>G{XQn& zgLT5>tTr~wM>(OpNn)${Gu}I2s#oweXl}PwOTIhEsy5bgT=*o%AXC2*G5{OM9?T*= zoqEX^MkhEwkC42Gd`VNm7!7kNP}dUJ!U-wZi!U^9*(A_kDG3+Wm_t@_o|ukQe|bjD zk^beGpJKT&?c|Vj#xxIh7B#lL6koX*Ph;Jdl`iIOWlD?uv5gH;u46IEiqHz>FYz`! zB;A7t_xe`M>JAVzY|epFLe-y}VHxj~{laK0s;=IC_Ip{ouTr&gL1FilU^u}gP$gGJ zc55bFPe9Bnax8PnIP9CRU{AB~2ZEUgZzCi&-Z?ajqbyL@d-Pg&;-yEKeb}Y1=$n{_ z_8TCPmBA(L(H1kzsdfgJRHY(#&tt-OM{Sm~SBN>*q@rt@*mB-X07DPMzDH_5w4Rhf zS<%Y$ppZW+wI=AvewG+m9E!fKOBTL+Sv+G%t%ICTe24oekzdTx5d+qt`#3U(zKGb? zpM_(+MX#957oGE|qiYW*OTd_nmYefHW}d3fQRcuta%tqAC-UG?t`3u!);f7EU%F^* zKiij?hW55DwB`XqlTGaR;^NxHreb3kifQB8#jmKC*<8=8wc)fgltPWp`?<+`Q7UC_ z`$N@rg{c?EqvnYQuH?Gx+M&cHoa87+#rFlryNg^nKJF}rmo>R48RCe3TQZWPi8wl% zijKTQZ;{>D)!0^}+ZSX!#lAoz5$j|2A&W}Zc8qgfF3eiNA12e3rsKs4rh*w44K=Mr z>8;Ic_Z?3mD;0fS&Wc*E9X}CU=e!;UHrInFQF1&IH2N`k%9Xv42|6#u}y)Npnl{SKB}3BSadebeb9g`=a3J?CG>lEvDKo`$5*sMtB-W=?Xro5 j;vC?R9r7NZO~akKdY{Y^k#S>D38bvNMQci9;cWarvXK2# diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/packed-refs b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/packed-refs deleted file mode 100644 index 1834b429..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -3fa536308bcdaf5c4670c0c438ead6b3cad990da refs/remotes/origin/master diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/heads/master b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/heads/master deleted file mode 100644 index 68b9c9fc..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -1fa2c37fe634da1c5e640dcb461711d356f660f2 diff --git a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/remotes/origin/HEAD b/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28ff..00000000 --- a/releaser-core/src/test/resources/projects/spring-cloud-wiki/git/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master