sourcecode 1.62.0__py3-none-any.whl → 1.64.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 +6 -3
- sourcecode/hibernate_strat.py +679 -117
- sourcecode/mcp/server.py +5 -1
- sourcecode/migrate_check.py +99 -1
- sourcecode/repository_ir.py +70 -0
- {sourcecode-1.62.0.dist-info → sourcecode-1.64.0.dist-info}/METADATA +71 -1
- {sourcecode-1.62.0.dist-info → sourcecode-1.64.0.dist-info}/RECORD +11 -11
- {sourcecode-1.62.0.dist-info → sourcecode-1.64.0.dist-info}/WHEEL +0 -0
- {sourcecode-1.62.0.dist-info → sourcecode-1.64.0.dist-info}/entry_points.txt +0 -0
- {sourcecode-1.62.0.dist-info → sourcecode-1.64.0.dist-info}/licenses/LICENSE +0 -0
sourcecode/__init__.py
CHANGED
sourcecode/cli.py
CHANGED
|
@@ -4841,9 +4841,12 @@ def migrate_check_cmd(
|
|
|
4841
4841
|
\b
|
|
4842
4842
|
Hibernate 5→6 stratification (in the 'hibernate' output section):
|
|
4843
4843
|
4 independent layers (JPA annotations / Criteria / HQL / SPI), a per-layer
|
|
4844
|
-
risk matrix, a module exposure map, critical call-chain
|
|
4845
|
-
|
|
4846
|
-
|
|
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.
|
|
4847
4850
|
|
|
4848
4851
|
\b
|
|
4849
4852
|
Examples:
|