scriptworker 61.2.0__tar.gz → 61.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {scriptworker-61.2.0 → scriptworker-61.3.0}/HISTORY.rst +13 -1
- {scriptworker-61.2.0 → scriptworker-61.3.0}/PKG-INFO +1 -1
- {scriptworker-61.2.0 → scriptworker-61.3.0}/pyproject.toml +1 -1
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/constants.py +2 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/.gitignore +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/CONTRIBUTING.rst +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/LICENSE +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/README.rst +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/scripts/gen_ed25519_key.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/scriptworker.yaml.tmpl +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/__init__.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/artifacts.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/client.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/config.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/context.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/cot/__init__.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/cot/generate.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/cot/verify.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/data/cot_v1_schema.json +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/data/scriptworker_task_schema.json +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/ed25519.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/exceptions.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/github.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/log.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/task.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/task_process.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/utils.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/worker.py +0 -0
- {scriptworker-61.2.0 → scriptworker-61.3.0}/tox.ini +0 -0
|
@@ -4,6 +4,14 @@ Change Log
|
|
|
4
4
|
All notable changes to this project will be documented in this file.
|
|
5
5
|
This project adheres to `Semantic Versioning <http://semver.org/>`__.
|
|
6
6
|
|
|
7
|
+
61.3.0 - 2025-10-29
|
|
8
|
+
-------------------
|
|
9
|
+
|
|
10
|
+
Added
|
|
11
|
+
~~~~~
|
|
12
|
+
|
|
13
|
+
- docker-worker CoT artifacts can be signed with the generic-worker key (bug 1996810)
|
|
14
|
+
|
|
7
15
|
61.2.0 - 2025-10-07
|
|
8
16
|
-------------------
|
|
9
17
|
|
|
@@ -14,7 +22,11 @@ Added
|
|
|
14
22
|
- Allow autoland to use release beetmover bucket
|
|
15
23
|
- Don't sleep in download timeout test
|
|
16
24
|
- Validate claimed task definition against minimal schema
|
|
17
|
-
|
|
25
|
+
|
|
26
|
+
Changed
|
|
27
|
+
~~~~~~~
|
|
28
|
+
|
|
29
|
+
- Respect maxRunTime specified in task payload (breaking change)
|
|
18
30
|
|
|
19
31
|
61.1.0 - 2025-09-23
|
|
20
32
|
-------------------
|
|
@@ -87,6 +87,8 @@ DEFAULT_CONFIG: immutabledict[str, Any] = immutabledict(
|
|
|
87
87
|
[
|
|
88
88
|
# Dec 2023 rotation (bug 1868558)
|
|
89
89
|
"kni6ts7z/MRkvs7i6+SF/T6UWj0hAJoHEcrgHB8BBR0=",
|
|
90
|
+
# Dec 2023 rotation (bug 1868558) - d2g
|
|
91
|
+
"Kz/aZIVeR6NP8gQU1U+2CCIZqvbd+4QCP6J63lflwik=",
|
|
90
92
|
]
|
|
91
93
|
),
|
|
92
94
|
"generic-worker": tuple(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{scriptworker-61.2.0 → scriptworker-61.3.0}/src/scriptworker/data/scriptworker_task_schema.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|