prefpicker 1.10.0__tar.gz → 1.13.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 (30) hide show
  1. {prefpicker-1.10.0 → prefpicker-1.13.0}/.pre-commit-config.yaml +9 -9
  2. {prefpicker-1.10.0 → prefpicker-1.13.0}/PKG-INFO +1 -1
  3. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/prefpicker.py +0 -1
  4. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/templates/browser-fuzzing.yml +32 -0
  5. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/PKG-INFO +1 -1
  6. {prefpicker-1.10.0 → prefpicker-1.13.0}/tox.ini +2 -2
  7. {prefpicker-1.10.0 → prefpicker-1.13.0}/.codecov.yml +0 -0
  8. {prefpicker-1.10.0 → prefpicker-1.13.0}/.github/workflows/prefmonitor.yml +0 -0
  9. {prefpicker-1.10.0 → prefpicker-1.13.0}/.gitignore +0 -0
  10. {prefpicker-1.10.0 → prefpicker-1.13.0}/.taskcluster.yml +0 -0
  11. {prefpicker-1.10.0 → prefpicker-1.13.0}/CODE_OF_CONDUCT.md +0 -0
  12. {prefpicker-1.10.0 → prefpicker-1.13.0}/LICENSE +0 -0
  13. {prefpicker-1.10.0 → prefpicker-1.13.0}/MANIFEST.in +0 -0
  14. {prefpicker-1.10.0 → prefpicker-1.13.0}/README.md +0 -0
  15. {prefpicker-1.10.0 → prefpicker-1.13.0}/pyproject.toml +0 -0
  16. {prefpicker-1.10.0 → prefpicker-1.13.0}/setup.cfg +0 -0
  17. {prefpicker-1.10.0 → prefpicker-1.13.0}/setup.py +0 -0
  18. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/__init__.py +0 -0
  19. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/__main__.py +0 -0
  20. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/main.py +0 -0
  21. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/templates/schema.json +0 -0
  22. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/test_main.py +0 -0
  23. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/test_prefpicker.py +0 -0
  24. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker/test_templates.py +0 -0
  25. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/SOURCES.txt +0 -0
  26. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/dependency_links.txt +0 -0
  27. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/entry_points.txt +0 -0
  28. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/not-zip-safe +0 -0
  29. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/requires.txt +0 -0
  30. {prefpicker-1.10.0 → prefpicker-1.13.0}/src/prefpicker.egg-info/top_level.txt +0 -0
@@ -4,16 +4,16 @@ repos:
4
4
  hooks:
5
5
  - id: isort
6
6
  - repo: https://github.com/asottile/yesqa
7
- rev: v1.4.0
7
+ rev: v1.5.0
8
8
  hooks:
9
9
  - id: yesqa
10
10
  - repo: https://github.com/asottile/pyupgrade
11
- rev: v3.3.1
11
+ rev: v3.8.0
12
12
  hooks:
13
13
  - id: pyupgrade
14
- args: ['--py37-plus']
14
+ args: ["--py38-plus"]
15
15
  - repo: https://github.com/ambv/black
16
- rev: 22.12.0
16
+ rev: 23.3.0
17
17
  hooks:
18
18
  - id: black
19
19
  - repo: https://github.com/pycqa/flake8
@@ -41,23 +41,23 @@ repos:
41
41
  - id: requirements-txt-fixer
42
42
  - id: trailing-whitespace
43
43
  - repo: https://github.com/codespell-project/codespell
44
- rev: v2.2.2
44
+ rev: v2.2.5
45
45
  hooks:
46
46
  - id: codespell
47
47
  exclude_types: [json]
48
48
  - repo: https://github.com/marco-c/taskcluster_yml_validator
49
- rev: v0.0.9
49
+ rev: v0.0.10
50
50
  hooks:
51
51
  - id: taskcluster_yml
52
52
  - repo: https://github.com/MozillaSecurity/orion
53
- rev: v0.0.6
53
+ rev: v0.0.7
54
54
  hooks:
55
55
  - id: orion_ci
56
56
  - repo: meta
57
57
  hooks:
58
58
  - id: check-useless-excludes
