Skip to content

Commit

Permalink
Update Jira version to 10.0.0 and fix version regex in the find-lates…
Browse files Browse the repository at this point in the history
…t-releases.sh (#407)

Co-authored-by: Yevhen Hrytsai <[email protected]>
  • Loading branch information
yevhenhr and Yevhen Hrytsai authored Sep 7, 2024
1 parent fc73dd2 commit 7d24faf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
strategy:
matrix:
java-version: [17, 21]
jira-version: [10.0.0-m0010]
jira-version: [10.0.0]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion bin/release-check/find-latest-releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pac_search_query="https://packages.atlassian.com/maven/${GROUP}/${ARTIFACT}/mave
search_response=$(curl -s "${pac_search_query}")

# PARSE RESPONSE AND GET AN ARRAY OF VERSIONS THAT CONTAIN ONLY NUMBERS (EXCLUDES SNAPSHOTS AND MILESTONE RELEASES)
latest_releases=$(echo "$search_response" | grep -oE '<version>[0-9][0-9]?\.[0-9]+\.[0-9]+</version>' | grep -oE '[0-9]\.[0-9]+\.[0-9]+')
latest_releases=$(echo "$search_response" | grep -oE '<version>[0-9][0-9]?\.[0-9]+\.[0-9]+</version>' | grep -oE '[0-9][0-9]?\.[0-9]+\.[0-9]+')

echo "$latest_releases"

Expand Down
4 changes: 2 additions & 2 deletions jira-slack-server-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
<aui.version>5.1.3</aui.version>

<!-- this is the version we will run integration tests against -->
<jira.version>10.0.0-m0010</jira.version>
<jira.version>10.0.0</jira.version>
<testkit.version>10.0.3</testkit.version>
<jira.test.unit.version>${jira.version}</jira.test.unit.version>

<!-- This is the version the plugin is compiled against -->
<jira.compile.version>10.0.0-m0010</jira.compile.version>
<jira.compile.version>10.0.0</jira.compile.version>

<jira.pageobjects.version>${jira.version}</jira.pageobjects.version>

Expand Down

0 comments on commit 7d24faf

Please sign in to comment.