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] [Base64] Bump SDK Version #2996

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/base64/.CHECKSUM
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spec": "81bd832c6a30ae1daa0bde478acf91ed",
"manifest": "552308f92909afddf7c635f6f8ff2be6",
"setup": "0fad9fcdf7a3cd12d003e8b267bab721",
"spec": "0b101e587666e9903365b756057e6bb5",
"manifest": "62dd6f59437aa9410dfb46fe232f107e",
"setup": "2142a8e5ac609e21eee48ba91f4704bc",
"schemas": [
{
"identifier": "decode/schema.py",
Expand Down
2 changes: 1 addition & 1 deletion plugins/base64/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.0
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/base64/bin/komand_base64
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from sys import argv

Name = "Base64"
Vendor = "rapid7"
Version = "1.1.7"
Version = "1.1.8"
Description = "Encode and decode data using the base64 alphabet"


Expand Down
1 change: 1 addition & 0 deletions plugins/base64/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ characters to `\uffd` or `?`. While ignore will drop the character from the outp

# Version History

* 1.1.8 - Updated SDK to the latest version (v6.2.2) | Address vulnerabilities
* 1.1.7 - Initial updates for fedramp compliance | Updated SDK to the latest version
* 1.1.6 - Update to v4 Python plugin runtime
* 1.1.5 - Improve PluginException message in Decode action
Expand Down
5 changes: 3 additions & 2 deletions plugins/base64/plugin.spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ products: [insightconnect]
name: base64
title: Base64
description: Encode and decode data using the base64 alphabet
version: 1.1.7
version: 1.1.8
connection_version: 1
vendor: rapid7
support: community
Expand All @@ -17,7 +17,7 @@ resources:
license_url: https://github.com/rapid7/insightconnect-plugins/blob/master/LICENSE
sdk:
type: slim
version: 6.1.0
version: 6.2.2
user: nobody
key_features:
- "Encode data in Base64 to transfer binary data, image files, etc. in a text format"
Expand All @@ -29,6 +29,7 @@ troubleshooting: |
option to set how errors are to be handled. These options are "replace" and "ignore". Replace will change all non UTF-8
characters to `\uffd` or `?`. While ignore will drop the character from the output.
version_history:
- "1.1.8 - Updated SDK to the latest version (v6.2.2) | Address vulnerabilities"
- "1.1.7 - Initial updates for fedramp compliance | Updated SDK to the latest version"
- "1.1.6 - Update to v4 Python plugin runtime"
- "1.1.5 - Improve PluginException message in Decode action"
Expand Down
2 changes: 1 addition & 1 deletion plugins/base64/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


setup(name="base64-rapid7-plugin",
version="1.1.7",
version="1.1.8",
description="Encode and decode data using the base64 alphabet",
author="rapid7",
author_email="",
Expand Down
Loading