diff --git a/README.md b/README.md index 0ccb93c9f3..e29ad4c15a 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/boms/bom-certified/pom.xml b/boms/bom-certified/pom.xml index 231fcb01c8..8b7f8474f0 100644 --- a/boms/bom-certified/pom.xml +++ b/boms/bom-certified/pom.xml @@ -10,7 +10,7 @@ io.thorntail boms - 2.5.1.Final-SNAPSHOT + 2.6.1.Final-SNAPSHOT ../ diff --git a/docs/howto/pom.xml b/docs/howto/pom.xml index 59109e4733..1531f8714d 100644 --- a/docs/howto/pom.xml +++ b/docs/howto/pom.xml @@ -15,7 +15,7 @@ pom - 2.5.1.Final-SNAPSHOT + 2.6.1.Final-SNAPSHOT 2.2 2.19.1 1.9.1 diff --git a/pom.xml b/pom.xml index a5bc09f2fa..b79bbf3ca0 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,7 @@ 3 - 2.5.0.Final + 2.6.0.Final ${project.version} 98 diff --git a/release/HOWTO_RELEASE.md b/release/HOWTO_RELEASE.md index 27d9a1e362..3022df6e7b 100644 --- a/release/HOWTO_RELEASE.md +++ b/release/HOWTO_RELEASE.md @@ -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 @@ -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`. @@ -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. diff --git a/release/fetch-notes.js b/release/fetch-notes.js index 97e249c583..32f7a0c5a8 100644 --- a/release/fetch-notes.js +++ b/release/fetch-notes.js @@ -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 = ""; @@ -32,14 +32,14 @@ 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(); @@ -47,7 +47,7 @@ https.get( 'https://issues.jboss.org/rest/api/latest/search?maxResults=100&jql=p 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); }); } } );