Skip to content

Commit 5db179c

Browse files
authored
Merge pull request #1777 from atlassian/release/8.7.1
Release 8.7.1
2 parents be7881f + 7c08604 commit 5db179c

File tree

16 files changed

+783
-190
lines changed

16 files changed

+783
-190
lines changed

app/bamboo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ modules:
121121
httpsampler.ignore_failed_embedded_resources: "true"
122122
selenium:
123123
chromedriver:
124-
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
124+
version: "137.0.7151.70" # Supports Chrome version 137. 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ modules:
8787
httpsampler.ignore_failed_embedded_resources: "true"
8888
selenium:
8989
chromedriver:
90-
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
90+
version: "137.0.7151.70" # Supports Chrome version 137. 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ modules:
114114
httpsampler.ignore_failed_embedded_resources: "true"
115115
selenium:
116116
chromedriver:
117-
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
117+
version: "137.0.7151.70" # Supports Chrome version 137. You can refer to https://googlechromelabs.github.io/chrome-for-testing
118118
reporting:
119119
- data-source: sample-labels
120120
module: junit-xml

app/extension/confluence/extension_locust.py

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

66

77
@confluence_measure("locust_app_specific_action")
8-
# @run_as_specific_user(username='admin', password='admin') # run as specific user
8+
# WebSudo is a feature that enhances security by requiring administrators to re-authenticate before
9+
# accessing administrative functions within Atlassian applications.
10+
# do_websudo=True requires user administrative rights, otherwise requests fail.
11+
#@run_as_specific_user(username='admin', password='admin', do_websudo=False) # run as specific user
912
def app_specific_action(locust):
1013
r = locust.get('/app/get_endpoint', catch_response=True) # call app-specific GET endpoint
1114
content = r.content.decode('utf-8') # decode response content

app/extension/jira/extension_locust.py

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

66

77
@jira_measure("locust_app_specific_action")
8-
# @run_as_specific_user(username='admin', password='admin') # run as specific user
8+
# WebSudo is a feature that enhances security by requiring administrators to re-authenticate before
9+
# accessing administrative functions within Atlassian applications.
10+
# do_websudo=True requires user administrative rights, otherwise requests fail.
11+
#@run_as_specific_user(username='admin', password='admin', do_websudo=False) # run as specific user
912
def app_specific_action(locust):
1013
r = locust.get('/app/get_endpoint', catch_response=True) # call app-specific GET endpoint
1114
content = r.content.decode('utf-8') # decode response content

app/extension/jsm/extension_locust_agents.py

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

66

77
@jsm_agent_measure('locust_agent_app_specific_action')
8-
# @run_as_specific_user(username='admin', password='admin') # run as specific user
8+
# WebSudo is a feature that enhances security by requiring administrators to re-authenticate before
9+
# accessing administrative functions within Atlassian applications.
10+
# do_websudo=True requires user administrative rights, otherwise requests fail.
11+
# @run_as_specific_user(username='admin', password='admin', do_websudo=False) # run as specific user
912
def app_specific_action(locust):
1013
r = locust.get('/app/get_endpoint', catch_response=True) # call app-specific GET endpoint
1114
content = r.content.decode('utf-8') # decode response content

app/extension/jsm/extension_locust_customers.py

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

66

77
@jsm_customer_measure('locust_customer_app_specific_action')
8-
# @run_as_specific_user(username='admin', password='admin') # run as specific user
8+
# WebSudo is a feature that enhances security by requiring administrators to re-authenticate before
9+
# accessing administrative functions within Atlassian applications.
10+
# do_websudo=True requires user administrative rights, otherwise requests fail.
11+
# @run_as_specific_user(username='admin', password='admin', do_websudo=False) # run as specific user
912
def app_specific_action(locust):
1013
r = locust.get('/app/get_endpoint', catch_response=True) # call app-specific GET endpoint
1114
content = r.content.decode('utf-8') # decode response content

app/jira.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ modules:
115115
httpsampler.ignore_failed_embedded_resources: "true"
116116
selenium:
117117
chromedriver:
118-
version: "135.0.7049.114" # Supports Chrome version 135. You can refer to https://googlechromelabs.github.io/chrome-for-testing
118+
version: "137.0.7151.70" # Supports Chrome version 137. 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)