sourcecode 1.60.0__py3-none-any.whl → 1.63.0__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.
- sourcecode/__init__.py +1 -1
- sourcecode/cli.py +10 -0
- sourcecode/hibernate_strat.py +980 -0
- sourcecode/mcp/registry.py +6 -3
- sourcecode/mcp/server.py +8 -1
- sourcecode/migrate_check.py +243 -32
- sourcecode/serializer.py +44 -1
- {sourcecode-1.60.0.dist-info → sourcecode-1.63.0.dist-info}/METADATA +53 -1
- {sourcecode-1.60.0.dist-info → sourcecode-1.63.0.dist-info}/RECORD +12 -11
- {sourcecode-1.60.0.dist-info → sourcecode-1.63.0.dist-info}/WHEEL +0 -0
- {sourcecode-1.60.0.dist-info → sourcecode-1.63.0.dist-info}/entry_points.txt +0 -0
- {sourcecode-1.60.0.dist-info → sourcecode-1.63.0.dist-info}/licenses/LICENSE +0 -0
sourcecode/__init__.py
CHANGED
sourcecode/cli.py
CHANGED
|
@@ -4838,6 +4838,16 @@ def migrate_check_cmd(
|
|
|
4838
4838
|
MIG-007 javax.inject import (MEDIUM)
|
|
4839
4839
|
MIG-008 javax.ws.rs import (MEDIUM — JAX-RS changed)
|
|
4840
4840
|
|
|
4841
|
+
\b
|
|
4842
|
+
Hibernate 5→6 stratification (in the 'hibernate' output section):
|
|
4843
|
+
4 independent layers (JPA annotations / Criteria / HQL / SPI), a per-layer
|
|
4844
|
+
risk matrix with effort ranges, a module exposure map, critical call-chain
|
|
4845
|
+
detection, golden-SQL hotspots, a hibernate_readiness score, and an UPGRADE
|
|
4846
|
+
vs REWRITE verdict (dynamic Criteria, custom SPI, reflection-built queries,
|
|
4847
|
+
or concatenated query strings force the REWRITE classification).
|
|
4848
|
+
Emits actionable rewrite_targets[] (call-site line ranges → target_api +
|
|
4849
|
+
migration_kind) so a migration agent can consume the output directly.
|
|
4850
|
+
|
|
4841
4851
|
\b
|
|
4842
4852
|
Examples:
|
|
4843
4853
|
sourcecode migrate-check .
|