crackerjack 0.38.13__py3-none-any.whl → 0.38.15__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.
- crackerjack/dynamic_config.py +0 -19
- crackerjack/services/config_template.py +6 -5
- crackerjack/services/initialization.py +1 -1
- crackerjack/services/status_authentication.py +3 -3
- {crackerjack-0.38.13.dist-info → crackerjack-0.38.15.dist-info}/METADATA +4 -4
- {crackerjack-0.38.13.dist-info → crackerjack-0.38.15.dist-info}/RECORD +9 -9
- {crackerjack-0.38.13.dist-info → crackerjack-0.38.15.dist-info}/WHEEL +0 -0
- {crackerjack-0.38.13.dist-info → crackerjack-0.38.15.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.38.13.dist-info → crackerjack-0.38.15.dist-info}/licenses/LICENSE +0 -0
crackerjack/dynamic_config.py
CHANGED
|
@@ -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": "
|
|
99
|
-
"name": "
|
|
100
|
-
"entry": "uv run
|
|
98
|
+
"id": "zuban",
|
|
99
|
+
"name": "zuban-type-checking",
|
|
100
|
+
"entry": "uv run zuban check",
|
|
101
101
|
"language": "system",
|
|
102
|
-
"
|
|
103
|
-
"
|
|
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
|
]
|
|
@@ -116,8 +116,8 @@ class InitializationService:
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
def _get_config_files(self) -> dict[str, str]:
|
|
119
|
+
# Skip pre-commit configuration to prevent hook installation
|
|
119
120
|
return {
|
|
120
|
-
".pre-commit-config.yaml": "smart_merge",
|
|
121
121
|
"pyproject.toml": "smart_merge",
|
|
122
122
|
".gitignore": "smart_merge_gitignore",
|
|
123
123
|
"CLAUDE.md": "smart_append",
|
|
@@ -18,9 +18,9 @@ class AccessLevel(str, Enum):
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
class AuthenticationMethod(str, Enum):
|
|
21
|
-
API_KEY = "api_key"
|
|
22
|
-
JWT_TOKEN = "jwt_token"
|
|
23
|
-
HMAC_SIGNATURE = "hmac_signature"
|
|
21
|
+
API_KEY = "api_key" # nosec B105
|
|
22
|
+
JWT_TOKEN = "jwt_token" # nosec B105
|
|
23
|
+
HMAC_SIGNATURE = "hmac_signature" # nosec B105
|
|
24
24
|
LOCAL_ONLY = "local_only"
|
|
25
25
|
|
|
26
26
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crackerjack
|
|
3
|
-
Version: 0.38.
|
|
3
|
+
Version: 0.38.15
|
|
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
|
|
@@ -74,7 +74,7 @@ Description-Content-Type: text/markdown
|
|
|
74
74
|
[](https://github.com/astral-sh/uv)
|
|
75
75
|
[](https://github.com/pre-commit/pre-commit)
|
|
76
76
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
77
|
-

|
|
78
78
|
|
|
79
79
|
## 🎯 Purpose
|
|
80
80
|
|
|
@@ -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 (
|
|
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
|
-
-
|
|
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=
|
|
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=
|
|
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
|
|
@@ -179,7 +179,7 @@ crackerjack/services/filesystem.py,sha256=nmL3mYqylS_BSQpwFbC7EMHoA44K5qUxa9CPg1
|
|
|
179
179
|
crackerjack/services/git.py,sha256=E4z-hdA0UR-y5FY2A8d3fugt5Q41lonLAIt_op2Zde0,12727
|
|
180
180
|
crackerjack/services/health_metrics.py,sha256=nDuKEC2a5csOhMpy6zXJkls1Y4Vfrr62-4cFcWCr8ow,21536
|
|
181
181
|
crackerjack/services/heatmap_generator.py,sha256=zz5V-zXPfoCGNXoj7iuyOeFuDRRUhFpxuENUnd0X75g,26200
|
|
182
|
-
crackerjack/services/initialization.py,sha256=
|
|
182
|
+
crackerjack/services/initialization.py,sha256=SxgEU3iFMU62hB6mHyfug0RUytJrfgYQkuh2aUi1v1o,26064
|
|
183
183
|
crackerjack/services/input_validator.py,sha256=Botr3ottp9InSw163QaFrNfy0kM_STsJdWBbjsCX96M,22262
|
|
184
184
|
crackerjack/services/intelligent_commit.py,sha256=HfryPb8ieDPcirPQm1ZYGihZMhAx-n3qv88UAaeFUuE,11307
|
|
185
185
|
crackerjack/services/log_manager.py,sha256=GzZJ_lwbvuj8JscnvqR2TsQ1XHrX6PturqZ6wJCkFLo,8578
|
|
@@ -206,7 +206,7 @@ crackerjack/services/security.py,sha256=plgIz-B8oYN_mpF4NYrqHnT7TRcsp4jr0-YlV9Wg
|
|
|
206
206
|
crackerjack/services/security_logger.py,sha256=AAjd9VKVmCo158UifyEKd79VgtWKeuaIVyXYL8qvqT8,17001
|
|
207
207
|
crackerjack/services/server_manager.py,sha256=MwvMMxhaCiZD4pcKM2ODXB-gu2s22n_v_uIqrwoJsHs,11934
|
|
208
208
|
crackerjack/services/smart_scheduling.py,sha256=VSaL7DpKR6aa0sC_TUrYP9ZgC9CB7tE3TTNzEqB-GpE,4352
|
|
209
|
-
crackerjack/services/status_authentication.py,sha256=
|
|
209
|
+
crackerjack/services/status_authentication.py,sha256=jzZ1p5Trl39X8uXeyYO39te78dz3zsdDmSVSjEW58eA,16495
|
|
210
210
|
crackerjack/services/status_security_manager.py,sha256=et0h6w7Wt1cPFjzg7frsykAQ-IMfiAXr44WU9Fs6-1U,10967
|
|
211
211
|
crackerjack/services/terminal_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
212
|
crackerjack/services/thread_safe_status_collector.py,sha256=DXtuaj1gT4KwPZ33LHE-_-AewSVa8I0whnFseEOW3IA,16393
|
|
@@ -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.
|
|
230
|
-
crackerjack-0.38.
|
|
231
|
-
crackerjack-0.38.
|
|
232
|
-
crackerjack-0.38.
|
|
233
|
-
crackerjack-0.38.
|
|
229
|
+
crackerjack-0.38.15.dist-info/METADATA,sha256=FvoSB8Brwvk48ul5z684mrW5AMQAWBZSbFoy3A88zjo,38079
|
|
230
|
+
crackerjack-0.38.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
231
|
+
crackerjack-0.38.15.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
232
|
+
crackerjack-0.38.15.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
233
|
+
crackerjack-0.38.15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|