prefpicker 1.24.4__tar.gz → 1.25.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.

Potentially problematic release.


This version of prefpicker might be problematic. Click here for more details.

Files changed (31) hide show
  1. {prefpicker-1.24.4 → prefpicker-1.25.0}/.pre-commit-config.yaml +2 -1
  2. {prefpicker-1.24.4 → prefpicker-1.25.0}/PKG-INFO +1 -1
  3. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/templates/browser-fuzzing.yml +8 -0
  4. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/PKG-INFO +1 -1
  5. {prefpicker-1.24.4 → prefpicker-1.25.0}/tox.ini +0 -10
  6. {prefpicker-1.24.4 → prefpicker-1.25.0}/.codecov.yml +0 -0
  7. {prefpicker-1.24.4 → prefpicker-1.25.0}/.github/CODEOWNERS +0 -0
  8. {prefpicker-1.24.4 → prefpicker-1.25.0}/.github/workflows/prefmonitor.yml +0 -0
  9. {prefpicker-1.24.4 → prefpicker-1.25.0}/.gitignore +0 -0
  10. {prefpicker-1.24.4 → prefpicker-1.25.0}/.taskcluster.yml +0 -0
  11. {prefpicker-1.24.4 → prefpicker-1.25.0}/CODE_OF_CONDUCT.md +0 -0
  12. {prefpicker-1.24.4 → prefpicker-1.25.0}/LICENSE +0 -0
  13. {prefpicker-1.24.4 → prefpicker-1.25.0}/MANIFEST.in +0 -0
  14. {prefpicker-1.24.4 → prefpicker-1.25.0}/README.md +0 -0
  15. {prefpicker-1.24.4 → prefpicker-1.25.0}/pyproject.toml +0 -0
  16. {prefpicker-1.24.4 → prefpicker-1.25.0}/setup.cfg +0 -0
  17. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/__init__.py +0 -0
  18. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/__main__.py +0 -0
  19. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/main.py +0 -0
  20. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/prefpicker.py +0 -0
  21. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/py.typed +0 -0
  22. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/templates/schema.json +0 -0
  23. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/test_main.py +0 -0
  24. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/test_prefpicker.py +0 -0
  25. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker/test_templates.py +0 -0
  26. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/SOURCES.txt +0 -0
  27. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/dependency_links.txt +0 -0
  28. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/entry_points.txt +0 -0
  29. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/not-zip-safe +0 -0
  30. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/requires.txt +0 -0
  31. {prefpicker-1.24.4 → prefpicker-1.25.0}/src/prefpicker.egg-info/top_level.txt +0 -0
@@ -3,6 +3,7 @@ repos:
3
3
  rev: v0.6.5
4
4
  hooks:
5
5
  - id: ruff
6
+ args: [--fix]
6
7
  - repo: https://github.com/ambv/black
7
8
  rev: 24.8.0
8
9
  hooks:
@@ -56,7 +57,7 @@ repos:
56
57
  hooks:
57
58
  - id: gitlint
58
59
  args: [--contrib=contrib-title-conventional-commits, --ignore=body-is-missing, --msg-filename]
59
- stages: [ commit-msg ]
60
+ stages: [commit-msg]
60
61
  - repo: local
61
62
  hooks:
62
63
  - id: mypy
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: prefpicker
3
- Version: 1.24.4
3
+ Version: 1.25.0
4
4
  Summary: PrefPicker - Manage & generate prefs.js files
5
5
  Home-page: https://github.com/MozillaSecurity/prefpicker
6
6
  Author: Tyson Smith
@@ -8,6 +8,14 @@ pref:
8
8
  - true
9
9
  default:
10
10
  - null
11
+ # this should be true when fuzzing a11y to increase coverage
12
+ # see https://bugzilla.mozilla.org/show_bug.cgi?id=1921917 for more details
13
+ accessibility.enable_all_cache_domains:
14
+ variants:
15
+ a11y:
16
+ - true
17
+ default:
18
+ - null
11
19
  accessibility.force_disabled:
12
20
  variants:
13
21
  a11y:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: prefpicker
3
- Version: 1.24.4
3
+ Version: 1.25.0
4
4
  Summary: PrefPicker - Manage & generate prefs.js files
5
5
  Home-page: https://github.com/MozillaSecurity/prefpicker
6
6
  Author: Tyson Smith
@@ -58,13 +58,3 @@ deps =
58
58
  build
59
59
  python-semantic-release>=8.0.0
60
60
  twine
61
-
62
- [flake8]
63
- # E203, W503, and W504 are all black compat
64
- ignore =
65
- E203
66
- W503
67
- enable =
68
- W504
69
- max-line-length = 88
70
- show-source = true
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes