Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SOAR-18473] Math - fedRAMP, SDK bump and vulnerability #2999

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plugins/math/.CHECKSUM
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spec": "057aaea15b4dac436df277eaf21b1172",
"manifest": "d764412b6d589e5330ece619415a0361",
"setup": "a1e6979da8016ee0b27b09a3440a5305",
"spec": "ef68635b48c0501c8406598ce91ba828",
"manifest": "a7bd614a81131eeb40c309643ab6308f",
"setup": "dcb64a4722f841e407855590d83dfd93",
"schemas": [
{
"identifier": "calculate/schema.py",
Expand Down
2 changes: 1 addition & 1 deletion plugins/math/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 rapid7/insightconnect-python-3-slim-plugin:6.1.3
FROM --platform=linux/amd64 rapid7/insightconnect-python-3-slim-plugin:6.2.2

LABEL organization=rapid7
LABEL sdk=python
Expand Down
2 changes: 1 addition & 1 deletion plugins/math/bin/komand_math
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from sys import argv

Name = "Math"
Vendor = "rapid7"
Version = "1.2.2"
Version = "1.2.3"
Description = "Basic mathematical operations"


Expand Down
1 change: 1 addition & 0 deletions plugins/math/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ Example output:

# Version History

* 1.2.3 - Updated SDK to the latest version (v6.2.2) | Address vulnerabilities
* 1.2.2 - Initial updates for fedramp compliance | Updated SDK to the latest version
* 1.2.1 - Update to v4 Python plugin runtime
* 1.2.0 - New action Max
Expand Down
5 changes: 3 additions & 2 deletions plugins/math/plugin.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ products: [insightconnect]
name: math
title: Math
description: Basic mathematical operations
version: 1.2.2
version: 1.2.3
connection_version: 1
vendor: rapid7
support: community
Expand All @@ -26,12 +26,13 @@ hub_tags:
features: []
sdk:
type: slim
version: 6.1.3
version: 6.2.2
user: nobody
key_features:
- "Math operations module and exponents"
- "Math Division and multiplication, addition and subtraction"
version_history:
- "1.2.3 - Updated SDK to the latest version (v6.2.2) | Address vulnerabilities"
- "1.2.2 - Initial updates for fedramp compliance | Updated SDK to the latest version"
- "1.2.1 - Update to v4 Python plugin runtime"
- "1.2.0 - New action Max"
Expand Down
2 changes: 1 addition & 1 deletion plugins/math/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


setup(name="math-rapid7-plugin",
version="1.2.2",
version="1.2.3",
description="Basic mathematical operations",
author="rapid7",
author_email="",
Expand Down
Loading