Skip to content

Commit f4db210

Browse files
barryyosi-panwcontent-botdneilcybelYairGlicktcarmeli1
authored
fix-platform-core-packs-dependency-gaps (demisto#39489)
* fix-platform-core-packs-dependency-gaps * revert common scripts supported modules * pre commit * fix rn * CybelAngel pack for incidents (demisto#37711) (demisto#39497) * Clean commit with CybelAngel Pack * Updating pack with clean code * Updating the Incident field names and mappings * Update Packs/CybelAngel/Integrations/CybelAngel/CybelAngel.py * Update Packs/CybelAngel/Integrations/CybelAngel/CybelAngel.yml * Update Packs/CybelAngel/Integrations/CybelAngel/CybelAngel.py * removing picture from playbook director * Fixing build errrors * Fixing cond None error * Fixing bare except statements and line length * Successful Pre-commit updates * Updating errors from last Validate * Removing IPs & Domains from test data * Updating Test data * Updated with new Demisto-sdk & removed unecessary playbooks * Added more unit tests to get above 70% * Updated types for MyPy issues * Adding Integration image back in * Fixing prior build issues * Updating incident field definitions & other errors * Updating more pre-commit errors * Updating Classifiers, release notes, Layouts, And yml sections * Reverting poetry files * cancel change in poetry and toml file * Updating Classifiers, release notes, Layouts, and yml * Updating the pack metadata, CybelAngel.yml to reflect Collect & Connect sections, updating CybelAngelEventCollector.yml to have supportlevelheader:xsoar * rn * Updated release notes, layout, and Author Image * Updating API responses from update_status_commmand & remediate_command * fix conflict * fix pre commit * Updated test file * Removing white space from CybelAngel_test --------- Co-authored-by: dneilcybel <[email protected]> Co-authored-by: Yair Glick <[email protected]> Co-authored-by: Yair Glick <[email protected]> Co-authored-by: YairGlik <[email protected]> * Fixed an issue where mirror-out took precedence over mirror-in, resulting in the removal of values in SNOW. (demisto#38761) * first commit * add logs * add logs * fix pre-commit * delete after * remove redundant * add rn * fix tests * fix rn * fix rn * fix rn * fix rn * Update Packs/ServiceNow/ReleaseNotes/2_7_12.md Co-authored-by: ShirleyDenkberg <[email protected]> * fix * fix * remove log * remove log * remove log * small fix * fix tests --------- Co-authored-by: ShirleyDenkberg <[email protected]> --------- Co-authored-by: content-bot <[email protected]> Co-authored-by: dneilcybel <[email protected]> Co-authored-by: Yair Glick <[email protected]> Co-authored-by: Yair Glick <[email protected]> Co-authored-by: YairGlik <[email protected]> Co-authored-by: Tal Carmeli <[email protected]> Co-authored-by: ShirleyDenkberg <[email protected]>
1 parent 997b414 commit f4db210

File tree

11 files changed

+46
-61
lines changed

11 files changed

+46
-61
lines changed

Config/core_packs_platform_list.json

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@
9292
{
9393
"id": "DemistoRESTAPI",
9494
"supportedModules": [
95+
"C1",
96+
"C3",
9597
"X0",
9698
"X1",
9799
"X3",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
#### Scripts
3+
4+
##### ContentPackInstaller
5+
6+
- Updated the Docker image to: *demisto/xsoar-tools:1.0.0.2974997*.
7+
8+
##### ProvidesCommand
9+
10+
- Updated the Docker image to: *demisto/python3:3.12.8.1983910*.
11+
12+
##### GenerateAsBuilt
13+
14+
- Updated the Docker image to: *demisto/teams:1.0.0.2027266*.
15+
16+
##### GetFieldsByIncidentType
17+
18+
- Updated the Docker image to: *demisto/python3:3.12.8.1983910*.
19+
20+
##### IncidentFields
21+
22+
- Updated the Docker image to: *demisto/python3:3.12.8.1983910*.
23+
24+
##### EditServerConfig
25+
26+
- Updated the Docker image to: *demisto/python3:3.12.8.1983910*.
27+
28+
##### ExportIndicatorsToCSV
29+
30+
- Updated the Docker image to: *demisto/python3:3.12.8.1983910*.
31+

Packs/CommonScripts/Scripts/ContentPackInstaller/ContentPackInstaller.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,11 @@ tags:
3838
- Content Management
3939
timeout: 600ns
4040
type: python
41-
dockerimage: demisto/xsoar-tools:1.0.0.1902141
41+
dockerimage: demisto/xsoar-tools:1.0.0.2974997
4242
marketplaces:
4343
- xsoar
4444
- marketplacev2
4545
- platform
46-
supportedModules:
47-
- X0
48-
- X1
49-
- X3
50-
- X5
51-
- ENT_PLUS
5246
tests:
5347
- ContentPackInstaller_Test
5448
fromversion: 6.0.0

Packs/CommonScripts/Scripts/EditServerConfig/EditServerConfig.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,11 @@ script: '-'
2020
timeout: '0'
2121
type: python
2222
subtype: python3
23-
dockerimage: demisto/python3:3.11.10.113941
23+
dockerimage: demisto/python3:3.12.8.1983910
2424
fromversion: 6.0.0
2525
tests:
2626
- TestEditServerConfig
2727
marketplaces:
2828
- xsoar
2929
- marketplacev2
30-
- platform
31-
supportedModules:
32-
- X0
33-
- X1
34-
- X3
35-
- X5
36-
- ENT_PLUS
30+
- platform

Packs/CommonScripts/Scripts/ExportAuditLogsToFile/ExportAuditLogsToFile.yml

-6
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,5 @@ marketplaces:
4040
- xsoar
4141
- marketplacev2
4242
- platform
43-
supportedModules:
44-
- X0
45-
- X1
46-
- X3
47-
- X5
48-
- ENT_PLUS
4943
tests:
5044
- No tests (auto formatted)

Packs/CommonScripts/Scripts/ExportIndicatorsToCSV/ExportIndicatorsToCSV.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependson:
1818
must:
1919
- core-api-post
2020
- core-api-get
21-
dockerimage: demisto/python3:3.11.10.115186
21+
dockerimage: demisto/python3:3.12.8.1983910
2222
enabled: true
2323
name: ExportIndicatorsToCSV
2424
runas: DBotWeakRole
@@ -33,11 +33,5 @@ marketplaces:
3333
- xsoar
3434
- marketplacev2
3535
- platform
36-
supportedModules:
37-
- X0
38-
- X1
39-
- X3
40-
- X5
41-
- ENT_PLUS
4236
tests:
4337
- No tests (auto formatted)

Packs/CommonScripts/Scripts/GenerateAsBuilt/GenerateAsBuilt.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,10 @@ subtype: python3
2222
timeout: '0'
2323
type: python
2424
fromversion: 6.0.0
25-
dockerimage: demisto/teams:1.0.0.116912
25+
dockerimage: demisto/teams:1.0.0.2027266
2626
tests:
2727
- No tests (auto formatted)
2828
marketplaces:
2929
- xsoar
3030
- marketplacev2
31-
- platform
32-
supportedModules:
33-
- X0
34-
- X1
35-
- X3
36-
- X5
37-
- ENT_PLUS
31+
- platform

Packs/CommonScripts/Scripts/GetFieldsByIncidentType/GetFieldsByIncidentType.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,12 @@ subtype: python3
4444
dependson:
4545
must:
4646
- '|||core-api-get'
47-
dockerimage: demisto/python3:3.11.10.115186
47+
dockerimage: demisto/python3:3.12.8.1983910
4848
runas: DBotWeakRole
4949
tests:
5050
- No test - unit test
5151
fromversion: 5.0.0
5252
marketplaces:
5353
- xsoar
5454
- marketplacev2
55-
- platform
56-
supportedModules:
57-
- X0
58-
- X1
59-
- X3
60-
- X5
61-
- ENT_PLUS
55+
- platform

Packs/CommonScripts/Scripts/IncidentFields/IncidentFields.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,12 @@ subtype: python3
2828
dependson:
2929
must:
3030
- '|||core-api-get'
31-
dockerimage: demisto/python3:3.11.10.115186
31+
dockerimage: demisto/python3:3.12.8.1983910
3232
runas: DBotWeakRole
3333
tests:
3434
- No test - unit test
3535
fromversion: 5.0.0
3636
marketplaces:
3737
- xsoar
3838
- marketplacev2
39-
- platform
40-
supportedModules:
41-
- X0
42-
- X1
43-
- X3
44-
- X5
45-
- ENT_PLUS
39+
- platform

Packs/CommonScripts/Scripts/ProvidesCommand/ProvidesCommand.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,12 @@ dependson:
2525
must:
2626
- core-api-post
2727
- core-api-get
28-
dockerimage: demisto/python3:3.11.10.115186
28+
dockerimage: demisto/python3:3.12.8.1983910
2929
runas: DBotWeakRole
3030
tests:
3131
- No test - unit test
3232
fromversion: 5.0.0
3333
marketplaces:
3434
- xsoar
3535
- marketplacev2
36-
- platform
37-
supportedModules:
38-
- X0
39-
- X1
40-
- X3
41-
- X5
42-
- ENT_PLUS
36+
- platform

Packs/CommonScripts/pack_metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Common Scripts",
33
"description": "Frequently used scripts pack.",
44
"support": "xsoar",
5-
"currentVersion": "1.19.41",
5+
"currentVersion": "1.19.42",
66
"author": "Cortex XSOAR",
77
"url": "https://www.paloaltonetworks.com/cortex",
88
"email": "",

0 commit comments

Comments
 (0)