Commit 64f3921
committed
feat(pypi): add pyproject.toml support to IntelliJ plugin
Add component analysis support for pyproject.toml manifest files,
enabling inline vulnerability diagnostics for Python projects using
PEP 621 ([project.dependencies]) and Poetry
([tool.poetry.dependencies]) formats.
New classes:
- PyprojectCAAnnotator: extracts dependencies from TOML PSI structure
- PyprojectCAIntentionAction: quick-fix for version updates
- PyprojectCAInspection: inspection registration
Modified files:
- SaAction, SaUtils: recognize pyproject.toml as supported manifest
- CAAnnotator, SAIntentionAction: add pyproject.toml to python mapping
- ApiService: apply Python-specific settings for pyproject.toml
- plugin.xml: register annotator and inspection for TOML language
- README.md: document pyproject.toml support
Implements TC-3853
Assisted-by: Claude Code1 parent f0ffd4d commit 64f3921
10 files changed
Lines changed: 514 additions & 10 deletions
File tree
- src/main
- java/org/jboss/tools/intellij
- componentanalysis
- pypi
- exhort
- stackanalysis
- resources/META-INF
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
| |||
318 | 318 | | |
319 | 319 | | |
320 | 320 | | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
321 | 336 | | |
322 | 337 | | |
323 | 338 | | |
| |||
365 | 380 | | |
366 | 381 | | |
367 | 382 | | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
368 | 387 | | |
369 | 388 | | |
370 | 389 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
| 277 | + | |
278 | 278 | | |
279 | 279 | | |
280 | 280 | | |
| |||
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
| 53 | + | |
53 | 54 | | |
54 | 55 | | |
55 | 56 | | |
| |||
0 commit comments