sourcecode 1.35.30__tar.gz → 1.35.31__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-1.35.30 → sourcecode-1.35.31}/PKG-INFO +3 -3
- {sourcecode-1.35.30 → sourcecode-1.35.31}/README.md +2 -2
- {sourcecode-1.35.30 → sourcecode-1.35.31}/pyproject.toml +1 -1
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/__init__.py +1 -1
- {sourcecode-1.35.30 → sourcecode-1.35.31}/.github/workflows/build-windows.yml +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/.gitignore +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/.ruff.toml +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/CHANGELOG.md +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/CONTRIBUTING.md +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/LICENSE +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/SECURITY.md +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/raw +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/adaptive_scanner.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/architecture_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/architecture_summary.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/ast_extractor.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/cache.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/canonical_ir.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/cir_graphs.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/classifier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/cli.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/code_notes_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/confidence_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/context_scorer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/context_summarizer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/contract_model.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/contract_pipeline.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/coverage_parser.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/dependency_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/__init__.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/base.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/csproj_parser.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/dart.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/dotnet.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/elixir.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/go.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/heuristic.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/hybrid.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/java.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/jvm_ext.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/nodejs.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/parsers.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/php.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/project.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/python.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/ruby.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/rust.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/systems.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/terraform.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/detectors/tooling.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/doc_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/entrypoint_classifier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/env_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/error_schema.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/explain.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/file_chunker.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/file_classifier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/flow_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/fqn_utils.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/git_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/graph_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/license.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/__init__.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/onboarding/__init__.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/onboarding/applier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/onboarding/backup.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/onboarding/detector.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/onboarding/planner.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/orchestrator.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/registry.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/runner.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp/server.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/mcp_nudge.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/metrics_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/migrate_check.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/output_budget.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/path_filters.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/pr_comment_renderer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/pr_impact.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/prepare_context.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/progress.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/ranking_engine.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/redactor.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/relevance_scorer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/rename_refactor.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/repo_classifier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/repository_ir.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/ris.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/runtime_classifier.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/scanner.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/schema.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/semantic_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/serializer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_event_topology.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_findings.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_impact.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_model.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_security_audit.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_semantic.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/spring_tx_analyzer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/summarizer.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/__init__.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/config.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/consent.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/events.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/filters.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/telemetry/transport.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/tree_utils.py +0 -0
- {sourcecode-1.35.30 → sourcecode-1.35.31}/src/sourcecode/workspace.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcecode
|
|
3
|
-
Version: 1.35.
|
|
3
|
+
Version: 1.35.31
|
|
4
4
|
Summary: Persistent structural context and ultra-fast repeated analysis for AI coding agents
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Keywords: agents,ai,codebase,context,developer-tools,llm
|
|
@@ -40,7 +40,7 @@ Description-Content-Type: text/markdown
|
|
|
40
40
|
|
|
41
41
|
**Persistent structural context and ultra-fast repeated analysis for AI coding agents.**
|
|
42
42
|
|
|
43
|
-

|
|
44
44
|

|
|
45
45
|
|
|
46
46
|
---
|
|
@@ -114,7 +114,7 @@ pipx install sourcecode
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
sourcecode version
|
|
117
|
-
# sourcecode 1.35.
|
|
117
|
+
# sourcecode 1.35.31
|
|
118
118
|
|
|
119
119
|
**v1.35.28** — 7 bug fixes: `rename-class` cross-package disambiguation (BUG-4), `rename-class` collision detection (BUG-2), `find_java_files` false positive on `com/test/` package paths (BUG-1), `cold-start --compact` correct key names (BUG-6), `@EnableMethodSecurity` no longer suppresses SEC-001 (BUG-3), `explain` @Entity stereotype detection (BUG-5), XML+annotation mixed security retagging (BUG-7).
|
|
120
120
|
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Persistent structural context and ultra-fast repeated analysis for AI coding agents.**
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|
|
|
8
8
|
---
|
|
@@ -76,7 +76,7 @@ pipx install sourcecode
|
|
|
76
76
|
|
|
77
77
|
```bash
|
|
78
78
|
sourcecode version
|
|
79
|
-
# sourcecode 1.35.
|
|
79
|
+
# sourcecode 1.35.31
|
|
80
80
|
|
|
81
81
|
**v1.35.28** — 7 bug fixes: `rename-class` cross-package disambiguation (BUG-4), `rename-class` collision detection (BUG-2), `find_java_files` false positive on `com/test/` package paths (BUG-1), `cold-start --compact` correct key names (BUG-6), `@EnableMethodSecurity` no longer suppresses SEC-001 (BUG-3), `explain` @Entity stereotype detection (BUG-5), XML+annotation mixed security retagging (BUG-7).
|
|
82
82
|
```
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "sourcecode"
|
|
7
|
-
version = "1.35.
|
|
7
|
+
version = "1.35.31"
|
|
8
8
|
description = "Persistent structural context and ultra-fast repeated analysis for AI coding agents"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
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
|
|
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
|