crackerjack 0.38.13__py3-none-any.whl → 0.38.14__py3-none-any.whl

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 crackerjack might be problematic. Click here for more details.

@@ -366,24 +366,6 @@ HOOKS_REGISTRY: dict[str, list[HookMetadata]] = {
366
366
  "experimental": False,
367
367
  "pass_filenames": False,
368
368
  },
369
- {
370
- "id": "pyright",
371
- "name": "pyright-type-checking",
372
- "repo": "local",
373
- "rev": "",
374
- "tier": 3,
375
- "time_estimate": 0.25,
376
- "stages": ["pre-push", "manual"],
377
- "args": [],
378
- "files": "^crackerjack/.*\\.py$",
379
- "exclude": r"^crackerjack/(mcp|plugins)/.*\.py$|crackerjack/code_cleaner\.py$",
380
- "additional_dependencies": None,
381
- "types_or": None,
382
- "language": "system",
383
- "entry": "uv run pyright",
384
- "experimental": False,
385
- "pass_filenames": None,
386
- },
387
369
  ],
388
370
  "experimental": [],
389
371
  }
@@ -579,7 +561,6 @@ class DynamicConfigGenerator:
579
561
  "bandit",
580
562
  "refurb",
581
563
  "complexipy",
582
- "pyright",
583
564
  ):
584
565
  hook["exclude"] = r"^tests/|^src/"
585
566
  else:
@@ -95,12 +95,13 @@ class ConfigTemplateService:
95
95
  "stages": ["pre-push", "manual"],
96
96
  },
97
97
  {
98
- "id": "pyright",
99
- "name": "pyright-type-checking",
100
- "entry": "uv run pyright",
98
+ "id": "zuban",
99
+ "name": "zuban-type-checking",
100
+ "entry": "uv run zuban check",
101
101
  "language": "system",
102
- "files": r"^crackerjack/.*\.py$",
103
- "exclude": r"^crackerjack/(mcp|plugins)/.*\.py$|crackerjack/code_cleaner\.py$",
102
+ "args": ["--config-file", "mypy.ini", "./crackerjack"],
103
+ "pass_filenames": False,
104
+ "exclude": r"^tests/|^src/",
104
105
  "stages": ["pre-push", "manual"],
105
106
  },
106
107
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crackerjack
3
- Version: 0.38.13
3
+ Version: 0.38.14
4
4
  Summary: Crackerjack Python project management tool
5
5
  Project-URL: documentation, https://github.com/lesleslie/crackerjack
6
6
  Project-URL: homepage, https://github.com/lesleslie/crackerjack
@@ -215,7 +215,7 @@ Limited tool-specific auto-fixes for simple formatting issues:
215
215
 
216
216
  The AI agent intelligently fixes:
217
217
 
218
- - **Type Errors (pyright)**: Adds missing annotations, fixes type mismatches
218
+ - **Type Errors (zuban)**: Adds missing annotations, fixes type mismatches
219
219
  - **🔒 Security Issues (bandit)**: Comprehensive security hardening including:
220
220
  - **Shell Injection Prevention**: Removes `shell=True` from subprocess calls
221
221
  - **Weak Cryptography**: Replaces MD5/SHA1 with SHA256
@@ -679,7 +679,7 @@ Crackerjack runs hooks in a two-stage process for optimal development workflow:
679
679
 
680
680
  **Comprehensive Hooks (~30 seconds):**
681
681
 
682
- - Pyright type checking
682
+ - Zuban type checking
683
683
  - Bandit security analysis
684
684
  - Dead code detection (vulture)
685
685
  - Dependency analysis (creosote)
@@ -3,7 +3,7 @@ crackerjack/__init__.py,sha256=DajG9zHB8qBdgdiKMumrrssUbKeMXmtIQ3oOaSTb46Y,1426
3
3
  crackerjack/__main__.py,sha256=6Te0CW6qyKiso0cTHv9stWnDZ9W8KnWXzW0oQ3hN7n8,55498
