insightconnect-plugin-runtime 6.4.1__py3-none-any.whl → 6.4.2__py3-none-any.whl
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.
- insightconnect_plugin_runtime/helper.py +1 -1
- {insightconnect_plugin_runtime-6.4.1.dist-info → insightconnect_plugin_runtime-6.4.2.dist-info}/METADATA +15 -14
- {insightconnect_plugin_runtime-6.4.1.dist-info → insightconnect_plugin_runtime-6.4.2.dist-info}/RECORD +5 -5
- {insightconnect_plugin_runtime-6.4.1.dist-info → insightconnect_plugin_runtime-6.4.2.dist-info}/WHEEL +0 -0
- {insightconnect_plugin_runtime-6.4.1.dist-info → insightconnect_plugin_runtime-6.4.2.dist-info}/top_level.txt +0 -0
|
@@ -71,7 +71,7 @@ def hash_sha1(log: Dict[str, Any], keys: Optional[List[str]] = None) -> str:
|
|
|
71
71
|
|
|
72
72
|
# Iterate through items to hash and hash
|
|
73
73
|
for key, value in items_to_hash:
|
|
74
|
-
hash_.update(f"{key}{value}".encode(ENCODE_TYPE))
|
|
74
|
+
hash_.update(f"{key}{value}".encode(ENCODE_TYPE, errors="ignore"))
|
|
75
75
|
|
|
76
76
|
return hash_.hexdigest()
|
|
77
77
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: insightconnect-plugin-runtime
|
|
3
|
-
Version: 6.4.
|
|
3
|
+
Version: 6.4.2
|
|
4
4
|
Summary: InsightConnect Plugin Runtime
|
|
5
5
|
Home-page: https://github.com/rapid7/komand-plugin-sdk-python
|
|
6
6
|
Author: Rapid7 Integrations Alliance
|
|
@@ -12,27 +12,27 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
12
12
|
Classifier: Natural Language :: English
|
|
13
13
|
Classifier: Topic :: Software Development :: Build Tools
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
|
-
Requires-Dist: requests==2.32.
|
|
15
|
+
Requires-Dist: requests==2.32.5
|
|
16
16
|
Requires-Dist: python_jsonschema_objects==0.5.2
|
|
17
17
|
Requires-Dist: jsonschema==4.22.0
|
|
18
|
-
Requires-Dist: certifi==
|
|
19
|
-
Requires-Dist: Flask==3.1.
|
|
18
|
+
Requires-Dist: certifi==2026.1.4
|
|
19
|
+
Requires-Dist: Flask==3.1.2
|
|
20
20
|
Requires-Dist: gunicorn==23.0.0
|
|
21
|
-
Requires-Dist: greenlet==3.
|
|
21
|
+
Requires-Dist: greenlet==3.3.0
|
|
22
22
|
Requires-Dist: gevent==25.5.1
|
|
23
|
-
Requires-Dist: marshmallow==3.
|
|
23
|
+
Requires-Dist: marshmallow==3.26.2
|
|
24
24
|
Requires-Dist: apispec==6.5.0
|
|
25
25
|
Requires-Dist: apispec-webframeworks==1.0.0
|
|
26
26
|
Requires-Dist: blinker==1.9.0
|
|
27
|
-
Requires-Dist: structlog==25.
|
|
27
|
+
Requires-Dist: structlog==25.5.0
|
|
28
28
|
Requires-Dist: python-json-logger==2.0.7
|
|
29
29
|
Requires-Dist: Jinja2==3.1.6
|
|
30
30
|
Requires-Dist: python-dateutil==2.9.0.post0
|
|
31
|
-
Requires-Dist: opentelemetry-sdk==1.
|
|
32
|
-
Requires-Dist: opentelemetry-instrumentation-flask==0.
|
|
33
|
-
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.
|
|
34
|
-
Requires-Dist: opentelemetry-instrumentation-requests==0.
|
|
35
|
-
Requires-Dist: urllib3==2.
|
|
31
|
+
Requires-Dist: opentelemetry-sdk==1.39.1
|
|
32
|
+
Requires-Dist: opentelemetry-instrumentation-flask==0.60b1
|
|
33
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.39.1
|
|
34
|
+
Requires-Dist: opentelemetry-instrumentation-requests==0.60b1
|
|
35
|
+
Requires-Dist: urllib3==2.6.3
|
|
36
36
|
Dynamic: author
|
|
37
37
|
Dynamic: author-email
|
|
38
38
|
Dynamic: classifier
|
|
@@ -63,10 +63,10 @@ to get started.
|
|
|
63
63
|
|
|
64
64
|
## Development of the InsightConnect Plugin Runtime
|
|
65
65
|
|
|
66
|
-
The Python Runtime codebase is built to support Python 3.
|
|
66
|
+
The Python Runtime codebase is built to support Python 3.13 as of version 6.4.0. The following dependencies will need
|
|
67
67
|
to be installed when developing or testing the Plugin Runtime:
|
|
68
68
|
|
|
69
|
-
- Python 3.11
|
|
69
|
+
- Python 3.13.11
|
|
70
70
|
- Docker
|
|
71
71
|
- make
|
|
72
72
|
- tox
|
|
@@ -226,6 +226,7 @@ contributed. Black is installed as a test dependency and the hook can be initial
|
|
|
226
226
|
after cloning this repository.
|
|
227
227
|
|
|
228
228
|
## Changelog
|
|
229
|
+
* 6.4.2 - Added error handling for `hash_sha1` in helpers | Updated base images to Python 3.13.11 | Updated dependencies
|
|
229
230
|
* 6.4.1 - Fix logging on cloud mode to remove `taskName` | Close boto client after assuming role
|
|
230
231
|
* 6.4.0 - When running in cloud mode, always create a new connection object | Bump Python version to 3.13.9 | Docker build tidyup to reduce image size
|
|
231
232
|
* 6.3.10 - Fixed tracing name to better allign otel standards
|
|
@@ -4,7 +4,7 @@ insightconnect_plugin_runtime/cli.py,sha256=Pb-Janu-XfRlSXxPHh30OIquljWptrhhS51C
|
|
|
4
4
|
insightconnect_plugin_runtime/connection.py,sha256=4uWclDTFSKZXbvzrq2VGwIM0_o54XaqHeGje3IMFCSA,2672
|
|
5
5
|
insightconnect_plugin_runtime/dispatcher.py,sha256=ru7njnyyWE1-oD-VbZJ-Z8tELwvDf69rM7Iezs4rbnw,1774
|
|
6
6
|
insightconnect_plugin_runtime/exceptions.py,sha256=LeZR2H_seHIUALLwnKyH5W7PX3VNa-lOTxJ0vZJra8I,8068
|
|
7
|
-
insightconnect_plugin_runtime/helper.py,sha256=
|
|
7
|
+
insightconnect_plugin_runtime/helper.py,sha256=saD2Vl_9Pt86pmrQOc5FvjjJAcHl5wgmKkcbyS8c4gE,34011
|
|
8
8
|
insightconnect_plugin_runtime/metrics.py,sha256=hf_Aoufip_s4k4o8Gtzz90ymZthkaT2e5sXh5B4LcF0,3186
|
|
9
9
|
insightconnect_plugin_runtime/plugin.py,sha256=5CNxVAmiAwdEXviBU-_oA3_Ud03PYO_fs-ph9x_2yO0,27286
|
|
10
10
|
insightconnect_plugin_runtime/schema.py,sha256=6MVw5hqGATU1VLgwfOWfPsP3hy1OnsugCTsgX8sknes,521
|
|
@@ -80,7 +80,7 @@ tests/unit/test_server_spec.py,sha256=je97BaktgK0Fiz3AwFPkcmHzYtOJJNqJV_Fw5hrvqX
|
|
|
80
80
|
tests/unit/test_trigger.py,sha256=E53mAUoVyponWu_4IQZ0IC1gQ9lakBnTn_9vKN2IZfg,1692
|
|
81
81
|
tests/unit/test_variables.py,sha256=OUEOqGYZA3Nd5oKk5GVY3hcrWKHpZpxysBJcO_v5gzs,291
|
|
82
82
|
tests/unit/utils.py,sha256=hcY0A2H_DMgCDXUTvDtCXMdMvRjLQgTaGcTpATb8YG0,2236
|
|
83
|
-
insightconnect_plugin_runtime-6.4.
|
|
84
|
-
insightconnect_plugin_runtime-6.4.
|
|
85
|
-
insightconnect_plugin_runtime-6.4.
|
|
86
|
-
insightconnect_plugin_runtime-6.4.
|
|
83
|
+
insightconnect_plugin_runtime-6.4.2.dist-info/METADATA,sha256=ZIS-QYMiVGgGODEBRwOXRq_2dk5dx2rQ9frEWS0NX5I,17628
|
|
84
|
+
insightconnect_plugin_runtime-6.4.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
85
|
+
insightconnect_plugin_runtime-6.4.2.dist-info/top_level.txt,sha256=AJtyJOpiFzHxsbHUICTcUKXyrGQ3tZxhrEHsPjJBvEA,36
|
|
86
|
+
insightconnect_plugin_runtime-6.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|