scriptworker 60.3.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.
Files changed (40) hide show
  1. {scriptworker-60.3.0 → scriptworker-60.4.0}/HISTORY.rst +7 -0
  2. {scriptworker-60.3.0 → scriptworker-60.4.0}/PKG-INFO +1 -1
  3. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/constants.py +2 -0
  4. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/version.py +1 -1
  5. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/PKG-INFO +1 -1
  6. {scriptworker-60.3.0 → scriptworker-60.4.0}/version.json +2 -2
  7. {scriptworker-60.3.0 → scriptworker-60.4.0}/CONTRIBUTING.rst +0 -0
  8. {scriptworker-60.3.0 → scriptworker-60.4.0}/LICENSE +0 -0
  9. {scriptworker-60.3.0 → scriptworker-60.4.0}/MANIFEST.in +0 -0
  10. {scriptworker-60.3.0 → scriptworker-60.4.0}/README.rst +0 -0
  11. {scriptworker-60.3.0 → scriptworker-60.4.0}/pyproject.toml +0 -0
  12. {scriptworker-60.3.0 → scriptworker-60.4.0}/requirements.txt +0 -0
  13. {scriptworker-60.3.0 → scriptworker-60.4.0}/scripts/gen_ed25519_key.py +0 -0
  14. {scriptworker-60.3.0 → scriptworker-60.4.0}/scriptworker.yaml.tmpl +0 -0
  15. {scriptworker-60.3.0 → scriptworker-60.4.0}/setup.cfg +0 -0
  16. {scriptworker-60.3.0 → scriptworker-60.4.0}/setup.py +0 -0
  17. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/__init__.py +0 -0
  18. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/artifacts.py +0 -0
  19. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/client.py +0 -0
  20. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/config.py +0 -0
  21. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/context.py +0 -0
  22. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/cot/__init__.py +0 -0
  23. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/cot/generate.py +0 -0
  24. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/cot/verify.py +0 -0
  25. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/data/cot_v1_schema.json +0 -0
  26. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/ed25519.py +0 -0
  27. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/exceptions.py +0 -0
  28. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/github.py +0 -0
  29. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/log.py +0 -0
  30. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/task.py +0 -0
  31. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/task_process.py +0 -0
  32. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/utils.py +0 -0
  33. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker/worker.py +0 -0
  34. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/SOURCES.txt +0 -0
  35. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/dependency_links.txt +0 -0
  36. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/entry_points.txt +0 -0
  37. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/not-zip-safe +0 -0
  38. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/requires.txt +0 -0
  39. {scriptworker-60.3.0 → scriptworker-60.4.0}/src/scriptworker.egg-info/top_level.txt +0 -0
  40. {scriptworker-60.3.0 → scriptworker-60.4.0}/tox.ini +0 -0
@@ -4,6 +4,13 @@ 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
+
7
14
  60.3.0 - 2024-07-15
8
15
  -------------------
9
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptworker
3
- Version: 60.3.0
3
+ Version: 60.4.0
4
4
  Summary: TaskCluster Script Worker
5
5
  Home-page: https://github.com/mozilla-releng/scriptworker
6
6
  Author: Mozilla Release Engineering
@@ -97,6 +97,8 @@ 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
  ]
@@ -54,7 +54,7 @@ def get_version_string(version: Union[ShortVerType, LongVerType]) -> str:
54
54
 
55
55
  # 1}}}
56
56
  # Semantic versioning 2.0.0 http://semver.org/
57
- __version__ = (60, 3, 0)
57
+ __version__ = (60, 4, 0)
58
58
  __version_string__ = get_version_string(__version__)
59
59
 
60
60
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scriptworker
3
- Version: 60.3.0
3
+ Version: 60.4.0
4
4
  Summary: TaskCluster Script Worker
5
5
  Home-page: https://github.com/mozilla-releng/scriptworker
6
6
  Author: Mozilla Release Engineering
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "version":[
3
3
  60,
4
- 3,
4
+ 4,
5
5
  0
6
6
  ],
7
- "version_string":"60.3.0"
7
+ "version_string":"60.4.0"
8
8
  }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes