scriptworker 60.2.0__tar.gz → 60.4.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-60.2.0 → scriptworker-60.4.0}/HISTORY.rst +14 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/PKG-INFO +1 -1
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/constants.py +3 -1
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/version.py +1 -1
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/PKG-INFO +1 -1
- {scriptworker-60.2.0 → scriptworker-60.4.0}/version.json +2 -2
- {scriptworker-60.2.0 → scriptworker-60.4.0}/CONTRIBUTING.rst +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/LICENSE +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/MANIFEST.in +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/README.rst +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/pyproject.toml +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/requirements.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/scripts/gen_ed25519_key.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/scriptworker.yaml.tmpl +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/setup.cfg +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/setup.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/__init__.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/artifacts.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/client.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/config.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/context.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/cot/__init__.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/cot/generate.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/cot/verify.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/data/cot_v1_schema.json +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/ed25519.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/exceptions.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/github.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/log.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/task.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/task_process.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/utils.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker/worker.py +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/SOURCES.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/dependency_links.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/entry_points.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/not-zip-safe +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/requires.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/top_level.txt +0 -0
- {scriptworker-60.2.0 → scriptworker-60.4.0}/tox.ini +0 -0
|
@@ -4,6 +4,20 @@ 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
|
+
60.4.0 - 2024-08-27
|
|
8
|
+
-------------------
|
|
9
|
+
|
|
10
|
+
Added
|
|
11
|
+
~~~~~
|
|
12
|
+
- New trusted scriptworker CoT key (#669)
|
|
13
|
+
|
|
14
|
+
60.3.0 - 2024-07-15
|
|
15
|
+
-------------------
|
|
16
|
+
|
|
17
|
+
Fixed
|
|
18
|
+
~~~~~
|
|
19
|
+
- Pull projects.yml from GitHub instead of hg.mozilla.org (#666)
|
|
20
|
+
|
|
7
21
|
60.2.0 - 2024-07-12
|
|
8
22
|
-------------------
|
|
9
23
|
|
|
@@ -97,13 +97,15 @@ DEFAULT_CONFIG: immutabledict[str, Any] = immutabledict(
|
|
|
97
97
|
),
|
|
98
98
|
"scriptworker": tuple(
|
|
99
99
|
[
|
|
100
|
+
# Aug 2024 rotation (bug 1914904)
|
|
101
|
+
"KO3FX9JnNga/XViTRBiUMHYnji9Fu3s332sU2lXjSwE=",
|
|
100
102
|
# Dec 2023 rotation (bug 1868558)
|
|
101
103
|
"jFmyvf3lQiiX0qIFxal5KgIIq6VpUBTQfAtD6hEi8Ms=",
|
|
102
104
|
]
|
|
103
105
|
),
|
|
104
106
|
}
|
|
105
107
|
),
|
|
106
|
-
"project_configuration_url": "https://
|
|
108
|
+
"project_configuration_url": "https://raw.githubusercontent.com/mozilla-releng/fxci-config/main/projects.yml",
|
|
107
109
|
"pushlog_url": "{repo}/json-pushes?changeset={revision}&version=2&full=1",
|
|
108
110
|
"chain_of_trust_hash_algorithm": "sha256",
|
|
109
111
|
"cot_schema_path": os.path.join(os.path.dirname(__file__), "data", "cot_v1_schema.json"),
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|