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-18245] Broadcom Symantec Endpoint Protection 2.0.2 Release #2970

Merged
merged 1 commit into from
Nov 21, 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/broadcom_symantec_endpoint_protection/.CHECKSUM
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"spec": "baf09709664c64a4dbb1542bf55b70ae",
"manifest": "0d847c88dd8aab16e03d1d98f6353d0f",
"setup": "c979accaecd7d54469b93d66d94cf124",
"spec": "38d5538bdc7d8254602f03e1da5c5711",
"manifest": "dde8bc687ca0046dc7ee384768c73457",
"setup": "271970f80b21ead789b84454f52b0131",
"schemas": [
{
"identifier": "blacklist/schema.py",
Expand Down
2 changes: 1 addition & 1 deletion plugins/broadcom_symantec_endpoint_protection/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.4
FROM --platform=linux/amd64 rapid7/insightconnect-python-3-slim-plugin:6.2.0

LABEL organization=rapid7
LABEL sdk=python
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ from sys import argv

Name = "Broadcom Symantec Endpoint Protection"
Vendor = "rapid7"
Version = "2.0.1"
Version = "2.0.2"
Description = "Broadcom Symantec Endpoint Protection delivers the most complete, integrated endpoint security platform on the planet"


Expand Down
2 changes: 2 additions & 0 deletions plugins/broadcom_symantec_endpoint_protection/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,7 @@ Domain IDs are not the actual domain names - they are individual, unique IDs tha

# Version History

* 2.0.2 - Bumping requirements.txt ('aiohttp' package) | SDK bump to 6.2.0
* 2.0.1 - Bumping requirements.txt | SDK bump to 6.1.4
* 2.0.0 - Update Connection to add `ssl_verify` parameters to enable SSL verification on HTTP requests
* 1.0.3 - Update SDK to version to 5.4.4 | Update aiohttp to 3.9.2
Expand All @@ -489,6 +490,7 @@ Domain IDs are not the actual domain names - they are individual, unique IDs tha
* 1.0.0 - Initial plugin

# Links

* [Symantec Enterprise API Documentation](https://apidocs.securitycloud.symantec.com/#/)

## References
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ products: ["insightconnect"]
name: broadcom_symantec_endpoint_protection
title: Broadcom Symantec Endpoint Protection
description: Broadcom Symantec Endpoint Protection delivers the most complete, integrated endpoint security platform on the planet
version: 2.0.1
version: 2.0.2
connection_version: 2
vendor: rapid7
sdk:
type: slim
version: 6.1.4
version: 6.2.0
support: rapid7
supported_versions: ["v1 2024/03/12"]
status: []
Expand All @@ -29,6 +29,7 @@ links:
references:
- "[Broadcom Symantec Endpoint Protection](https://www.broadcom.com/products/cyber-security/endpoint/end-user)"
version_history:
- "2.0.2 - Bumping requirements.txt ('aiohttp' package) | SDK bump to 6.2.0"
- "2.0.1 - Bumping requirements.txt | SDK bump to 6.1.4"
- "2.0.0 - Update Connection to add `ssl_verify` parameters to enable SSL verification on HTTP requests"
- "1.0.3 - Update SDK to version to 5.4.4 | Update aiohttp to 3.9.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# All dependencies must be version-pinned, eg. requests==1.2.0
# See: https://pip.pypa.io/en/stable/user_guide/#requirements-files
# Uncomment the below line for building wheels
aiohttp==3.10.10
aiohttp==3.11.6
parameterized==0.9.0
2 changes: 1 addition & 1 deletion plugins/broadcom_symantec_endpoint_protection/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


setup(name="broadcom_symantec_endpoint_protection-rapid7-plugin",
version="2.0.1",
version="2.0.2",
description="Broadcom Symantec Endpoint Protection delivers the most complete, integrated endpoint security platform on the planet",
author="rapid7",
author_email="",
Expand Down
Loading