Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
2.6.0.Final release preparations
  • Loading branch information
Ladicek committed Dec 5, 2019
1 parent eef4d57 commit 24b15f3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@

![Thorntail: Rightsize your JavaEE Applications](http://thorntail.io/images/thorntail_horizontal_rgb_600px_reverse.png)

> Issues for v2/master are being tracked using the [JBoss issue tracking system](https://issues.jboss.org/projects/THORN/issues?filter=allopenissues) (JIRA).
> Issues for v2/master are being tracked using the [Red Hat issue tracking system](https://issues.redhat.com/projects/THORN/issues?filter=allopenissues) (JIRA).
> Issues for v4 are being tracked in GitHub Issues.
> Bug reports and feature requests are greatly appreciated.
Expand Down
2 changes: 1 addition & 1 deletion boms/bom-certified/pom.xml
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>io.thorntail</groupId>
<artifactId>boms</artifactId>
<version>2.5.1.Final-SNAPSHOT</version>
<version>2.6.1.Final-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion docs/howto/pom.xml
Expand Up @@ -15,7 +15,7 @@
<packaging>pom</packaging>

<properties>
<version.thorntail>2.5.1.Final-SNAPSHOT</version.thorntail>
<version.thorntail>2.6.1.Final-SNAPSHOT</version.thorntail>
<version.maven-war-plugin>2.2</version.maven-war-plugin>
<version.maven-failsafe-plugin>2.19.1</version.maven-failsafe-plugin>
<version.build-helper-maven-plugin>1.9.1</version.build-helper-maven-plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -35,7 +35,7 @@
<version.wildfly.swarm.checkstyle>3</version.wildfly.swarm.checkstyle>

<!-- ===== Thorntail and Config APIs ===== -->
<version.certified-community>2.5.0.Final</version.certified-community>
<version.certified-community>2.6.0.Final</version.certified-community>
<version.wildfly.swarm>${project.version}</version.wildfly.swarm>

<version.thorntail.fraction.plugin>98</version.thorntail.fraction.plugin>
Expand Down
8 changes: 4 additions & 4 deletions release/HOWTO_RELEASE.md
Expand Up @@ -7,7 +7,7 @@
* Trigger a build of https://ci.wildfly-swarm.io/view/Release/job/thorntail-release/build?delay=0sec
* Specifying release and next version (with -SNAPSHOT suffix), for example, 2.0.0.Final and 2.0.1.Final-SNAPSHOT.

* Wait until the build updates the `master` branch with the next development version and then update `/boms/bom-certified/pom.xml` and `/docs/howto/pom.xml` with this version as well, because it doesn't happen in the above command (maybe add something to CI job to do this?).
* Wait until the build updates the `master` branch with the next development version and then update `/boms/bom-certified/pom.xml` and `/docs/howto/pom.xml` with this version as well, because it doesn't happen in the above command (maybe add something to CI job to do this?). Updating `version.certified-community` in `/pom.xml` is also a good idea, though it isn't stricly required.

* Wait for release to be available in Maven Central before continuing with examples and JIRA releases

Expand Down Expand Up @@ -65,13 +65,13 @@

# JIRA Releasing

* Go to https://issues.jboss.org/projects/THORN?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=unreleased and select `...` under Actions for the row matching the release we are performing.
* Go to https://issues.redhat.com/projects/THORN?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=unreleased and select `...` under Actions for the row matching the release we are performing.

* Select `Release` from the drop down.

* Set the current date, which is the date of the release and then click `Release`.

* Open https://issues.jboss.org/issues/?jql=project%20%3D%20THORN%20AND%20status%20in%20(Resolved%2C%20%22Ready%20for%20QA%22%2C%20%22QA%20In%20Progress%22%2C%20Verified)%20AND%20fixVersion%20%3D%20EMPTY to find all issues that have been resolved without a `fixVersion` set.
* Open https://issues.redhat.com/issues/?jql=project%20%3D%20THORN%20AND%20status%20in%20(Resolved%2C%20%22Ready%20for%20QA%22%2C%20%22QA%20In%20Progress%22%2C%20Verified)%20AND%20fixVersion%20%3D%20EMPTY to find all issues that have been resolved without a `fixVersion` set.

* Select `Tools` from top right corner, then `all {x} issues` under `Bulk Change`.

Expand All @@ -81,7 +81,7 @@

* Review the changes it will make and select `Confirm`. You will need to acknowledge the updates once they're complete.

* Open https://issues.jboss.org/issues/?jql=project%20%3D%20THORN%20AND%20status%20!%3D%20Closed%20AND%20fixVersion%20%3D%202.0.0.Final replacing the version that we're releasing in the query.
* Open https://issues.redhat.com/issues/?jql=project%20%3D%20THORN%20AND%20status%20!%3D%20Closed%20AND%20fixVersion%20%3D%202.0.0.Final replacing the version that we're releasing in the query.

* Once again we need to perform a `Bulk Update` of all the issues, which should now include those that we set the `fixVersion` on in the previous steps.

Expand Down
8 changes: 4 additions & 4 deletions release/fetch-notes.js
Expand Up @@ -2,7 +2,7 @@ var https = require('https')

var version = process.argv[2];

https.get( 'https://issues.jboss.org/rest/api/latest/search?maxResults=100&jql=project=THORN+AND+fixVersion=' + version + '+order+by+key+asc', function(result, err) {
https.get( 'https://issues.redhat.com/rest/api/latest/search?maxResults=100&jql=project=THORN+AND+fixVersion=' + version + '+order+by+key+asc', function(result, err) {

var buf = "";

Expand Down Expand Up @@ -32,22 +32,22 @@ https.get( 'https://issues.jboss.org/rest/api/latest/search?maxResults=100&jql=p
} );

console.log( "== Changelog" );
console.log( "Release notes for " + version + " are available https://issues.jboss.org/secure/ReleaseNote.jspa?projectId=12317020&version=" + jiraVersion + "[here]." );
console.log( "Release notes for " + version + " are available https://issues.redhat.com/secure/ReleaseNote.jspa?projectId=12317020&version=" + jiraVersion + "[here]." );
console.log();

Object.keys( partitions ).forEach( function(type) {
console.log( "=== " + type );
partitions[type].forEach( function(e) {
if ( e.fields.resolution ) {
console.log( '* [https://issues.jboss.org/browse/' + e.key + '[' + e.key + ']] ' + e.fields.summary + ' (' + e.fields.resolution.name + ')' );
console.log( '* [https://issues.redhat.com/browse/' + e.key + '[' + e.key + ']] ' + e.fields.summary + ' (' + e.fields.resolution.name + ')' );
}
} );
console.log();
} );
if (breaking.length > 0) {
console.log("== Breaking changes");
breaking.forEach(function(e) {
console.log('* [https://issues.jboss.org/browse/' + e.key + '[' + e.key + ']] ' + e.fields.summary);
console.log('* [https://issues.redhat.com/browse/' + e.key + '[' + e.key + ']] ' + e.fields.summary);
});
}
} );
Expand Down

0 comments on commit 24b15f3

Please sign in to comment.