4
4
  crackerjack/api.py,sha256=PyCRaZHvKWdu62_2O4t_HcEfKNBdqyrfPdonS_PNn4c,21495
5
5
  crackerjack/code_cleaner.py,sha256=M1zVaq31uW0nOkPneKR8kfR3892gyyVx0VhFgRaxsj4,44338
6
- crackerjack/dynamic_config.py,sha256=4c8Fts9vyH8Tdon_47OFVT1iTBINSzSgB0WoeSvpzII,22418
6
+ crackerjack/dynamic_config.py,sha256=85Kec1R3wthnLP0wd3LI3_gUI7-aV-mr-OLoUOCBnF4,21759
7
7
  crackerjack/errors.py,sha256=yYbZ92kn_y6acEWgQvEPvozAYs2HT65uLwAXrtXxGsE,10049
8
8
  crackerjack/interactive.py,sha256=t5FbxWeOErSl5kod4V8Gu5yF5yuWoZlwqlOdquOQ-vo,21943
9
9
  crackerjack/py313.py,sha256=uLzXnII2N3Qng45lzb8-gMVe3z-U9dmT7V_BRV-zHJo,6192
@@ -162,7 +162,7 @@ crackerjack/services/changelog_automation.py,sha256=KUeXCYLihRfLR0mUIRiI2aRQdCfe
162
162
  crackerjack/services/config.py,sha256=1gUQkcHPCGHVYSlx6mcrJlJLVIWhdaL7RjEmuy8_ev4,13704
163
163
  crackerjack/services/config_integrity.py,sha256=Ac6-c7WuupsyrP2dxx_ijgjzpNnx9G0NWsXB-SZjelg,2904
164
164
  crackerjack/services/config_merge.py,sha256=ubApDKbYMREaHARP3oaW9vY8iVeYuknsr6tJIiIz-_E,18999
165
- crackerjack/services/config_template.py,sha256=RgSYFVNBxdBfMitlRqz7bzkEHaQhEWMm3pUMS7maRFU,18035
165
+ crackerjack/services/config_template.py,sha256=DssO4t_XZl3PCA4LV4TEQpRulZbfnx1ZKqcBB06vZlI,18047
166
166
  crackerjack/services/contextual_ai_assistant.py,sha256=6Pnb2r824c4JYkP5mtCH8sJ2OPPvI-KtzbXcosspCfE,19962
167
167
  crackerjack/services/coverage_badge_service.py,sha256=N6FDVd93zVzYLMzkjx4Hbk2dhA83ujLOH2AUE93PIsg,6673
168
168
  crackerjack/services/coverage_ratchet.py,sha256=eKxmFyg-7Rnctnk--6P-yNNOFhoKwzTxd4iCJ52dtZE,13439
@@ -226,8 +226,8 @@ crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-8
226
226
  crackerjack/tools/validate_regex_patterns.py,sha256=J7GG9EP1fASpRIsG8qRPeiCSkdCwmk0sdo29GgoJ6w8,5863
227
227
  crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
228
228
  crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
229
- crackerjack-0.38.13.dist-info/METADATA,sha256=0Hn2s62A3z7OJwd0jlZ67DDRblFHWPSNXLbhYfWq9HE,38083
230
- crackerjack-0.38.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
231
- crackerjack-0.38.13.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
232
- crackerjack-0.38.13.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
233
- crackerjack-0.38.13.dist-info/RECORD,,
229
+ crackerjack-0.38.14.dist-info/METADATA,sha256=R-lmCXd1FqckgsLk87Y6jO72lfBMy5EsalN-hUjCsF4,38079
230
+ crackerjack-0.38.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
231
+ crackerjack-0.38.14.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
232
+ crackerjack-0.38.14.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
233
+ crackerjack-0.38.14.dist-info/RECORD,,