agentsec-cli 1.0.1__tar.gz → 1.0.3__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.
Files changed (37) hide show
  1. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/CHANGELOG.md +23 -0
  2. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/PKG-INFO +2 -2
  3. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/__init__.py +1 -1
  4. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/sarif.py +2 -2
  5. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/PKG-INFO +2 -2
  6. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/pyproject.toml +2 -2
  7. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/CODE_OF_CONDUCT.md +0 -0
  8. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/CONTRIBUTING.md +0 -0
  9. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/LICENSE +0 -0
  10. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/MANIFEST.in +0 -0
  11. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/README.md +0 -0
  12. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/SECURITY.md +0 -0
  13. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/baseline.py +0 -0
  14. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/cli.py +0 -0
  15. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/owasp.py +0 -0
  16. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/parsers/__init__.py +0 -0
  17. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/parsers/core.py +0 -0
  18. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/parsers/json_parser.py +0 -0
  19. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/parsers/toml_parser.py +0 -0
  20. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/parsers/yaml_parser.py +0 -0
  21. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/report.py +0 -0
  22. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/rules/__init__.py +0 -0
  23. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/rules/additional.py +0 -0
  24. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/rules/base.py +0 -0
  25. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/scanner.py +0 -0
  26. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/utils/__init__.py +0 -0
  27. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec/utils/toml_compat.py +0 -0
  28. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/SOURCES.txt +0 -0
  29. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/dependency_links.txt +0 -0
  30. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/entry_points.txt +0 -0
  31. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/requires.txt +0 -0
  32. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/agentsec_cli.egg-info/top_level.txt +0 -0
  33. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/setup.cfg +0 -0
  34. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/tests/test_baseline.py +0 -0
  35. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/tests/test_compat.py +0 -0
  36. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/tests/test_owasp.py +0 -0
  37. {agentsec_cli-1.0.1 → agentsec_cli-1.0.3}/tests/test_scanner.py +0 -0
@@ -5,6 +5,29 @@ All notable changes to AgentSec will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3] - 2026-07-03
9
+
10
+ ### Fixed
11
+ - Recovered local development history that had never been pushed to GitHub (remote `main` only contained the LICENSE file). Realigned local repo as the canonical history.
12
+ - Corrected version drift: PyPI had `1.0.1` published manually (out-of-band of CI/CD), local files were on `1.0.2` and never tagged or released through the pipeline. Bumped to `1.0.3` as a clean, tagged, pipeline-published baseline.
13
+
14
+ ## [1.0.2] - 2026-07-02
15
+
16
+ ### Fixed
17
+ - Fixed SARIF spec version (`sarif["version"]` was accidentally set to `1.0.1` instead of `2.1.0`). This broke compatibility with all SARIF consumers including GitHub CodeQL.
18
+
19
+ ## [1.0.1] - 2026-07-02
20
+
21
+ ### Fixed
22
+ - Fixed version number in SARIF output (was 1.0.0, now 1.0.1)
23
+ - Fixed CI workflow: removed duplicate install steps, added fail-fast, fixed Python matrix
24
+ - Fixed publish workflow: added package validation (wheel install + version check), fixed fail-fast, added Python compatibility check
25
+ - Fixed duplicated dependencies in pyproject.toml (already correct)
26
+ - Fixed version inconsistency across files
27
+
28
+ ### Changed
29
+ - Updated version to 1.0.1 in pyproject.toml, agentsec/__init__.py, agentsec/sarif.py
30
+
8
31
  ## [1.0.0] - 2026-07-02
9
32
 
10
33
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsec-cli
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: Static security scanner for AI coding agents and MCP configurations
5
5
  Author: locface
6
6
  License-Expression: MIT
@@ -8,7 +8,7 @@ Project-URL: homepage, https://locface.github.io/AgentSec/
8
8
  Project-URL: repository, https://github.com/locface/AgentSec
9
9
  Project-URL: documentation, https://locface.github.io/AgentSec/docs/
10
10
  Project-URL: changelog, https://github.com/locface/AgentSec/blob/main/CHANGELOG.md
11
- Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.10
@@ -1,3 +1,3 @@
1
1
  """AgentSec: Static security scanner for AI coding agents and MCP configs."""
2
2
 
3
- __version__ = "1.0.1"
3
+ __version__ = "1.0.3"
@@ -90,12 +90,12 @@ def generate_sarif(findings: List[Dict[str, Any]], repo_root: str = ".") -> Dict
90
90
  "organization": "AgentSec",
91
91
  "informationUri": "https://github.com/locface/AgentSec",
92
92
  "rules": list(rules.values()),
93
- "version": "1.0.1"
93
+ "version": "1.0.3"
94
94
  }
95
95
  },
96
96
  "results": results,
97
97
  "properties": {
98
- "startTimeUtc": datetime.datetime.now(datetime.UTC).isoformat().replace("+00:00", "Z")
98
+ "startTimeUtc": datetime.datetime.now(datetime.timezone.utc).isoformat().replace("+00:00", "Z")
99
99
  }
100
100
  }
101
101
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsec-cli
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: Static security scanner for AI coding agents and MCP configurations
5
5
  Author: locface
6
6
  License-Expression: MIT
@@ -8,7 +8,7 @@ Project-URL: homepage, https://locface.github.io/AgentSec/
8
8
  Project-URL: repository, https://github.com/locface/AgentSec
9
9
  Project-URL: documentation, https://locface.github.io/AgentSec/docs/
10
10
  Project-URL: changelog, https://github.com/locface/AgentSec/blob/main/CHANGELOG.md
11
- Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Classifier: Intended Audience :: Developers
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.10
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "agentsec-cli"
3
- version = "1.0.1"
3
+ version = "1.0.3"
4
4
  description = "Static security scanner for AI coding agents and MCP configurations"
5
5
  readme = "README.md"
6
6
  authors = [{name = "locface"}]
7
7
  license = "MIT"
8
8
  classifiers = [
9
- "Development Status :: 5 - Production/Stable",
9
+ "Development Status :: 4 - Beta",
10
10
  "Intended Audience :: Developers",
11
11
  "Programming Language :: Python :: 3",
12
12
  "Programming Language :: Python :: 3.10",
File without changes
File without changes
File without changes
File without changes
File without changes