howler-sentinel-plugin 0.2.0.dev326__tar.gz → 0.2.0.dev327__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 (20) hide show
  1. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/PKG-INFO +3 -3
  2. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/pyproject.toml +6 -5
  3. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/LICENSE +0 -0
  4. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/README.md +0 -0
  5. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/__init__.py +0 -0
  6. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/actions/azure_emit_hash.py +0 -0
  7. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/actions/send_to_sentinel.py +0 -0
  8. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/actions/update_defender_xdr_alert.py +0 -0
  9. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/actions/update_defender_xdr_incident.py +0 -0
  10. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/config.py +0 -0
  11. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/manifest.yml +0 -0
  12. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/mapping/sentinel_incident.py +0 -0
  13. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/mapping/xdr_alert.py +0 -0
  14. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/mapping/xdr_alert_evidence.py +0 -0
  15. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/odm/__init__.py +0 -0
  16. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/odm/hit.py +0 -0
  17. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/odm/models/sentinel.py +0 -0
  18. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/routes/__init__.py +0 -0
  19. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/routes/ingest.py +0 -0
  20. {howler_sentinel_plugin-0.2.0.dev326 → howler_sentinel_plugin-0.2.0.dev327}/sentinel/utils/tenant_utils.py +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: howler-sentinel-plugin
3
- Version: 0.2.0.dev326
3
+ Version: 0.2.0.dev327
4
4
  Summary: A howler plugin for integration with Microsoft's Sentinel API
5
5
  License: MIT
6
6
  License-File: LICENSE
7
7
  Author: CCCS
8
8
  Author-email: analysis-development@cyber.gc.ca
9
- Requires-Python: >=3.9.17, <4.0
9
+ Requires-Python: >=3.10, <4.0
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.10
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Programming Language :: Python :: 3.14
17
- Requires-Dist: opentelemetry-sdk (==1.41.1)
17
+ Requires-Dist: opentelemetry-sdk (==1.40.0)
18
18
  Requires-Dist: python-dateutil (>=2.9.0.post0,<3.0.0)
19
19
  Description-Content-Type: text/markdown
20
20
 
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "howler-sentinel-plugin"
3
- version = "0.2.0.dev326"
3
+ version = "0.2.0.dev327"
4
4
  description = "A howler plugin for integration with Microsoft's Sentinel API"
5
5
  authors = [{ name = "CCCS", email = "analysis-development@cyber.gc.ca" }]
6
6
  license = { text = "MIT" }
7
7
  readme = "README.md"
8
- requires-python = ">=3.9.17, <4.0"
8
+ requires-python = ">=3.10, <4.0"
9
9
 
10
10
  ######################
11
11
  # autoflake settings #
@@ -77,7 +77,7 @@ ignore_missing_imports = true
77
77
  [tool.ruff]
78
78
  line-length = 120
79
79
  indent-width = 4
80
- target-version = "py39"
80
+ target-version = "py310"
81
81
 
82
82
  [tool.ruff.lint]
83
83
  select = [
@@ -139,7 +139,7 @@ pytest = "^8.4.2"
139
139
  mock = "^5.2.0"
140
140
  pytest-cov = "^6.3.0"
141
141
  coverage = { extras = ["toml"], version = "^7.10.7" }
142
- diff-cover = "^9.7.2"
142
+ diff-cover = "^10.3.0"
143
143
  python-dotenv = "^1.2.1"
144
144
 
145
145
 
@@ -150,7 +150,8 @@ types-python-dateutil = "^2.9.0.20260124"
150
150
 
151
151
  [tool.poetry.dependencies]
152
152
  python-dateutil = "^2.9.0.post0"
153
- opentelemetry-sdk = "1.41.1"
153
+ opentelemetry-sdk = "1.40.0"
154
+
154
155
  [build-system]
155
156
  requires = ["poetry-core>=2.0.0,<3.0.0"]
156
157
  build-backend = "poetry.core.masonry.api"