scriptworker 62.2.3__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.
Files changed (29) hide show
  1. {scriptworker-62.2.3 → scriptworker-62.3.0}/HISTORY.rst +8 -0
  2. {scriptworker-62.2.3 → scriptworker-62.3.0}/PKG-INFO +1 -1
  3. {scriptworker-62.2.3 → scriptworker-62.3.0}/pyproject.toml +1 -1
  4. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/constants.py +4 -1
  5. {scriptworker-62.2.3 → scriptworker-62.3.0}/.gitignore +0 -0
  6. {scriptworker-62.2.3 → scriptworker-62.3.0}/CONTRIBUTING.rst +0 -0
  7. {scriptworker-62.2.3 → scriptworker-62.3.0}/LICENSE +0 -0
  8. {scriptworker-62.2.3 → scriptworker-62.3.0}/README.rst +0 -0
  9. {scriptworker-62.2.3 → scriptworker-62.3.0}/scripts/gen_ed25519_key.py +0 -0
  10. {scriptworker-62.2.3 → scriptworker-62.3.0}/scriptworker.yaml.tmpl +0 -0
  11. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/__init__.py +0 -0
  12. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/artifacts.py +0 -0
  13. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/client.py +0 -0
  14. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/config.py +0 -0
  15. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/context.py +0 -0
  16. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/cot/__init__.py +0 -0
  17. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/cot/generate.py +0 -0
  18. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/cot/verify.py +0 -0
  19. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/data/cot_v1_schema.json +0 -0
  20. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/data/scriptworker_task_schema.json +0 -0
  21. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/ed25519.py +0 -0
  22. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/exceptions.py +0 -0
  23. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/github.py +0 -0
  24. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/log.py +0 -0
  25. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/task.py +0 -0
  26. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/task_process.py +0 -0
  27. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/utils.py +0 -0
  28. {scriptworker-62.2.3 → scriptworker-62.3.0}/src/scriptworker/worker.py +0 -0
  29. {scriptworker-62.2.3 → scriptworker-62.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
+ 62.3.0 - 2026-01-06
8
+ -------------------
9
+
10
+ Added
11
+ ~~~~~
12
+
13
+ - `translations-1/decision` is a valid pool for decision tasks
14
+
7
15
  62.2.3 - 2025-12-05
8
16
  -------------------
9
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scriptworker
3
- Version: 62.2.3
3
+ Version: 62.3.0
4
4
  Summary: Taskcluster scriptworker
5
5
  Author-email: Mozilla Release Engineering <releng@mozilla.com>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "scriptworker"
3
- version = "62.2.3"
3
+ version = "62.3.0"
4
4
  description = "Taskcluster scriptworker"
5
5
  authors = [
6
6
  { name = "Mozilla Release Engineering", email = "releng@mozilla.com" },
@@ -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": ("translations-1/decision-gcp",),
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",
File without changes
File without changes
File without changes
File without changes