crackerjack 0.36.1__py3-none-any.whl → 0.36.2__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/core/workflow_orchestrator.py +0 -3
- crackerjack/managers/publish_manager.py +0 -6
- {crackerjack-0.36.1.dist-info → crackerjack-0.36.2.dist-info}/METADATA +1 -1
- {crackerjack-0.36.1.dist-info → crackerjack-0.36.2.dist-info}/RECORD +7 -7
- {crackerjack-0.36.1.dist-info → crackerjack-0.36.2.dist-info}/WHEEL +0 -0
- {crackerjack-0.36.1.dist-info → crackerjack-0.36.2.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.36.1.dist-info → crackerjack-0.36.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -428,16 +428,13 @@ class WorkflowPipeline:
|
|
|
428
428
|
publishing_success = await self._execute_publishing_workflow(
|
|
429
429
|
options, workflow_id
|
|
430
430
|
)
|
|
431
|
-
self.console.print(f"[dim]DEBUG: publishing_success={publishing_success}[/dim]")
|
|
432
431
|
if not publishing_success:
|
|
433
432
|
success = False
|
|
434
433
|
|
|
435
434
|
# Execute commit workflow independently if requested
|
|
436
435
|
# Note: Commit workflow runs regardless of publish success to ensure
|
|
437
436
|
# version bump changes are always committed when requested
|
|
438
|
-
self.console.print(f"[dim]DEBUG: About to execute commit workflow, options.commit={options.commit}[/dim]")
|
|
439
437
|
commit_success = await self._execute_commit_workflow(options, workflow_id)
|
|
440
|
-
self.console.print(f"[dim]DEBUG: commit_success={commit_success}[/dim]")
|
|
441
438
|
if not commit_success:
|
|
442
439
|
success = False
|
|
443
440
|
|
|
@@ -430,14 +430,8 @@ class PublishManagerImpl:
|
|
|
430
430
|
else False
|
|
431
431
|
)
|
|
432
432
|
|
|
433
|
-
# DEBUG: Log the actual publish result for troubleshooting
|
|
434
|
-
self.console.print(f"[dim]DEBUG: uv publish returncode={result.returncode}[/dim]")
|
|
435
|
-
if result.stdout:
|
|
436
|
-
self.console.print(f"[dim]DEBUG: stdout contains success indicator={has_success_indicator}[/dim]")
|
|
437
|
-
|
|
438
433
|
# Consider it successful if either return code is 0 OR we find success indicators
|
|
439
434
|
success = result.returncode == 0 or has_success_indicator
|
|
440
|
-
self.console.print(f"[dim]DEBUG: publish_package() returning {success}[/dim]")
|
|
441
435
|
|
|
442
436
|
if success:
|
|
443
437
|
self._handle_publish_success()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crackerjack
|
|
3
|
-
Version: 0.36.
|
|
3
|
+
Version: 0.36.2
|
|
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
|
|
@@ -54,7 +54,7 @@ crackerjack/core/service_watchdog.py,sha256=Ttj1imOxvUea4Tkf5JO1e2dQtGIK7D-bX1xO
|
|
|
54
54
|
crackerjack/core/session_coordinator.py,sha256=TgoGE9DfXe2x-OkH93Ld9dX9ROjx2_mZFkGXen-z5YI,15680
|
|
55
55
|
crackerjack/core/timeout_manager.py,sha256=_sbEsfYDwWx7y0Pn89QCoAZ5DpWIbCdtR9qkG_Kqj5E,15013
|
|
56
56
|
crackerjack/core/websocket_lifecycle.py,sha256=74kn6ugu6FLlDQhCNSPgqguCFwRoT1WFOvtl8G2OyFc,12860
|
|
57
|
-
crackerjack/core/workflow_orchestrator.py,sha256=
|
|
57
|
+
crackerjack/core/workflow_orchestrator.py,sha256=jh8G1xKqxXwD0yGaFHgdESRjm23-kUZt4qriMJltowM,70789
|
|
58
58
|
crackerjack/docs/INDEX.md,sha256=a6CGFEeL5DX_FRft_JFWd0nOxoBmCSSp-QHIC3B7ato,342
|
|
59
59
|
crackerjack/docs/generated/api/API_REFERENCE.md,sha256=mWoqImZA7AhDvRqqF1MhUo70g_pnZr3NoBeZQRotqN8,155816
|
|
60
60
|
crackerjack/docs/generated/api/CLI_REFERENCE.md,sha256=ikuG0hO5EjIiQlJtAUnvEuAhXDa-JHPULPXNNmUwvk4,2805
|
|
@@ -84,7 +84,7 @@ crackerjack/intelligence/integration.py,sha256=vVaC2Fp5RbbABpaohCePzGw1XANuRztGl
|
|
|
84
84
|
crackerjack/managers/__init__.py,sha256=PFWccXx4hDQA76T02idAViOLVD-aPeVpgjdfSkh_Dmk,298
|
|
85
85
|
crackerjack/managers/async_hook_manager.py,sha256=c0HFR98sFwfk0uZ3NmAe_6OVZpBrq9I570V8A2DoIxw,5129
|
|
86
86
|
crackerjack/managers/hook_manager.py,sha256=_FT0ngwPwujqg0KZGpLz-pP07mwDmptJ5pVkiy5yS8k,7820
|
|
87
|
-
crackerjack/managers/publish_manager.py,sha256=
|
|
87
|
+
crackerjack/managers/publish_manager.py,sha256=5jpYM2IeTxavP2KYypZqz83ASQrBQDOhcKpws8DLFbM,22040
|
|
88
88
|
crackerjack/managers/test_command_builder.py,sha256=1TlPzddNcDDxRORH6UvAudcbRc6hKwFyknSEVLkiWAo,3459
|
|
89
89
|
crackerjack/managers/test_executor.py,sha256=2837Ti4OaNsmLxnmELjbQ18hmfL0-Z2EW-W2UeFSDcE,13871
|
|
90
90
|
crackerjack/managers/test_manager.py,sha256=BRPBWXx4flPDK0w96xyHhg-9dmUca1vpKQRM2VofSlI,13158
|
|
@@ -224,8 +224,8 @@ crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-8
|
|
|
224
224
|
crackerjack/tools/validate_regex_patterns.py,sha256=9ejFb7Tw1js_oydzuEeeeXvrU5ipHUEX9ATBfkLCCE8,5811
|
|
225
225
|
crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
|
|
226
226
|
crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
|
|
227
|
-
crackerjack-0.36.
|
|
228
|
-
crackerjack-0.36.
|
|
229
|
-
crackerjack-0.36.
|
|
230
|
-
crackerjack-0.36.
|
|
231
|
-
crackerjack-0.36.
|
|
227
|
+
crackerjack-0.36.2.dist-info/METADATA,sha256=CW_eiV9r9qye6AIgKiTf8EdnFwZ4YA6EJcfClZYliN0,37942
|
|
228
|
+
crackerjack-0.36.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
229
|
+
crackerjack-0.36.2.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
230
|
+
crackerjack-0.36.2.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
231
|
+
crackerjack-0.36.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|