Skip to content

Commit be7881f

Browse files
authored
Merge pull request #1752 from atlassian/release/8.7.0
Release 8.7.0
2 parents 99f72f1 + 1b5d683 commit be7881f

39 files changed

+599
-316
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ This repository contains Taurus scripts for performance testing of Atlassian Dat
55

66
## Supported versions
77
* Supported Jira versions:
8-
* Jira [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `9.12.17` and `10.3.0`
8+
* Jira [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `9.12.19` and `10.3.4`
99

1010
* Supported Jira Service Management versions:
11-
* Jira Service Management [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `5.12.17` and `10.3.1`
11+
* Jira Service Management [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `5.12.19` and `10.3.4`
1212

1313
* Supported Confluence versions:
14-
* Confluence [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.5.18` and `9.2.0`
14+
* Confluence [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.5.20` and `9.2.2`
1515

1616
* Supported Bitbucket Server versions:
17-
* Bitbucket Server [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.19.14` and `9.4.1`
17+
* Bitbucket Server [Long Term Support release](https://confluence.atlassian.com/enterprise/atlassian-enterprise-releases-948227420.html): `8.19.16` and `9.4.4`
1818

1919
* Supported Crowd versions:
20-
* Crowd [release notes](https://confluence.atlassian.com/crowd/crowd-release-notes-199094.html): `6.0.0`
20+
* Crowd [release notes](https://confluence.atlassian.com/crowd/crowd-release-notes-199094.html): `6.3.0`
2121

2222
* Supported Bamboo versions:
23-
* Bamboo [Long Term Support release](https://confluence.atlassian.com/bamboo/bamboo-release-notes-671089224.html): `10.2.0`
23+
* Bamboo [Long Term Support release](https://confluence.atlassian.com/bamboo/bamboo-release-notes-671089224.html): `10.2.2`
2424

2525
## Support
2626
In case of technical questions, issues or problems with DC Apps Performance Toolkit, contact us for support in the [community Slack](http://bit.ly/dcapt_slack) **#data-center-app-performance-toolkit** channel.

app/bamboo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ services:
5151
- python util/post_run/cleanup_results_dir.py
5252
- module: pip-install
5353
packages:
54-
- selenium==4.27.1
54+
- selenium==4.31.0
5555
execution:
5656
- scenario: jmeter
5757
executor: jmeter
@@ -121,7 +121,7 @@ modules:
121121
httpsampler.ignore_failed_embedded_resources: "true"
122122
selenium:
123123
chromedriver:
124-
version: "133.0.6943.53" # Supports Chrome version 133. You can refer to https://googlechromelabs.github.io/chrome-for-testing
124+
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
125125
reporting:
126126
- data-source: sample-labels
127127
module: junit-xml

app/bitbucket.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
- python util/post_run/cleanup_results_dir.py
3838
- module: pip-install
3939
packages:
40-
- selenium==4.27.1
40+
- selenium==4.31.0
4141
execution:
4242
- scenario: ${load_executor}
4343
concurrency: ${concurrency}
@@ -87,7 +87,7 @@ modules:
8787
httpsampler.ignore_failed_embedded_resources: "true"
8888
selenium:
8989
chromedriver:
90-
version: "133.0.6943.53" # Supports Chrome version 133. You can refer to https://googlechromelabs.github.io/chrome-for-testing
90+
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
9191
reporting:
9292
- data-source: sample-labels
9393
module: junit-xml

app/confluence.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
- python util/post_run/cleanup_results_dir.py
5353
- module: pip-install
5454
packages:
55-
- selenium==4.27.1
55+
- selenium==4.31.0
5656
execution:
5757
- scenario: ${load_executor}
5858
executor: ${load_executor}
@@ -114,7 +114,7 @@ modules:
114114
httpsampler.ignore_failed_embedded_resources: "true"
115115
selenium:
116116
chromedriver:
117-
version: "133.0.6943.53" # Supports Chrome version 133. You can refer to https://googlechromelabs.github.io/chrome-for-testing
117+
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
118118
reporting:
119119
- data-source: sample-labels
120120
module: junit-xml

app/extension/bitbucket/extension_ui.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from selenium_ui.base_page import BasePage
66
from selenium_ui.conftest import print_timing
7-
from selenium_ui.bitbucket.pages.pages import LoginPage, GetStarted
7+
from selenium_ui.bitbucket.pages.pages import LoginPage, GetStarted, AdminPage, PopupManager
88
from util.conf import BITBUCKET_SETTINGS
99

1010

@@ -25,10 +25,16 @@ def app_specific_action(webdriver, datasets):
2525
# login_page = LoginPage(webdriver)
2626
# login_page.delete_all_cookies()
2727
# login_page.go_to()
28+
# login_page.wait_for_page_loaded()
2829
# login_page.set_credentials(username=username, password=password)
2930
# login_page.submit_login()
3031
# get_started_page = GetStarted(webdriver)
3132
# get_started_page.wait_for_page_loaded()
33+
# PopupManager(webdriver).dismiss_default_popup()
34+
# get_started_page.close_whats_new_window()
35+
#
36+
# # uncomment below line to do web_sudo and authorise access to admin pages
37+
# # AdminPage(webdriver).go_to(password=password)
3238
# app_specific_user_login(username='admin', password='admin')
3339
# measure()
3440

app/extension/confluence/extension_ui.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from selenium_ui.base_page import BasePage
66
from selenium_ui.conftest import print_timing
7-
from selenium_ui.confluence.pages.pages import Login, AllUpdates
7+
from selenium_ui.confluence.pages.pages import Login, AllUpdates, AdminPage
88
from util.conf import CONFLUENCE_SETTINGS
99

1010

@@ -29,6 +29,9 @@ def app_specific_action(webdriver, datasets):
2929
# login_page.first_user_setup()
3030
# all_updates_page = AllUpdates(webdriver)
3131
# all_updates_page.wait_for_page_loaded()
32+
# # uncomment below line to do web_sudo and authorise access to admin pages
33+
# # AdminPage(webdriver).go_to(password=password)
34+
#
3235
# app_specific_user_login(username='admin', password='admin')
3336
# measure()
3437

app/jira.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
- python util/post_run/cleanup_results_dir.py
5353
- module: pip-install
5454
packages:
55-
- selenium==4.27.1
55+
- selenium==4.31.0
5656
execution:
5757
- scenario: ${load_executor}
5858
executor: ${load_executor}
@@ -115,7 +115,7 @@ modules:
115115
httpsampler.ignore_failed_embedded_resources: "true"
116116
selenium:
117117
chromedriver:
118-
version: "133.0.6943.53" # Supports Chrome version 133. You can refer to https://googlechromelabs.github.io/chrome-for-testing
118+
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
119119
reporting:
120120
- data-source: sample-labels
121121
module: junit-xml

0 commit comments

Comments
 (0)