sourcecode 0.15.0__tar.gz → 0.15.1__tar.gz
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-0.15.0 → sourcecode-0.15.1}/-o +1 -1
- {sourcecode-0.15.0 → sourcecode-0.15.1}/PKG-INFO +1 -1
- {sourcecode-0.15.0 → sourcecode-0.15.1}/docs/schema.md +2 -2
- {sourcecode-0.15.0 → sourcecode-0.15.1}/pyproject.toml +1 -1
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/__init__.py +1 -1
- {sourcecode-0.15.0 → sourcecode-0.15.1}/.gitignore +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/.ruff.toml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/README.md +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/architecture_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/architecture_summary.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/classifier.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/cli.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/code_notes_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/coverage_parser.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/dependency_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/__init__.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/base.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/dart.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/dotnet.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/elixir.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/go.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/heuristic.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/java.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/jvm_ext.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/nodejs.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/parsers.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/php.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/project.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/python.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/ruby.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/rust.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/systems.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/terraform.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/detectors/tooling.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/doc_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/env_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/git_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/graph_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/metrics_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/prepare_context.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/redactor.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/scanner.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/schema.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/semantic_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/serializer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/summarizer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/tree_utils.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/src/sourcecode/workspace.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/__init__.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/conftest.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/coverage.xml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/fastapi_app/pyproject.toml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/fastapi_app/src/main.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/go_service/cmd/api/main.go +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/go_service/go.mod +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/jacoco.xml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/lcov.info +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/nextjs_app/app/page.tsx +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/nextjs_app/package.json +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/nextjs_app/pnpm-lock.yaml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/apps/web/app/page.tsx +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/apps/web/package.json +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/packages/api/main.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/packages/api/pyproject.toml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/pnpm-workspace.yaml +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_architecture_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_architecture_summary.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_classifier.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_cli.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_coverage_parser.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_dependency_analyzer_node_python.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_dependency_analyzer_polyglot.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_dependency_schema.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_go_rust_java.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_nodejs.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_php_ruby_dart.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_python.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_universal_managed.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detector_universal_systems.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_detectors_base.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_doc_analyzer_jsdom.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_doc_analyzer_python.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_graph_analyzer_polyglot.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_graph_analyzer_python_node.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_graph_schema.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_dependencies.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_detection.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_docs.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_graph_modules.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_lqn.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_metrics.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_multistack.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_semantics.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_integration_universal.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_metrics_analyzer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_packaging.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_real_projects.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_redactor.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_scanner.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_schema.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_semantic_analyzer_node.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_semantic_analyzer_python.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_semantic_import_resolution.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_semantic_schema.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_summarizer.py +0 -0
- {sourcecode-0.15.0 → sourcecode-0.15.1}/tests/test_workspace_analyzer.py +0 -0
|
@@ -81,7 +81,7 @@ Campos:
|
|
|
81
81
|
{
|
|
82
82
|
"schema_version": "1.0",
|
|
83
83
|
"generated_at": "2026-04-07T19:41:05.686277+00:00",
|
|
84
|
-
"sourcecode_version": "0.15.
|
|
84
|
+
"sourcecode_version": "0.15.1",
|
|
85
85
|
"analyzed_path": "/abs/path/to/project"
|
|
86
86
|
}
|
|
87
87
|
```
|
|
@@ -645,7 +645,7 @@ Ejemplo de salida para un monorepo con web Node.js y API Python con `--dependenc
|
|
|
645
645
|
"metadata": {
|
|
646
646
|
"schema_version": "1.0",
|
|
647
647
|
"generated_at": "2026-04-07T19:41:05.686277+00:00",
|
|
648
|
-
"sourcecode_version": "0.15.
|
|
648
|
+
"sourcecode_version": "0.15.1",
|
|
649
649
|
"analyzed_path": "/abs/path/to/project"
|
|
650
650
|
},
|
|
651
651
|
"file_tree": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sourcecode-0.15.0 → sourcecode-0.15.1}/tests/fixtures/pnpm_monorepo/packages/api/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|