scriptworker 62.2.2__tar.gz → 62.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-62.2.2 → scriptworker-62.3.0}/HISTORY.rst +17 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/PKG-INFO +1 -1
- {scriptworker-62.2.2 → scriptworker-62.3.0}/pyproject.toml +1 -1
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/artifacts.py +9 -3
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/constants.py +6 -2
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/cot/verify.py +1 -1
- {scriptworker-62.2.2 → scriptworker-62.3.0}/.gitignore +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/CONTRIBUTING.rst +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/LICENSE +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/README.rst +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/scripts/gen_ed25519_key.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/scriptworker.yaml.tmpl +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/__init__.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/client.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/config.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/context.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/cot/__init__.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/cot/generate.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/data/cot_v1_schema.json +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/data/scriptworker_task_schema.json +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/ed25519.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/exceptions.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/github.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/log.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/task.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/task_process.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/utils.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/src/scriptworker/worker.py +0 -0
- {scriptworker-62.2.2 → scriptworker-62.3.0}/tox.ini +0 -0
|
@@ -4,6 +4,23 @@ 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
|
+
62.3.0 - 2026-01-06
|
|
8
|
+
-------------------
|
|
9
|
+
|
|
10
|
+
Added
|
|
11
|
+
~~~~~
|
|
12
|
+
|
|
13
|
+
- `translations-1/decision` is a valid pool for decision tasks
|
|
14
|
+
|
|
15
|
+
62.2.3 - 2025-12-05
|
|
16
|
+
-------------------
|
|
17
|
+
|
|
18
|
+
Fixed
|
|
19
|
+
~~~~~
|
|
20
|
+
|
|
21
|
+
- Added some Thunderbird CoT restricted scopes
|
|
22
|
+
- Downloading wildcard artifacts from tasks with over a thousand artifacts
|
|
23
|
+
|
|
7
24
|
62.2.2 - 2025-12-02
|
|
8
25
|
-------------------
|
|
9
26
|
|
|
@@ -224,13 +224,19 @@ def get_artifact_url(context, task_id, path):
|
|
|
224
224
|
|
|
225
225
|
|
|
226
226
|
# list_latest_artifacts {{{1
|
|
227
|
-
async def list_latest_artifacts(queue, task_id
|
|
228
|
-
|
|
227
|
+
async def list_latest_artifacts(queue, task_id):
|
|
228
|
+
artifacts = []
|
|
229
|
+
|
|
230
|
+
def pagination_handler(response):
|
|
231
|
+
artifacts.extend(response["artifacts"])
|
|
232
|
+
|
|
233
|
+
await queue.listLatestArtifacts(task_id, paginationHandler=pagination_handler)
|
|
234
|
+
return artifacts
|
|
229
235
|
|
|
230
236
|
|
|
231
237
|
async def retry_list_latest_artifacts(queue, task_id, exception=TaskclusterFailure, **kwargs):
|
|
232
238
|
kwargs.setdefault("retry_exceptions", tuple(set([TaskclusterFailure, exception])))
|
|
233
|
-
return await retry_async(list_latest_artifacts, args=(queue, task_id),
|
|
239
|
+
return await retry_async(list_latest_artifacts, args=(queue, task_id), **kwargs)
|
|
234
240
|
|
|
235
241
|
|
|
236
242
|
# get_expiration_arrow {{{1
|
|
@@ -216,7 +216,10 @@ DEFAULT_CONFIG: immutabledict[str, Any] = immutabledict(
|
|
|
216
216
|
"comm-2/decision-gcp",
|
|
217
217
|
"comm-3/decision-gcp",
|
|
218
218
|
),
|
|
219
|
-
"translations": (
|
|
219
|
+
"translations": (
|
|
220
|
+
"translations-1/decision",
|
|
221
|
+
"translations-1/decision-gcp",
|
|
222
|
+
),
|
|
220
223
|
"xpi": (
|
|
221
224
|
"xpi-1/decision",
|
|
222
225
|
"xpi-3/decision",
|
|
@@ -588,7 +591,8 @@ DEFAULT_CONFIG: immutabledict[str, Any] = immutabledict(
|
|
|
588
591
|
"project:comm:thunderbird:releng:flathub:beta": "beta",
|
|
589
592
|
"project:comm:thunderbird:releng:flathub:stable": "release-or-esr",
|
|
590
593
|
"project:comm:thunderbird:releng:microsoftstore:beta": "beta",
|
|
591
|
-
"project:comm:thunderbird:releng:microsoftstore:release": "release
|
|
594
|
+
"project:comm:thunderbird:releng:microsoftstore:release": "release",
|
|
595
|
+
"project:comm:thunderbird:releng:microsoftstore:esr": "esr",
|
|
592
596
|
}
|
|
593
597
|
),
|
|
594
598
|
"translations": immutabledict(
|
|
@@ -783,7 +783,7 @@ async def download_cot_artifacts(chain):
|
|
|
783
783
|
# artifacts from the completed tasks and then determine
|
|
784
784
|
# which are needed based on the pattern given.
|
|
785
785
|
if not latest_artifacts.get(task_id):
|
|
786
|
-
latest_artifacts[task_id] =
|
|
786
|
+
latest_artifacts[task_id] = await retry_list_latest_artifacts(chain.context.queue, task_id)
|
|
787
787
|
coroutines = []
|
|
788
788
|
for artifact in latest_artifacts[task_id]:
|
|
789
789
|
if fnmatch.fnmatch(artifact["name"], path):
|
|
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-62.2.2 → scriptworker-62.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
|