59
59
  - repo: https://github.com/python-jsonschema/check-jsonschema
60
- rev: 0.21.0
60
+ rev: 0.23.2
61
61
  hooks:
62
62
  - id: check-jsonschema
63
63
  name: "Check prefpicker template schema"
@@ -65,7 +65,7 @@ repos:
65
65
  types: [yaml]
66
66
  args: ["--schemafile", "./src/prefpicker/templates/schema.json"]
67
67
  - repo: https://github.com/jorisroovers/gitlint
68
- rev: v0.18.0
68
+ rev: v0.19.1
69
69
  hooks:
70
70
  - id: gitlint
71
71
  args: [--contrib=contrib-title-conventional-commits, --ignore=body-is-missing, --msg-filename]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: prefpicker
3
- Version: 1.10.0
3
+ Version: 1.13.0
4
4
  Summary: PrefPicker - Manage & generate prefs.js files
5
5
  Home-page: https://github.com/MozillaSecurity/prefpicker
6
6
  Author: Tyson Smith
@@ -27,7 +27,6 @@ class SourceDataError(Exception):
27
27
 
28
28
 
29
29
  class PrefPicker: # pylint: disable=missing-docstring
30
-
31
30
  __slots__ = ("prefs", "variants")
32
31
 
33
32
  def __init__(self):
@@ -263,6 +263,10 @@ pref:
263
263
  variants:
264
264
  default:
265
265
  - true
266
+ dom.forms.datetime.others:
267
+ variants:
268
+ default:
269
+ - true
266
270
  dom.gamepad.extensions.lightindicator:
267
271
  variants:
268
272
  default:
@@ -434,6 +438,12 @@ pref:
434
438
  variants:
435
439
  default:
436
440
  - true
441
+ dom.webmidi.enabled:
442
+ review_on_close:
443
+ - 836897
444
+ variants:
445
+ default:
446
+ - true
437
447
  dom.window_print.fuzzing.block_while_printing:
438
448
  variants:
439
449
  default:
@@ -502,6 +512,15 @@ pref:
502
512
  variants:
503
513
  default:
504
514
  - true
515
+ fuzzing.webauthn.authenticator_config:
516
+ variants:
517
+ default:
518
+ # ctap2_1
519
+ - 127
520
+ # ctap2
521
+ # - 95
522
+ # ctap1/u2f
523
+ # - 63
505
524
  # pref copied from domfuzz
506
525
  general.useragent.updates.enabled:
507
526
  variants:
@@ -735,6 +754,11 @@ pref:
735
754
  variants:
736
755
  default:
737
756
  - '[{"url": "stun:23.21.150.121"}]'
757
+ media.recorder.video.frame_drops:
758
+ variants:
759
+ default:
760
+ - true
761
+ - false
738
762
  media.setsinkid.enabled:
739
763
  variants:
740
764
  default:
@@ -753,6 +777,14 @@ pref:
753
777
  variants:
754
778
  default:
755
779
  - null
780
+ midi.prompt.testing:
781
+ variants:
782
+ default:
783
+ - true
784
+ midi.testing:
785
+ variants:
786
+ default:
787
+ - true
756
788
  # disable automatic connection
757
789
  # https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections
758
790
  network.captive-portal-service.enabled:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: prefpicker
3
- Version: 1.10.0
3
+ Version: 1.13.0
4
4
  Summary: PrefPicker - Manage & generate prefs.js files
5
5
  Home-page: https://github.com/MozillaSecurity/prefpicker
6
6
  Author: Tyson Smith
@@ -40,7 +40,7 @@ skip_install = true
40
40
  commands =
41
41
  pylint {posargs}
42
42
  deps =
43
- pylint==2.15.10
43
+ pylint==2.17.4
44
44
  usedevelop = true
45
45
 
46
46
  [testenv:release]
@@ -51,7 +51,7 @@ skip_install = true
51
51
  commands =
52
52
  semantic-release publish -v DEBUG
53
53
  deps =
54
- python-semantic-release
54
+ python-semantic-release>=7.0.0,<8.0.0
55
55
  setuptools>=43
56
56
  setuptools_scm[toml]>=3.4
57
57
  wheel
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes