diff --git a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.py b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.py index 569e82357811..da42d5f6a3f1 100644 --- a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.py +++ b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.py @@ -1,6 +1,6 @@ import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 -from datetime import timezone +from datetime import UTC, datetime import random import dateparser @@ -74,7 +74,7 @@ def parser( assert isinstance( date_obj, datetime ), f"Could not parse date {date_str}" # MYPY Fix - return date_obj.replace(tzinfo=timezone.utc) + return date_obj.replace(tzinfo=UTC) def get_token_soap_request(user, password, instance, domain=None): @@ -1708,14 +1708,14 @@ def fetch_incidents( # Build incidents incidents = [] # Encountered that sometimes, somehow, on of next_fetch is not UTC. - last_fetch_time = from_time.replace(tzinfo=timezone.utc) + last_fetch_time = from_time.replace(tzinfo=UTC) next_fetch = last_fetch_time for record in records: incident, incident_created_time = client.record_to_incident( record, app_id, fetch_param_id ) # Encountered that sometimes, somehow, incident_created_time is not UTC. - incident_created_time = incident_created_time.replace(tzinfo=timezone.utc) + incident_created_time = incident_created_time.replace(tzinfo=UTC) if last_fetch_time < incident_created_time: incidents.append(incident) if next_fetch < incident_created_time: @@ -1743,7 +1743,7 @@ def get_fetch_time(last_fetch: dict, first_fetch_time: str) -> datetime: start_fetch = parser(next_run) else: start_fetch, _ = parse_date_range(first_fetch_time) - start_fetch.replace(tzinfo=timezone.utc) + start_fetch.replace(tzinfo=UTC) return start_fetch diff --git a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.yml b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.yml index 8479de4699fa..1316d210c600 100644 --- a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.yml +++ b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2.yml @@ -417,7 +417,7 @@ script: - arguments: [] description: Prints the Archer's integration cache. name: archer-print-cache - dockerimage: demisto/python3-deb:3.10.14.93258 + dockerimage: demisto/python3-deb:3.11.10.112166 isfetch: true script: '' subtype: python3 diff --git a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2_test.py b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2_test.py index 880e547b99ce..13c4bef997c7 100644 --- a/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2_test.py +++ b/Packs/ArcherRSA/Integrations/ArcherV2/ArcherV2_test.py @@ -1,5 +1,5 @@ import copy -from datetime import datetime, timezone +from datetime import datetime, UTC import pytest from CommonServerPython import DemistoException import demistomock as demisto @@ -561,7 +561,7 @@ def test_record_to_incident(self): record = copy.deepcopy(INCIDENT_RECORD) record['raw']['Field'][1]['@xmlConvertedValue'] = '2018-03-26T10:03:00Z' incident, incident_created_time = client.record_to_incident(record, 75, '305') - assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=timezone.utc) + assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=UTC) assert incident['name'] == 'RSA Archer Incident: 227602' assert incident['occurred'] == '2018-03-26T10:03:00Z' @@ -778,7 +778,7 @@ def test_record_to_incident_europe_time(self): incident['raw']['Field'][1]['@xmlConvertedValue'] = '2018-03-26T10:03:00Z' incident['record']['Date/Time Reported'] = "26/03/2018 10:03 AM" incident, incident_created_time = client.record_to_incident(INCIDENT_RECORD, 75, '305') - assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=timezone.utc) + assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=UTC) assert incident['occurred'] == '2018-03-26T10:03:00Z' def test_record_to_incident_american_time(self): @@ -800,7 +800,7 @@ def test_record_to_incident_american_time(self): incident, incident_created_time = client.record_to_incident( INCIDENT_RECORD, 75, '305' ) - assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=timezone.utc) + assert incident_created_time == datetime(2018, 3, 26, 10, 3, tzinfo=UTC) assert incident['occurred'] == '2018-03-26T10:03:00Z' def test_fetch_time_change(self, mocker): @@ -832,7 +832,7 @@ def test_fetch_time_change(self, mocker): mocker.patch.object(client, 'search_records', return_value=([record], {})) incidents, next_fetch = fetch_incidents(client, params, last_fetch, '305') assert last_fetch < next_fetch - assert next_fetch == datetime(2018, 4, 3, 10, 3, tzinfo=timezone.utc) + assert next_fetch == datetime(2018, 4, 3, 10, 3, tzinfo=UTC) assert incidents[0]['occurred'] == date_time_reported def test_two_fetches(self, mocker): @@ -867,11 +867,11 @@ def test_two_fetches(self, mocker): ) incidents, next_fetch = fetch_incidents(client, params, last_fetch, '305') assert last_fetch < next_fetch - assert next_fetch == datetime(2020, 3, 18, 10, 30, tzinfo=timezone.utc) + assert next_fetch == datetime(2020, 3, 18, 10, 30, tzinfo=UTC) assert incidents[0]['occurred'] == '2020-03-18T10:30:00.000Z' incidents, next_fetch = fetch_incidents(client, params, next_fetch, '305') assert last_fetch < next_fetch - assert next_fetch == datetime(2020, 3, 18, 15, 30, tzinfo=timezone.utc) + assert next_fetch == datetime(2020, 3, 18, 15, 30, tzinfo=UTC) assert incidents[0]['occurred'] == '2020-03-18T15:30:00.000Z' def test_fetch_got_old_incident(self, mocker): @@ -958,12 +958,12 @@ def test_same_record_returned_in_two_fetches(self, mocker): first_fetch = parser('2021-02-24T08:45:55Z') incidents, first_next_fetch = fetch_incidents(client, params, first_fetch, field_time_id) assert first_fetch < first_next_fetch - assert first_next_fetch == datetime(2021, 2, 25, 8, 45, 55, 977000, tzinfo=timezone.utc) + assert first_next_fetch == datetime(2021, 2, 25, 8, 45, 55, 977000, tzinfo=UTC) assert incidents[0]['occurred'] == '2021-02-25T08:45:55.977Z' # first_next_fetch_dt simulates the set to last_run done in fetch-incidents first_next_fetch_dt = parser(first_next_fetch.strftime(OCCURRED_FORMAT)) incidents, second_next_fetch = fetch_incidents(client, params, first_next_fetch_dt, field_time_id) - assert first_next_fetch == datetime(2021, 2, 25, 8, 45, 55, 977000, tzinfo=timezone.utc) + assert first_next_fetch == datetime(2021, 2, 25, 8, 45, 55, 977000, tzinfo=UTC) assert not incidents def test_search_records_by_report_command(self, mocker): diff --git a/Packs/ArcherRSA/ReleaseNotes/1_2_18.md b/Packs/ArcherRSA/ReleaseNotes/1_2_18.md new file mode 100644 index 000000000000..cceaab4218ed --- /dev/null +++ b/Packs/ArcherRSA/ReleaseNotes/1_2_18.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### RSA Archer v2 + +- Updated the Docker image to: *demisto/python3-deb:3.11.10.112166*. diff --git a/Packs/ArcherRSA/pack_metadata.json b/Packs/ArcherRSA/pack_metadata.json index 8dbdb676ad92..f07b05cca16b 100644 --- a/Packs/ArcherRSA/pack_metadata.json +++ b/Packs/ArcherRSA/pack_metadata.json @@ -2,7 +2,7 @@ "name": "RSA Archer", "description": "The RSA Archer GRC Platform provides a common foundation for managing policies, controls, risks, assessments and deficiencies across lines of business.", "support": "xsoar", - "currentVersion": "1.2.17", + "currentVersion": "1.2.18", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/CommonScripts/ReleaseNotes/1_15_73.md b/Packs/CommonScripts/ReleaseNotes/1_15_73.md new file mode 100644 index 000000000000..a7d70836eae4 --- /dev/null +++ b/Packs/CommonScripts/ReleaseNotes/1_15_73.md @@ -0,0 +1,24 @@ + +#### Scripts + +##### SSDeepSimilarity + +- Updated the Docker image to: *demisto/ssdeep:1.0.0.112284*. +##### PDFUnlocker + +- Updated the Docker image to: *demisto/readpdf:1.0.0.112283*. +##### JsonUnescape + +- Updated the Docker image to: *demisto/python3-deb:3.11.10.112166*. +##### ReadPDFFileV2 + +- Updated the Docker image to: *demisto/readpdf:1.0.0.112283*. +##### UnzipFile + +- Updated the Docker image to: *demisto/unzip:1.0.0.112289*. +##### PcapHTTPExtractor + +- Updated the Docker image to: *demisto/pcap-http-extractor:1.0.0.112272*. +##### ReadQRCode + +- Updated the Docker image to: *demisto/qrcode:1.0.0.112357*. diff --git a/Packs/CommonScripts/Scripts/JsonUnescape/JsonUnescape.yml b/Packs/CommonScripts/Scripts/JsonUnescape/JsonUnescape.yml index 17dc134e5ead..2d21caeef9ee 100644 --- a/Packs/CommonScripts/Scripts/JsonUnescape/JsonUnescape.yml +++ b/Packs/CommonScripts/Scripts/JsonUnescape/JsonUnescape.yml @@ -8,7 +8,7 @@ commonfields: contentitemexportablefields: contentitemfields: fromServerVersion: "" -dockerimage: demisto/python3-deb:3.10.13.85666 +dockerimage: demisto/python3-deb:3.11.10.112166 enabled: true name: JsonUnescape outputs: diff --git a/Packs/CommonScripts/Scripts/PDFUnlocker/PDFUnlocker.yml b/Packs/CommonScripts/Scripts/PDFUnlocker/PDFUnlocker.yml index eaac2f965b95..acc9c73e854a 100644 --- a/Packs/CommonScripts/Scripts/PDFUnlocker/PDFUnlocker.yml +++ b/Packs/CommonScripts/Scripts/PDFUnlocker/PDFUnlocker.yml @@ -18,7 +18,7 @@ args: secret: true description: Password of PDF file. scripttarget: 0 -dockerimage: demisto/readpdf:1.0.0.93363 +dockerimage: demisto/readpdf:1.0.0.112283 fromversion: 5.0.0 tests: - PDFUnlocker-Test diff --git a/Packs/CommonScripts/Scripts/PcapHTTPExtractor/PcapHTTPExtractor.yml b/Packs/CommonScripts/Scripts/PcapHTTPExtractor/PcapHTTPExtractor.yml index 21b49ed62dcd..05941f634971 100644 --- a/Packs/CommonScripts/Scripts/PcapHTTPExtractor/PcapHTTPExtractor.yml +++ b/Packs/CommonScripts/Scripts/PcapHTTPExtractor/PcapHTTPExtractor.yml @@ -67,7 +67,7 @@ tags: - http timeout: '0' type: python -dockerimage: demisto/pcap-http-extractor:1.0.0.93351 +dockerimage: demisto/pcap-http-extractor:1.0.0.112272 tests: - PcapHTTPExtractor-Test subtype: python3 diff --git a/Packs/CommonScripts/Scripts/ReadPDFFileV2/ReadPDFFileV2.yml b/Packs/CommonScripts/Scripts/ReadPDFFileV2/ReadPDFFileV2.yml index 04a84b503b35..7d51b7cb78cf 100644 --- a/Packs/CommonScripts/Scripts/ReadPDFFileV2/ReadPDFFileV2.yml +++ b/Packs/CommonScripts/Scripts/ReadPDFFileV2/ReadPDFFileV2.yml @@ -129,7 +129,7 @@ tags: - ingestion timeout: "0" type: python -dockerimage: demisto/readpdf:1.0.0.98214 +dockerimage: demisto/readpdf:1.0.0.112283 runas: DBotRole tests: - Extract Indicators From File - Generic v2 - Test diff --git a/Packs/CommonScripts/Scripts/ReadQRCode/ReadQRCode.yml b/Packs/CommonScripts/Scripts/ReadQRCode/ReadQRCode.yml index c8542ca5e564..3ea05b98fa90 100644 --- a/Packs/CommonScripts/Scripts/ReadQRCode/ReadQRCode.yml +++ b/Packs/CommonScripts/Scripts/ReadQRCode/ReadQRCode.yml @@ -26,7 +26,7 @@ tags: [] timeout: '0' type: python subtype: python3 -dockerimage: demisto/qrcode:1.0.0.98232 +dockerimage: demisto/qrcode:1.0.0.112357 fromversion: 6.10.0 tests: - No tests (auto formatted) diff --git a/Packs/CommonScripts/Scripts/SSDeepSimilarity/SSDeepSimilarity.yml b/Packs/CommonScripts/Scripts/SSDeepSimilarity/SSDeepSimilarity.yml index 0205720e65bc..2af4a03f9684 100644 --- a/Packs/CommonScripts/Scripts/SSDeepSimilarity/SSDeepSimilarity.yml +++ b/Packs/CommonScripts/Scripts/SSDeepSimilarity/SSDeepSimilarity.yml @@ -30,7 +30,7 @@ outputs: type: string scripttarget: 0 subtype: python3 -dockerimage: demisto/ssdeep:1.0.0.93570 +dockerimage: demisto/ssdeep:1.0.0.112284 runas: DBotWeakRole fromversion: 5.5.0 tests: diff --git a/Packs/CommonScripts/Scripts/UnzipFile/UnzipFile.yml b/Packs/CommonScripts/Scripts/UnzipFile/UnzipFile.yml index f0e61c1f8c74..1112cad78f52 100644 --- a/Packs/CommonScripts/Scripts/UnzipFile/UnzipFile.yml +++ b/Packs/CommonScripts/Scripts/UnzipFile/UnzipFile.yml @@ -35,7 +35,7 @@ tags: - file timeout: '0' type: python -dockerimage: demisto/unzip:1.0.0.86000 +dockerimage: demisto/unzip:1.0.0.112289 tests: - ZipFile-Test - UnzipFile-Test diff --git a/Packs/CommonScripts/pack_metadata.json b/Packs/CommonScripts/pack_metadata.json index 1952654fb973..09edf1c24fd2 100644 --- a/Packs/CommonScripts/pack_metadata.json +++ b/Packs/CommonScripts/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Common Scripts", "description": "Frequently used scripts pack.", "support": "xsoar", - "currentVersion": "1.15.72", + "currentVersion": "1.15.73", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/CortexAttackSurfaceManagement/ReleaseNotes/1_7_56.md b/Packs/CortexAttackSurfaceManagement/ReleaseNotes/1_7_56.md new file mode 100644 index 000000000000..9aede063c494 --- /dev/null +++ b/Packs/CortexAttackSurfaceManagement/ReleaseNotes/1_7_56.md @@ -0,0 +1,6 @@ + +#### Scripts + +##### RankServiceOwners + +- Updated the Docker image to: *demisto/xpanse-ml-ev2:1.0.0.112461*. diff --git a/Packs/CortexAttackSurfaceManagement/Scripts/RankServiceOwners/RankServiceOwners.yml b/Packs/CortexAttackSurfaceManagement/Scripts/RankServiceOwners/RankServiceOwners.yml index 08789dcb2fbc..a5ecbaa29067 100644 --- a/Packs/CortexAttackSurfaceManagement/Scripts/RankServiceOwners/RankServiceOwners.yml +++ b/Packs/CortexAttackSurfaceManagement/Scripts/RankServiceOwners/RankServiceOwners.yml @@ -9,7 +9,7 @@ comment: Recommend most likely service owners from those surfaced by Cortex ASM commonfields: id: RankServiceOwners version: -1 -dockerimage: demisto/xpanse-ml-ev2:1.0.0.110976 +dockerimage: demisto/xpanse-ml-ev2:1.0.0.112461 enabled: true name: RankServiceOwners runas: DBotWeakRole diff --git a/Packs/CortexAttackSurfaceManagement/pack_metadata.json b/Packs/CortexAttackSurfaceManagement/pack_metadata.json index a2e5bfd145b8..adfbf8becbfd 100644 --- a/Packs/CortexAttackSurfaceManagement/pack_metadata.json +++ b/Packs/CortexAttackSurfaceManagement/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Cortex Attack Surface Management", "description": "Content for working with Attack Surface Management (ASM).", "support": "xsoar", - "currentVersion": "1.7.55", + "currentVersion": "1.7.56", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GCP-IAM/Integrations/GCPIAM/GCPIAM.yml b/Packs/GCP-IAM/Integrations/GCPIAM/GCPIAM.yml index ddd807243bf9..da0ccbc7760b 100644 --- a/Packs/GCP-IAM/Integrations/GCPIAM/GCPIAM.yml +++ b/Packs/GCP-IAM/Integrations/GCPIAM/GCPIAM.yml @@ -1250,7 +1250,7 @@ script: description: Create a short-lived access token for a service account. The generated token will be exposed to the context menu and War Room, and can potentially be logged. execution: true name: gcp-iam-service-account-generate-access-token - dockerimage: demisto/google-api-py3:1.0.0.105788 + dockerimage: demisto/google-api-py3:1.0.0.112317 runonce: false script: '-' subtype: python3 diff --git a/Packs/GCP-IAM/ReleaseNotes/1_0_27.md b/Packs/GCP-IAM/ReleaseNotes/1_0_27.md new file mode 100644 index 000000000000..ba9eaf13875c --- /dev/null +++ b/Packs/GCP-IAM/ReleaseNotes/1_0_27.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### GCP-IAM + +- Updated the Docker image to: *demisto/google-api-py3:1.0.0.112317*. diff --git a/Packs/GCP-IAM/pack_metadata.json b/Packs/GCP-IAM/pack_metadata.json index 70b342e90e02..e519a8a16a74 100644 --- a/Packs/GCP-IAM/pack_metadata.json +++ b/Packs/GCP-IAM/pack_metadata.json @@ -2,7 +2,7 @@ "name": "GCP IAM", "description": "Manage identity and access control for Google Cloud Platform resources.", "support": "xsoar", - "currentVersion": "1.0.26", + "currentVersion": "1.0.27", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GSuiteAdmin/Integrations/GSuiteAdmin/GSuiteAdmin.yml b/Packs/GSuiteAdmin/Integrations/GSuiteAdmin/GSuiteAdmin.yml index 7157b9fb1e4e..08aaad5f849c 100644 --- a/Packs/GSuiteAdmin/Integrations/GSuiteAdmin/GSuiteAdmin.yml +++ b/Packs/GSuiteAdmin/Integrations/GSuiteAdmin/GSuiteAdmin.yml @@ -2895,7 +2895,7 @@ script: name: policy_schema description: Delete multiple policy values that are applied to a specific group. All targets must have the same target format. That is to say that they must point to the same target resource and must have the same keys specified in additionalTargetKeyNames, though the values for those keys may be different. On failure the request will return the error details as part of the google.rpc.Status. name: gsuite-policy-groups-delete - dockerimage: demisto/googleapi-python3:1.0.0.91615 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '-' subtype: python3 diff --git a/Packs/GSuiteAdmin/ReleaseNotes/1_2_1.md b/Packs/GSuiteAdmin/ReleaseNotes/1_2_1.md new file mode 100644 index 000000000000..f3085a116223 --- /dev/null +++ b/Packs/GSuiteAdmin/ReleaseNotes/1_2_1.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Workspace Admin + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GSuiteAdmin/pack_metadata.json b/Packs/GSuiteAdmin/pack_metadata.json index eac8ca7c2cd3..3b9867e801d5 100644 --- a/Packs/GSuiteAdmin/pack_metadata.json +++ b/Packs/GSuiteAdmin/pack_metadata.json @@ -2,7 +2,7 @@ "name": "G Suite Admin", "description": "G Suite Admin integration with Cortex XSOAR. G Suite or Google Workspace Admin is an integration to perform an action on IT infrastructure, create users, update settings, and more administrative tasks.", "support": "xsoar", - "currentVersion": "1.2.0", + "currentVersion": "1.2.1", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GSuiteSecurityAlertCenter/Integrations/GSuiteSecurityAlertCenter/GSuiteSecurityAlertCenter.yml b/Packs/GSuiteSecurityAlertCenter/Integrations/GSuiteSecurityAlertCenter/GSuiteSecurityAlertCenter.yml index 9375c7fcc1e4..b33d63c7786c 100644 --- a/Packs/GSuiteSecurityAlertCenter/Integrations/GSuiteSecurityAlertCenter/GSuiteSecurityAlertCenter.yml +++ b/Packs/GSuiteSecurityAlertCenter/Integrations/GSuiteSecurityAlertCenter/GSuiteSecurityAlertCenter.yml @@ -767,7 +767,7 @@ script: - contextPath: GSuiteSecurityAlert.Recover.failedAlerts.status description: Status of the failed alert recovery. type: String - dockerimage: demisto/googleapi-python3:1.0.0.89487 + dockerimage: demisto/googleapi-python3:1.0.0.112316 isfetch: true runonce: false script: '-' diff --git a/Packs/GSuiteSecurityAlertCenter/ReleaseNotes/1_1_44.md b/Packs/GSuiteSecurityAlertCenter/ReleaseNotes/1_1_44.md new file mode 100644 index 000000000000..b859439283e2 --- /dev/null +++ b/Packs/GSuiteSecurityAlertCenter/ReleaseNotes/1_1_44.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### G Suite Security Alert Center + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GSuiteSecurityAlertCenter/pack_metadata.json b/Packs/GSuiteSecurityAlertCenter/pack_metadata.json index 6b83904e5d84..7d9fb3859437 100644 --- a/Packs/GSuiteSecurityAlertCenter/pack_metadata.json +++ b/Packs/GSuiteSecurityAlertCenter/pack_metadata.json @@ -2,7 +2,7 @@ "name": "G Suite Security Alert Center", "description": "Fetch alert types, delete or recover alerts, retrieve an alert's metadata, and create or view alert feedback.", "support": "xsoar", - "currentVersion": "1.1.43", + "currentVersion": "1.1.44", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/Gmail/Integrations/Gmail/Gmail.yml b/Packs/Gmail/Integrations/Gmail/Gmail.yml index 463b7af62032..5332ad0de831 100644 --- a/Packs/Gmail/Integrations/Gmail/Gmail.yml +++ b/Packs/Gmail/Integrations/Gmail/Gmail.yml @@ -1735,7 +1735,7 @@ script: - contextPath: Gmail.ForwardingAddress.verificationStatus description: Indicates whether this address has been verified and is usable for forwarding. type: String - dockerimage: demisto/google-api-py3:1.0.0.110173 + dockerimage: demisto/google-api-py3:1.0.0.112317 isfetch: true runonce: false script: '-' diff --git a/Packs/Gmail/ReleaseNotes/1_3_25.md b/Packs/Gmail/ReleaseNotes/1_3_25.md new file mode 100644 index 000000000000..a0db93ff284e --- /dev/null +++ b/Packs/Gmail/ReleaseNotes/1_3_25.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Gmail + +- Updated the Docker image to: *demisto/google-api-py3:1.0.0.112317*. diff --git a/Packs/Gmail/pack_metadata.json b/Packs/Gmail/pack_metadata.json index ff42b92100c8..72d47b6366f7 100644 --- a/Packs/Gmail/pack_metadata.json +++ b/Packs/Gmail/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Gmail", "description": "Gmail API and user management (This integration replaces the Gmail functionality in the GoogleApps API and G Suite integration).", "support": "xsoar", - "currentVersion": "1.3.24", + "currentVersion": "1.3.25", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.py b/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.py index 65b8af9454b0..d3bf2837a58c 100644 --- a/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.py +++ b/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.py @@ -4,7 +4,7 @@ import re import json import base64 -from datetime import datetime, timedelta, timezone +from datetime import datetime, timedelta, UTC from email.utils import parsedate_to_datetime, format_datetime import httplib2 from httplib2 import socks @@ -369,7 +369,7 @@ def get_date_from_email_header(header: str) -> datetime | None: res = parsedate_to_datetime(date_part) if res.tzinfo is None: # some headers may contain a non TZ date so we assume utc - res = res.replace(tzinfo=timezone.utc) + res = res.replace(tzinfo=UTC) return res except Exception as ex: demisto.debug(f'Failed parsing date from header value: [{header}]. Err: {ex}. Will ignore and continue.') @@ -408,10 +408,10 @@ def get_occurred_date(email_data: dict) -> tuple[datetime, bool]: timestamp_len = len(str(int(time.time()))) if len(str(internalDate)) > timestamp_len: internalDate = (str(internalDate)[:timestamp_len]) - return datetime.fromtimestamp(int(internalDate), tz=timezone.utc), True + return datetime.fromtimestamp(int(internalDate), tz=UTC), True # we didn't get a date from anywhere demisto.info("Failed finding date from internal or headers. Using 'datetime.now()'") - return datetime.now(tz=timezone.utc), False + return datetime.now(tz=UTC), False def get_email_context(self, email_data, mailbox) -> tuple[dict, dict, dict, datetime, bool]: """Get the email context from email data @@ -543,7 +543,7 @@ def parse_date_isoformat_server(dt: str) -> datetime: Returns: datetime: datetime representation """ - return datetime.strptime(dt, '%Y-%m-%dT%H:%M:%SZ').replace(tzinfo=timezone.utc) + return datetime.strptime(dt, '%Y-%m-%dT%H:%M:%SZ').replace(tzinfo=UTC) def mail_to_incident(self, msg, service, user_key) -> tuple[dict, datetime, bool]: """Parse an email message diff --git a/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.yml b/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.yml index 61a57faf35ba..fbddb59231d4 100644 --- a/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.yml +++ b/Packs/GmailSingleUser/Integrations/GmailSingleUser/GmailSingleUser.yml @@ -354,7 +354,7 @@ script: required: true description: Retrieves attachments from a sent Gmail message. name: gmail-get-attachments - dockerimage: demisto/google-api-py3:1.0.0.98645 + dockerimage: demisto/google-api-py3:1.0.0.112317 isfetch: true runonce: false script: '-' diff --git a/Packs/GmailSingleUser/ReleaseNotes/1_4_5.md b/Packs/GmailSingleUser/ReleaseNotes/1_4_5.md new file mode 100644 index 000000000000..b58506a436cc --- /dev/null +++ b/Packs/GmailSingleUser/ReleaseNotes/1_4_5.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Gmail Single User + +- Updated the Docker image to: *demisto/google-api-py3:1.0.0.112317*. diff --git a/Packs/GmailSingleUser/pack_metadata.json b/Packs/GmailSingleUser/pack_metadata.json index 07f892aad391..827a0efb5242 100644 --- a/Packs/GmailSingleUser/pack_metadata.json +++ b/Packs/GmailSingleUser/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Gmail Single User", "description": "Gmail API using OAuth 2.0.", "support": "xsoar", - "currentVersion": "1.4.4", + "currentVersion": "1.4.5", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleBigQuery/Integrations/GoogleBigQuery/GoogleBigQuery.yml b/Packs/GoogleBigQuery/Integrations/GoogleBigQuery/GoogleBigQuery.yml index 6f9fcc95796c..87a3eff93b9a 100644 --- a/Packs/GoogleBigQuery/Integrations/GoogleBigQuery/GoogleBigQuery.yml +++ b/Packs/GoogleBigQuery/Integrations/GoogleBigQuery/GoogleBigQuery.yml @@ -109,7 +109,7 @@ script: description: The table rows the given query returned. type: Unknown description: Performs a query on BigQuery. - dockerimage: demisto/bigquery:1.0.0.73837 + dockerimage: demisto/bigquery:1.0.0.112225 subtype: python3 isfetch: true fromversion: 5.0.0 diff --git a/Packs/GoogleBigQuery/ReleaseNotes/1_1_8.md b/Packs/GoogleBigQuery/ReleaseNotes/1_1_8.md new file mode 100644 index 000000000000..a85a775203e0 --- /dev/null +++ b/Packs/GoogleBigQuery/ReleaseNotes/1_1_8.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google BigQuery + +- Updated the Docker image to: *demisto/bigquery:1.0.0.112225*. diff --git a/Packs/GoogleBigQuery/pack_metadata.json b/Packs/GoogleBigQuery/pack_metadata.json index 1f4af6d524fe..1a236dc57100 100644 --- a/Packs/GoogleBigQuery/pack_metadata.json +++ b/Packs/GoogleBigQuery/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google BigQuery", "description": "Integration for Google BigQuery, a data warehouse for querying and analyzing large databases. In all commands, for any argument not specified, the BigQuery default value for that argument will be applied.", "support": "xsoar", - "currentVersion": "1.1.7", + "currentVersion": "1.1.8", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleCalendar/Integrations/GoogleCalendar/GoogleCalendar.yml b/Packs/GoogleCalendar/Integrations/GoogleCalendar/GoogleCalendar.yml index 7bf4531b0ad0..c1d73476c112 100644 --- a/Packs/GoogleCalendar/Integrations/GoogleCalendar/GoogleCalendar.yml +++ b/Packs/GoogleCalendar/Integrations/GoogleCalendar/GoogleCalendar.yml @@ -173,7 +173,7 @@ script: - contextPath: GoogleCalendar.PageToken.Acl.nextSyncToken description: Token used at a later point in time to retrieve only the entries that have changed since this result was returned. type: String - dockerimage: demisto/googleapi-python3:1.0.0.89487 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '-' subtype: python3 diff --git a/Packs/GoogleCalendar/ReleaseNotes/1_1_46.md b/Packs/GoogleCalendar/ReleaseNotes/1_1_46.md new file mode 100644 index 000000000000..d2c6092625bc --- /dev/null +++ b/Packs/GoogleCalendar/ReleaseNotes/1_1_46.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Calendar + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleCalendar/pack_metadata.json b/Packs/GoogleCalendar/pack_metadata.json index 6c65161b953d..8a220b4b1ab1 100644 --- a/Packs/GoogleCalendar/pack_metadata.json +++ b/Packs/GoogleCalendar/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Calendar", "description": "Google Calendar integration with Cortex XSOAR.", "support": "xsoar", - "currentVersion": "1.1.45", + "currentVersion": "1.1.46", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleCloudCompute/Integrations/GoogleCloudCompute/GoogleCloudCompute.yml b/Packs/GoogleCloudCompute/Integrations/GoogleCloudCompute/GoogleCloudCompute.yml index 242bfe9f2c9b..c6fa1a61ec1b 100644 --- a/Packs/GoogleCloudCompute/Integrations/GoogleCloudCompute/GoogleCloudCompute.yml +++ b/Packs/GoogleCloudCompute/Integrations/GoogleCloudCompute/GoogleCloudCompute.yml @@ -8418,7 +8418,7 @@ script: - contextPath: GoogleCloudCompute.Instances.kind description: '] Type of the resource. Always compute#instance for instances.' type: string - dockerimage: demisto/googleapi-python3:1.0.0.86653 + dockerimage: demisto/googleapi-python3:1.0.0.112316 script: '' subtype: python3 type: python diff --git a/Packs/GoogleCloudCompute/ReleaseNotes/1_1_11.md b/Packs/GoogleCloudCompute/ReleaseNotes/1_1_11.md new file mode 100644 index 000000000000..101a969a7720 --- /dev/null +++ b/Packs/GoogleCloudCompute/ReleaseNotes/1_1_11.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Cloud Compute + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleCloudCompute/pack_metadata.json b/Packs/GoogleCloudCompute/pack_metadata.json index 9614dbc4f90e..95a5e05383a2 100644 --- a/Packs/GoogleCloudCompute/pack_metadata.json +++ b/Packs/GoogleCloudCompute/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Cloud Compute", "description": "Google Compute Engine delivers virtual machines running in Google's innovative data centers and worldwide fiber network. Compute Engine's tooling and workflow support enable scaling from single instances to global, load-balanced cloud computing.", "support": "xsoar", - "currentVersion": "1.1.10", + "currentVersion": "1.1.11", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleCloudFunctions/Integrations/GoogleCloudFunctions/GoogleCloudFunctions.yml b/Packs/GoogleCloudFunctions/Integrations/GoogleCloudFunctions/GoogleCloudFunctions.yml index c9dbde8d83a0..dfc68e0d6859 100644 --- a/Packs/GoogleCloudFunctions/Integrations/GoogleCloudFunctions/GoogleCloudFunctions.yml +++ b/Packs/GoogleCloudFunctions/Integrations/GoogleCloudFunctions/GoogleCloudFunctions.yml @@ -114,7 +114,7 @@ script: - contextPath: GoogleCloudFunctions.Execution.error description: Either a system or user-function generated error. Set if the execution was not successful. type: String - dockerimage: demisto/google-api-py3:1.0.0.86674 + dockerimage: demisto/google-api-py3:1.0.0.112317 runonce: false script: '-' type: python diff --git a/Packs/GoogleCloudFunctions/ReleaseNotes/1_0_28.md b/Packs/GoogleCloudFunctions/ReleaseNotes/1_0_28.md new file mode 100644 index 000000000000..cc49575007ff --- /dev/null +++ b/Packs/GoogleCloudFunctions/ReleaseNotes/1_0_28.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Cloud Functions + +- Updated the Docker image to: *demisto/google-api-py3:1.0.0.112317*. diff --git a/Packs/GoogleCloudFunctions/pack_metadata.json b/Packs/GoogleCloudFunctions/pack_metadata.json index 9e82c80cdf46..278d83683da6 100644 --- a/Packs/GoogleCloudFunctions/pack_metadata.json +++ b/Packs/GoogleCloudFunctions/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Cloud Functions", "description": "Google Cloud Functions", "support": "xsoar", - "currentVersion": "1.0.27", + "currentVersion": "1.0.28", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleCloudLogging/Integrations/GoogleCloudLogging/GoogleCloudLogging.yml b/Packs/GoogleCloudLogging/Integrations/GoogleCloudLogging/GoogleCloudLogging.yml index 6a3719939e71..b003e59108e1 100644 --- a/Packs/GoogleCloudLogging/Integrations/GoogleCloudLogging/GoogleCloudLogging.yml +++ b/Packs/GoogleCloudLogging/Integrations/GoogleCloudLogging/GoogleCloudLogging.yml @@ -187,7 +187,7 @@ script: script: '-' type: python subtype: python3 - dockerimage: demisto/google-api-py3:1.0.0.87732 + dockerimage: demisto/google-api-py3:1.0.0.112317 fromversion: 6.8.0 tests: - No tests (auto formatted) diff --git a/Packs/GoogleCloudLogging/ReleaseNotes/1_0_14.md b/Packs/GoogleCloudLogging/ReleaseNotes/1_0_14.md new file mode 100644 index 000000000000..a83023e83ffe --- /dev/null +++ b/Packs/GoogleCloudLogging/ReleaseNotes/1_0_14.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Cloud Logging + +- Updated the Docker image to: *demisto/google-api-py3:1.0.0.112317*. diff --git a/Packs/GoogleCloudLogging/pack_metadata.json b/Packs/GoogleCloudLogging/pack_metadata.json index 3b254c671d5b..fa8d08e23755 100644 --- a/Packs/GoogleCloudLogging/pack_metadata.json +++ b/Packs/GoogleCloudLogging/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Cloud Logging", "description": "Google Cloud Logging is a managed logging solution provided by Google Cloud Platform (GCP) that allows users to collect, store, search, analyze, and monitor logs generated by GCP services, third-party applications, and custom applications running on GCP.", "support": "xsoar", - "currentVersion": "1.0.13", + "currentVersion": "1.0.14", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleCloudTranslate/Integrations/GoogleCloudTranslate/GoogleCloudTranslate.yml b/Packs/GoogleCloudTranslate/Integrations/GoogleCloudTranslate/GoogleCloudTranslate.yml index 109106233a03..5521b5aa5778 100644 --- a/Packs/GoogleCloudTranslate/Integrations/GoogleCloudTranslate/GoogleCloudTranslate.yml +++ b/Packs/GoogleCloudTranslate/Integrations/GoogleCloudTranslate/GoogleCloudTranslate.yml @@ -67,7 +67,7 @@ script: - contextPath: GoogleCloudTranslate.TranslateText.translated_text description: The translated text. type: String - dockerimage: demisto/google-cloud-translate:1.0.0.85793 + dockerimage: demisto/google-cloud-translate:1.0.0.112239 runonce: false script: '-' type: python diff --git a/Packs/GoogleCloudTranslate/ReleaseNotes/1_0_11.md b/Packs/GoogleCloudTranslate/ReleaseNotes/1_0_11.md new file mode 100644 index 000000000000..270681f375a4 --- /dev/null +++ b/Packs/GoogleCloudTranslate/ReleaseNotes/1_0_11.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Cloud Translate + +- Updated the Docker image to: *demisto/google-cloud-translate:1.0.0.112239*. diff --git a/Packs/GoogleCloudTranslate/pack_metadata.json b/Packs/GoogleCloudTranslate/pack_metadata.json index e3c096fc0394..bf487a47fa1e 100644 --- a/Packs/GoogleCloudTranslate/pack_metadata.json +++ b/Packs/GoogleCloudTranslate/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Cloud Translate", "description": "A Google API cloud based translation service.", "support": "xsoar", - "currentVersion": "1.0.10", + "currentVersion": "1.0.11", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleDocs/Integrations/GoogleDocs/GoogleDocs.yml b/Packs/GoogleDocs/Integrations/GoogleDocs/GoogleDocs.yml index 41224c0750af..b44ccb802437 100644 --- a/Packs/GoogleDocs/Integrations/GoogleDocs/GoogleDocs.yml +++ b/Packs/GoogleDocs/Integrations/GoogleDocs/GoogleDocs.yml @@ -81,7 +81,7 @@ script: - contextPath: GoogleDocs.DocumentId description: The document ID of the updated document. type: Unknown - dockerimage: demisto/googleapi-python3:1.0.0.87804 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '-' type: python diff --git a/Packs/GoogleDocs/ReleaseNotes/1_0_25.md b/Packs/GoogleDocs/ReleaseNotes/1_0_25.md new file mode 100644 index 000000000000..ef0ddd5b2bee --- /dev/null +++ b/Packs/GoogleDocs/ReleaseNotes/1_0_25.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Docs + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleDocs/pack_metadata.json b/Packs/GoogleDocs/pack_metadata.json index 99ef537190e6..9d0532bad2d3 100644 --- a/Packs/GoogleDocs/pack_metadata.json +++ b/Packs/GoogleDocs/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Docs", "description": "Use the Google Docs integration to create and modify Google Docs documents.", "support": "xsoar", - "currentVersion": "1.0.24", + "currentVersion": "1.0.25", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive.yml b/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive.yml index 441844771a2d..473988e7af4a 100644 --- a/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive.yml +++ b/Packs/GoogleDrive/Integrations/GoogleDrive/GoogleDrive.yml @@ -3112,7 +3112,7 @@ script: - contextPath: GoogleDrive.File.Parents description: The IDs of the parent folders which contain the file. type: String - dockerimage: demisto/googleapi-python3:1.0.0.89487 + dockerimage: demisto/googleapi-python3:1.0.0.112316 isfetch: true runonce: false script: "-" diff --git a/Packs/GoogleDrive/ReleaseNotes/1_3_8.md b/Packs/GoogleDrive/ReleaseNotes/1_3_8.md new file mode 100644 index 000000000000..ca36b9d6b69c --- /dev/null +++ b/Packs/GoogleDrive/ReleaseNotes/1_3_8.md @@ -0,0 +1,7 @@ + +#### Integrations + +##### Google Drive +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. + + diff --git a/Packs/GoogleDrive/pack_metadata.json b/Packs/GoogleDrive/pack_metadata.json index 95b093faa8c9..e179bdf2ad10 100644 --- a/Packs/GoogleDrive/pack_metadata.json +++ b/Packs/GoogleDrive/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Drive", "description": "Google Drive allows users to store files on their servers, synchronize files across devices, and share files. This integration helps you to create a new drive, query past activity and view change logs performed by the users, as well as list drives and files, and manage their permissions.", "support": "xsoar", - "currentVersion": "1.3.7", + "currentVersion": "1.3.8", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleKeyManagementService/Integrations/GoogleKeyManagementService/GoogleKeyManagementService.yml b/Packs/GoogleKeyManagementService/Integrations/GoogleKeyManagementService/GoogleKeyManagementService.yml index 7db3cc66b810..c3a41400e08c 100644 --- a/Packs/GoogleKeyManagementService/Integrations/GoogleKeyManagementService/GoogleKeyManagementService.yml +++ b/Packs/GoogleKeyManagementService/Integrations/GoogleKeyManagementService/GoogleKeyManagementService.yml @@ -1237,7 +1237,7 @@ script: - contextPath: GoogleKMS.PublicKey.Algorithm description: The algorithm used in the CryptoKey. type: String - dockerimage: demisto/google-kms:1.0.0.89771 + dockerimage: demisto/google-kms:1.0.0.112242 runonce: false script: '-' type: python diff --git a/Packs/GoogleKeyManagementService/ReleaseNotes/1_0_26.md b/Packs/GoogleKeyManagementService/ReleaseNotes/1_0_26.md new file mode 100644 index 000000000000..7beaadc7d679 --- /dev/null +++ b/Packs/GoogleKeyManagementService/ReleaseNotes/1_0_26.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Key Management Service + +- Updated the Docker image to: *demisto/google-kms:1.0.0.112242*. diff --git a/Packs/GoogleKeyManagementService/pack_metadata.json b/Packs/GoogleKeyManagementService/pack_metadata.json index d3246c9a9c5f..2d627733080a 100644 --- a/Packs/GoogleKeyManagementService/pack_metadata.json +++ b/Packs/GoogleKeyManagementService/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Key Management Service", "description": "Use the Google Key Management Service API for CryptoKey management and encrypt/decrypt functionality.", "support": "xsoar", - "currentVersion": "1.0.25", + "currentVersion": "1.0.26", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GooglePubSub/Integrations/GooglePubSub/GooglePubSub.yml b/Packs/GooglePubSub/Integrations/GooglePubSub/GooglePubSub.yml index 48bca2bb61fb..516cf7b2db3d 100644 --- a/Packs/GooglePubSub/Integrations/GooglePubSub/GooglePubSub.yml +++ b/Packs/GooglePubSub/Integrations/GooglePubSub/GooglePubSub.yml @@ -530,7 +530,7 @@ script: required: true description: Acknowledge previously pulled message or messages. name: gcp-pubsub-topic-ack-messages - dockerimage: demisto/googleapi-python3:1.0.0.71902 + dockerimage: demisto/googleapi-python3:1.0.0.112316 isfetch: true runonce: false script: '-' diff --git a/Packs/GooglePubSub/ReleaseNotes/1_1_1.md b/Packs/GooglePubSub/ReleaseNotes/1_1_1.md new file mode 100644 index 000000000000..721783cc8122 --- /dev/null +++ b/Packs/GooglePubSub/ReleaseNotes/1_1_1.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Cloud Pub/Sub + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GooglePubSub/pack_metadata.json b/Packs/GooglePubSub/pack_metadata.json index 19374b87ebe0..f6e7d14b5c19 100644 --- a/Packs/GooglePubSub/pack_metadata.json +++ b/Packs/GooglePubSub/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Cloud Pub / Sub", "description": "Google Cloud Pub / Sub is a fully-managed real-time messaging service that allows you to send and receive messages between independent applications.", "support": "xsoar", - "currentVersion": "1.1.0", + "currentVersion": "1.1.1", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleResourceManager/Integrations/GoogleResourceManager/GoogleResourceManager.yml b/Packs/GoogleResourceManager/Integrations/GoogleResourceManager/GoogleResourceManager.yml index 8c19462fa8d9..cb906d19be18 100644 --- a/Packs/GoogleResourceManager/Integrations/GoogleResourceManager/GoogleResourceManager.yml +++ b/Packs/GoogleResourceManager/Integrations/GoogleResourceManager/GoogleResourceManager.yml @@ -397,7 +397,7 @@ script: - contextPath: GRM.Project.Parent.Type description: Type of the parent resource. type: String - dockerimage: demisto/googleapi-python3:1.0.0.86653 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '' type: python diff --git a/Packs/GoogleResourceManager/ReleaseNotes/1_0_6.md b/Packs/GoogleResourceManager/ReleaseNotes/1_0_6.md new file mode 100644 index 000000000000..9179c61e96fb --- /dev/null +++ b/Packs/GoogleResourceManager/ReleaseNotes/1_0_6.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Resource Manager + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleResourceManager/pack_metadata.json b/Packs/GoogleResourceManager/pack_metadata.json index 4153c772ba4e..3f5eb82bf03d 100644 --- a/Packs/GoogleResourceManager/pack_metadata.json +++ b/Packs/GoogleResourceManager/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Resource Manager", "description": "Google Cloud Platform Resource Manager", "support": "xsoar", - "currentVersion": "1.0.5", + "currentVersion": "1.0.6", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleSheets/Integrations/GoogleSheets/GoogleSheets.yml b/Packs/GoogleSheets/Integrations/GoogleSheets/GoogleSheets.yml index 909bfb7ded55..040b72d1c30e 100644 --- a/Packs/GoogleSheets/Integrations/GoogleSheets/GoogleSheets.yml +++ b/Packs/GoogleSheets/Integrations/GoogleSheets/GoogleSheets.yml @@ -665,7 +665,7 @@ script: - contextPath: GoogleSheets.Spreadsheet.updatedSpreadsheet.sheets.title description: Sheet title. type: String - dockerimage: demisto/googleapi-python3:1.0.0.89487 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: "-" subtype: python3 diff --git a/Packs/GoogleSheets/ReleaseNotes/1_0_44.md b/Packs/GoogleSheets/ReleaseNotes/1_0_44.md new file mode 100644 index 000000000000..d8b4017ae121 --- /dev/null +++ b/Packs/GoogleSheets/ReleaseNotes/1_0_44.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Sheets + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleSheets/pack_metadata.json b/Packs/GoogleSheets/pack_metadata.json index f118bb552a16..33f89bd9e85b 100644 --- a/Packs/GoogleSheets/pack_metadata.json +++ b/Packs/GoogleSheets/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Sheets", "description": "The Google Sheets API is a RESTful interface that lets you read and modify a spreadsheet's data. The most common uses of this API include the following tasks- create spreadsheets, read and write spreadsheets cells, update spreadsheet formatting", "support": "xsoar", - "currentVersion": "1.0.43", + "currentVersion": "1.0.44", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GoogleVault/Integrations/GoogleVault/GoogleVault.yml b/Packs/GoogleVault/Integrations/GoogleVault/GoogleVault.yml index e805adba7525..84950e6f07a5 100644 --- a/Packs/GoogleVault/Integrations/GoogleVault/GoogleVault.yml +++ b/Packs/GoogleVault/Integrations/GoogleVault/GoogleVault.yml @@ -540,7 +540,7 @@ script: - contextPath: GoogleVault.Matter.Export.Results.To description: The address the message was sent to type: string - dockerimage: demisto/googleapi-python3:1.0.0.86653 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '-' subtype: python3 diff --git a/Packs/GoogleVault/ReleaseNotes/1_0_13.md b/Packs/GoogleVault/ReleaseNotes/1_0_13.md new file mode 100644 index 000000000000..8469845fa984 --- /dev/null +++ b/Packs/GoogleVault/ReleaseNotes/1_0_13.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Google Vault + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GoogleVault/pack_metadata.json b/Packs/GoogleVault/pack_metadata.json index cb648979882c..5f2bd593bfc8 100644 --- a/Packs/GoogleVault/pack_metadata.json +++ b/Packs/GoogleVault/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Google Vault", "description": "Archiving and eDiscovery for G Suite.", "support": "xsoar", - "currentVersion": "1.0.12", + "currentVersion": "1.0.13", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/GsuiteAuditor/Integrations/GsuiteAuditor/GsuiteAuditor.yml b/Packs/GsuiteAuditor/Integrations/GsuiteAuditor/GsuiteAuditor.yml index 01a404f313cb..ab0f72b786e4 100644 --- a/Packs/GsuiteAuditor/Integrations/GsuiteAuditor/GsuiteAuditor.yml +++ b/Packs/GsuiteAuditor/Integrations/GsuiteAuditor/GsuiteAuditor.yml @@ -125,7 +125,7 @@ script: - contextPath: GSuite.PageToken.ActivitySearch.nextPageToken description: Token to specify the next page in the list. type: String - dockerimage: demisto/googleapi-python3:1.0.0.89666 + dockerimage: demisto/googleapi-python3:1.0.0.112316 runonce: false script: '-' subtype: python3 diff --git a/Packs/GsuiteAuditor/ReleaseNotes/1_0_23.md b/Packs/GsuiteAuditor/ReleaseNotes/1_0_23.md new file mode 100644 index 000000000000..584a5f8e3012 --- /dev/null +++ b/Packs/GsuiteAuditor/ReleaseNotes/1_0_23.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### G Suite Auditor + +- Updated the Docker image to: *demisto/googleapi-python3:1.0.0.112316*. diff --git a/Packs/GsuiteAuditor/pack_metadata.json b/Packs/GsuiteAuditor/pack_metadata.json index e8fb5e4b483a..12555f0297ae 100644 --- a/Packs/GsuiteAuditor/pack_metadata.json +++ b/Packs/GsuiteAuditor/pack_metadata.json @@ -2,7 +2,7 @@ "name": "GsuiteAuditor", "description": "G Suite Auditor integration with Cortex XSOAR. G Suite Auditor is an integration to recieve audit log data from G Suite services like drive,gmail and more. The integration uses Google Admin SDK", "support": "xsoar", - "currentVersion": "1.0.22", + "currentVersion": "1.0.23", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Tests/docker_native_image_config.json b/Tests/docker_native_image_config.json index 31e9a28b1769..a922df1321a1 100644 --- a/Tests/docker_native_image_config.json +++ b/Tests/docker_native_image_config.json @@ -244,6 +244,20 @@ "native:8.6" ] }, + { + "id": "Gmail Single User", + "reason": "CIAC-11186, This integration support only from python 3.11", + "ignored_native_images": [ + "native:8.6" + ] + }, + { + "id": "RSA Archer v2", + "reason": "CIAC-11186, This integration support only from python 3.11", + "ignored_native_images": [ + "native:8.6" + ] + }, { "id":"Cortex XDR - IOC", "reason":"CIAC-11186, This integration support only from python 3.11", @@ -251,6 +265,7 @@ "native:8.6" ] } + ], "flags_versions_mapping": { "native:dev": "native:dev",