Skip to content

Commit ac01064

Browse files
authored
Scriptworker 38.0.0 (#500)
* remove old production tests These indexes are either ~9months old or nonexistent; let's remove them to remove noise from the production tests. * 38.0.0
1 parent e06be22 commit ac01064

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

HISTORY.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ Change Log
44
All notable changes to this project will be documented in this file.
55
This project adheres to `Semantic Versioning <http://semver.org/>`__.
66

7+
[38.0.0] - 2021-05-17
8+
---------------------
9+
Removed
10+
~~~~~~~
11+
- Removed py36 support
12+
- Removed obsolete mobile production tests
13+
14+
Added
15+
~~~~~
16+
- Added py39 support
17+
18+
Changed
19+
~~~~~~~
20+
- Require ``immutabledict>=1.3.0`` to avoid typing bustage
21+
- Require ``taskcluster<41`` instead of ``taskcluster<40`` to match the latest cluster version
22+
- CoT verification now supports ``projectId`` and ``taskQueueId``.
23+
- Pinned to ``pytest-asyncio<0.15`` due to production test bustage
24+
25+
Fixed
26+
~~~~~
27+
- Fixed immutabledict typing bustage
28+
729
[37.0.3] - 2021-04-14
830
---------------------
931
Changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ immutabledict>=1.3.0
88
jsonschema
99
json-e>=2.5.0
1010
PyYAML
11-
taskcluster<40
11+
taskcluster<41

src/scriptworker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def get_version_string(version: Union[ShortVerType, LongVerType]) -> str:
5454

5555
# 1}}}
5656
# Semantic versioning 2.0.0 http://semver.org/
57-
__version__ = (37, 0, 3)
57+
__version__ = (38, 0, 0)
5858
__version_string__ = get_version_string(__version__)
5959

6060

tests/test_production.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -143,21 +143,6 @@ async def get_context(config_override=None):
143143
"task_type": "signing",
144144
"cot_product": "mobile",
145145
},
146-
{
147-
"name": "fenix production",
148-
"taskcluster_root_url": "https://firefox-ci-tc.services.mozilla.com/",
149-
"index": "mobile.v2.fenix.fennec-production.latest.arm64-v8a",
150-
"task_type": "signing",
151-
"cot_product": "mobile",
152-
},
153-
{
154-
"name": "fenix performance tests",
155-
"taskcluster_root_url": "https://firefox-ci-tc.services.mozilla.com/",
156-
"index": "mobile.v2.fenix.performance-test.latest.arm64-v8a",
157-
"task_type": "signing",
158-
"cot_product": "mobile",
159-
"check_task": False, # These tasks run on level t workers.
160-
},
161146
{
162147
"name": "reference-browser nightly",
163148
"taskcluster_root_url": "https://firefox-ci-tc.services.mozilla.com/",

version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version":[
3-
37,
3+
38,
44
0,
5-
3
5+
0
66
],
7-
"version_string":"37.0.3"
7+
"version_string":"38.0.0"
88
}

0 commit comments

Comments
 (0)