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

Merging next to main for release 2.0.15 #22

Merged
merged 9 commits into from
Aug 19, 2024
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# Juniper SRX

Publisher: Splunk
Connector Version: 2.0.14
Connector Version: 2.0.15
Product Vendor: Juniper Networks
Product Name: Juniper SRX
Product Version Supported (regex): ".\*"
Minimum Product Version: 5.5.0
Minimum Product Version: 6.2.1

This app implements various containment and investigative actions on a Juniper SRX device. Uses port 830 by default if no port is set

Expand Down
24 changes: 20 additions & 4 deletions junipersrx.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"publisher": "Splunk",
"package_name": "phantom_junipersrx",
"main_module": "junipersrx_connector.py",
"app_version": "2.0.14",
"utctime_updated": "2023-12-01T11:37:32.000000Z",
"app_version": "2.0.15",
"utctime_updated": "2024-07-24T12:22:59.000000Z",
"product_vendor": "Juniper Networks",
"product_name": "Juniper SRX",
"product_version_regex": ".*",
"min_phantom_version": "5.5.0",
"min_phantom_version": "6.2.1",
"python_version": "3",
"fips_compliant": true,
"latest_tested_versions": [
Expand Down Expand Up @@ -66,6 +66,10 @@
"identifier": "block_ip",
"undo": "unblock ip",
"read_only": false,
"lock": {
"enabled": true,
"concurrency": false
},
"parameters": {
"ip": {
"description": "IP to block",
Expand Down Expand Up @@ -165,6 +169,10 @@
"identifier": "unblock_ip",
"undo": "block ip",
"read_only": false,
"lock": {
"enabled": true,
"concurrency": false
},
"parameters": {
"ip": {
"description": "IP to block",
Expand Down Expand Up @@ -265,6 +273,10 @@
"identifier": "block_application",
"read_only": false,
"undo": "unblock application",
"lock": {
"enabled": true,
"concurrency": false
},
"parameters": {
"application": {
"description": "Application to block",
Expand Down Expand Up @@ -364,6 +376,10 @@
"identifier": "unblock_application",
"read_only": false,
"undo": "block application",
"lock": {
"enabled": true,
"concurrency": false
},
"parameters": {
"application": {
"description": "Application to unblock",
Expand Down Expand Up @@ -609,4 +625,4 @@
}
]
}
}
}
1 change: 1 addition & 0 deletions release_notes/2.0.15.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* [PAPP-34053] fix concurrency issue in actions by adding lock
Loading