Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jun 9, 2025

Bumps the pip group with 5 updates in the /Packs/Exchange2016_Compliance/Integrations/Exchange2016_Compliance/doc_files directory:

Package From To
certifi 2017.11.5 2024.7.4
idna 2.6 3.7
pyyaml 3.12 5.4.1
requests 2.18.4 2.32.4
urllib3 1.22 1.26.19

Updates certifi from 2017.11.5 to 2024.7.4

Commits

Updates idna from 2.6 to 3.7

Release notes

Sourced from idna's releases.

v3.7

What's Changed

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

Full Changelog: kjd/idna@v3.6...v3.7

Changelog

Sourced from idna's changelog.

3.7 (2024-04-11) ++++++++++++++++

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

3.6 (2023-11-25) ++++++++++++++++

  • Fix regression to include tests in source distribution.

3.5 (2023-11-24) ++++++++++++++++

  • Update to Unicode 15.1.0
  • String codec name is now "idna2008" as overriding the system codec "idna" was not working.
  • Fix typing error for codec encoding
  • "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly.
  • Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives.
  • Added security reporting protocol for project

Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release.

3.4 (2022-09-14) ++++++++++++++++

  • Update to Unicode 15.0.0
  • Migrate to pyproject.toml for build information (PEP 621)
  • Correct another instance where generic exception was raised instead of IDNAError for malformed input
  • Source distribution uses zeroized file ownership for improved reproducibility

Thanks to Seth Michael Larson for contributions to this release.

3.3 (2021-10-13) ++++++++++++++++

  • Update to Unicode 14.0.0
  • Update to in-line type annotations
  • Throw IDNAError exception correctly for some malformed input
  • Advertise support for Python 3.10
  • Improve testing regime on Github

... (truncated)

Commits
  • 1d365e1 Release v3.7
  • c1b3154 Merge pull request #172 from kjd/optimize-contextj
  • 0394ec7 Merge branch 'master' into optimize-contextj
  • cd58a23 Merge pull request #152 from elliotwutingfeng/dev
  • 5beb28b More efficient resolution of joiner contexts
  • 1b12148 Update ossf/scorecard-action to v2.3.1
  • d516b87 Update Github actions/checkout to v4
  • c095c75 Merge branch 'master' into dev
  • 60a0a4c Fix typo in GitHub Actions workflow key
  • 5918a0e Merge branch 'master' into dev
  • Additional commits viewable in compare view

Updates pyyaml from 3.12 to 5.4.1

Changelog

Sourced from pyyaml's changelog.

5.4.1 (2021-01-20)

  • yaml/pyyaml#480 -- Fix stub compat with older pyyaml versions that may unwittingly load it

5.4 (2021-01-19)

5.3.1 (2020-03-18)

  • yaml/pyyaml#386 -- Prevents arbitrary code execution during python/object/new constructor

5.3 (2020-01-06)

5.2 (2019-12-02)

  • Repair incompatibilities introduced with 5.1. The default Loader was changed, but several methods like add_constructor still used the old default yaml/pyyaml#279 -- A more flexible fix for custom tag constructors yaml/pyyaml#287 -- Change default loader for yaml.add_constructor yaml/pyyaml#305 -- Change default loader for add_implicit_resolver, add_path_resolver
  • Make FullLoader safer by removing python/object/apply from the default FullLoader yaml/pyyaml#347 -- Move constructor for object/apply to UnsafeConstructor
  • Fix bug introduced in 5.1 where quoting went wrong on systems with sys.maxunicode <= 0xffff yaml/pyyaml#276 -- Fix logic for quoting special characters
  • Other PRs: yaml/pyyaml#280 -- Update CHANGES for 5.1

5.1.2 (2019-07-30)

... (truncated)

Commits
  • ee37f46 5.4.1 release
  • 2b37f15 Fix stub compat with older pyyaml versions that may unwittingly load it
  • 58d0cb7 5.4 release
  • a60f7a1 Fix compatibility with Jython
  • ee98abd Run CI on PR base branch changes
  • ddf2033 constructor.timezone: _copy & deepcopy
  • fc914d5 Avoid repeatedly appending to yaml_implicit_resolvers
  • a001f27 Fix for CVE-2020-14343
  • fe15062 Add 3.9 to appveyor file for completeness sake
  • 1e1c7fb Add a newline character to end of pyproject.toml
  • Additional commits viewable in compare view

Updates requests from 2.18.4 to 2.32.4

Release notes

Sourced from requests's releases.

v2.32.4

2.32.4 (2025-06-10)

Security

  • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted environment will retrieve credentials for the wrong hostname/machine from a netrc file. (#6965)

Improvements

  • Numerous documentation improvements

Deprecations

  • Added support for pypy 3.11 for Linux and macOS. (#6926)
  • Dropped support for pypy 3.9 following its end of support. (#6926)

v2.32.3

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

... (truncated)

Changelog

Sourced from requests's changelog.

2.32.4 (2025-06-10)

Security

  • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted environment will retrieve credentials for the wrong hostname/machine from a netrc file.

Improvements

  • Numerous documentation improvements

Deprecations

  • Added support for pypy 3.11 for Linux and macOS.
  • Dropped support for pypy 3.9 following its end of support.

2.32.3 (2024-05-29)

Bugfixes

  • Fixed bug breaking the ability to specify custom SSLContexts in sub-classes of HTTPAdapter. (#6716)
  • Fixed issue where Requests started failing to run on Python versions compiled without the ssl module. (#6724)

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

... (truncated)

Commits
  • 021dc72 Polish up release tooling for last manual release
  • 821770e Bump version and add release notes for v2.32.4
  • 59f8aa2 Add netrc file search information to authentication documentation (#6876)
  • 5b4b64c Add more tests to prevent regression of CVE 2024 47081
  • 7bc4587 Add new test to check netrc auth leak (#6962)
  • 96ba401 Only use hostname to do netrc lookup instead of netloc
  • 7341690 Merge pull request #6951 from tswast/patch-1
  • 6716d7c remove links
  • a7e1c74 Update docs/conf.py
  • c799b81 docs: fix dead links to kenreitz.org
  • Additional commits viewable in compare view

Updates urllib3 from 1.22 to 1.26.19

Release notes

Sourced from urllib3's releases.

1.26.19

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Changes

  • Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect.

Full Changelog: urllib3/urllib3@1.26.18...1.26.19

Note that due to an issue with our release automation, no multiple.intoto.jsonl file is available for this release.

1.26.18

  • Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. (GHSA-g4mx-q9vg-27p4)

1.26.17

  • Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. (GHSA-v845-jxx5-vc9f)

1.26.16

  • Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress (#2954)

1.26.15

1.26.14

  • Fixed parsing of port 0 (zero) returning None, instead of 0 (#2850)
  • Removed deprecated HTTPResponse.getheaders() calls in urllib3.contrib module.

1.26.13

  • Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods.
  • Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid.
  • Fixed a deprecation warning when using cryptography v39.0.0.
  • Removed the <4 in the Requires-Python packaging metadata field.

1.26.12

  • Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue for justification and info on how to migrate.

1.26.11

If you or your organization rely on urllib3 consider supporting us via GitHub Sponsors.

⚠️ urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap

  • Fixed an issue where reading more than 2 GiB in a call to HTTPResponse.read would raise an OverflowError on Python 3.9 and earlier.

... (truncated)

Changelog

Sourced from urllib3's changelog.

1.26.19 (2024-06-17)

  • Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect.
  • Fixed handling of OpenSSL 3.2.0 new error message for misconfiguring an HTTP proxy as HTTPS. ([#3405](https://github.com/urllib3/urllib3/issues/3405) <https://github.com/urllib3/urllib3/issues/3405>__)

1.26.18 (2023-10-17)

  • Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.

1.26.17 (2023-10-02)

  • Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. ([#3139](https://github.com/urllib3/urllib3/issues/3139) <https://github.com/urllib3/urllib3/pull/3139>_)

1.26.16 (2023-05-23)

  • Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress ([#2954](https://github.com/urllib3/urllib3/issues/2954) <https://github.com/urllib3/urllib3/pull/2954>_)

1.26.15 (2023-03-10)

  • Fix socket timeout value when HTTPConnection is reused ([#2645](https://github.com/urllib3/urllib3/issues/2645) <https://github.com/urllib3/urllib3/issues/2645>__)
  • Remove "!" character from the unreserved characters in IPv6 Zone ID parsing ([#2899](https://github.com/urllib3/urllib3/issues/2899) <https://github.com/urllib3/urllib3/issues/2899>__)
  • Fix IDNA handling of '\x80' byte ([#2901](https://github.com/urllib3/urllib3/issues/2901) <https://github.com/urllib3/urllib3/issues/2901>__)

1.26.14 (2023-01-11)

  • Fixed parsing of port 0 (zero) returning None, instead of 0. ([#2850](https://github.com/urllib3/urllib3/issues/2850) <https://github.com/urllib3/urllib3/issues/2850>__)
  • Removed deprecated getheaders() calls in contrib module. Fixed the type hint of PoolKey.key_retries by adding bool to the union. ([#2865](https://github.com/urllib3/urllib3/issues/2865) <https://github.com/urllib3/urllib3/issues/2865>__)

1.26.13 (2022-11-23)

  • Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods.
  • Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid.
  • Fixed a deprecation warning when using cryptography v39.0.0.
  • Removed the <4 in the Requires-Python packaging metadata field.

1.26.12 (2022-08-22)

  • Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue <https://github.com/urllib3/urllib3/issues/2680>_

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the pip group with 5 updates in the /Packs/Exchange2016_Compliance/Integrations/Exchange2016_Compliance/doc_files directory:

| Package | From | To |
| --- | --- | --- |
| [certifi](https://github.com/certifi/python-certifi) | `2017.11.5` | `2024.7.4` |
| [idna](https://github.com/kjd/idna) | `2.6` | `3.7` |
| [pyyaml](https://github.com/yaml/pyyaml) | `3.12` | `5.4.1` |
| [requests](https://github.com/psf/requests) | `2.18.4` | `2.32.4` |
| [urllib3](https://github.com/urllib3/urllib3) | `1.22` | `1.26.19` |



Updates `certifi` from 2017.11.5 to 2024.7.4
- [Commits](certifi/python-certifi@2017.11.05...2024.07.04)

Updates `idna` from 2.6 to 3.7
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v2.6...v3.7)

Updates `pyyaml` from 3.12 to 5.4.1
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
- [Commits](yaml/pyyaml@3.12...5.4.1)

Updates `requests` from 2.18.4 to 2.32.4
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.18.4...v2.32.4)

Updates `urllib3` from 1.22 to 1.26.19
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.22...1.26.19)

---
updated-dependencies:
- dependency-name: certifi
  dependency-version: 2024.7.4
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: idna
  dependency-version: '3.7'
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pyyaml
  dependency-version: 5.4.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: requests
  dependency-version: 2.32.4
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: urllib3
  dependency-version: 1.26.19
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 9, 2025
S3B4SZ17 pushed a commit that referenced this pull request Jul 22, 2025
…emisto#39230) (demisto#39322)

* "contribution update to pack 'Microsoft Sentinel'"

* Revert unwanted changes

* Update Packs/AzureSentinel/Integrations/AzureSentinel/AzureSentinel.yml



* Update Packs/AzureSentinel/Integrations/AzureSentinel/README.md



* Update Packs/AzureSentinel/Integrations/AzureSentinel/AzureSentinel.yml



* Revert unwanted changes part 2

* Aligned tests to the input type change

* update release notes

* fix unittest

* Update Packs/AzureSentinel/ReleaseNotes/1_5_60.md



* fix

* Added a note to the readme regarding the debugger panel (demisto#39243)

* CRTX-133204-Trellix_ePO-fix (demisto#39248)

* changed metadata file

* added release notes

* added release notes

---------



* fix: get mapping fields function does not except any arguments (demisto#38786) (demisto#39261)

* fix: get mapping fields function does not except any arguments

* feat: add Bryan van der Net to CONTRIBUTORS.json

* fix: update SentinelOne V2 integration to resolve mapping fields error and enhance configuration sections

* fix: update Docker image version for SentinelOne V2 integration

* docs: update Docker image version in release notes for SentinelOne V2 integration

* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* Update Packs/SentinelOne/ReleaseNotes/3_2_37.md



* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* style: pr still showing changes on the release notes

* Bump version and generate release notes



* revert: revert config changes

* chore: bump version and update release notes

* style: undo random formatting changes

---------





* Modeling rules modification - CRTX-151278 (demisto#39103)

* Modified modeling rule after the modification of the integration

* Fixed schema file

* Added release note and modified modeling rule

* Pack's version update

* Update Packs/qualys/ReleaseNotes/3_2_4.md



* Modified modeling rule

* Bump pack from version qualys to 3.2.5.

* Added xdm.event.type to assets events

* Added tag

* Fixed schema file

* Fixed schema file

---------




* Update Pan-OS playbook for supporting version 11 (demisto#39249)

* added itamar (demisto#39265)

* Added the validate-validation-config-file hook to content (demisto#39260)

* Added the validate-validation-config-file hook to content

* fixes

* fix validations

* Automation research releases (demisto#39270)

* new playbook - First Azure AD PowerShell operation for a user (demisto#39159)

* new playbook

* RN

* description fixed

* added ignore

* Bump pack from version CortexResponseAndRemediation to 1.1.25.

* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* Update Packs/CortexResponseAndRemediation/Playbooks/silent-playbook-First_Azure_AD_PowerShell_operation_for_a_user.yml



* task description

* position fix

* fix for old link to documentation

* continue on error

* fix

* skip if

* fix

* fix

* added issilent: true

---------





* Automation Research Release - 1 (demisto#39269)

* fix: get mapping fields function does not except any arguments (demisto#38786) (demisto#39261)

* fix: get mapping fields function does not except any arguments

* feat: add Bryan van der Net to CONTRIBUTORS.json

* fix: update SentinelOne V2 integration to resolve mapping fields error and enhance configuration sections

* fix: update Docker image version for SentinelOne V2 integration

* docs: update Docker image version in release notes for SentinelOne V2 integration

* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* Update Packs/SentinelOne/ReleaseNotes/3_2_37.md



* Update Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml



* style: pr still showing changes on the release notes

* Bump version and generate release notes



* revert: revert config changes

* chore: bump version and update release notes

* style: undo random formatting changes

---------





* Modeling rules modification - CRTX-151278 (demisto#39103)

* Modified modeling rule after the modification of the integration

* Fixed schema file

* Added release note and modified modeling rule

* Pack's version update

* Update Packs/qualys/ReleaseNotes/3_2_4.md



* Modified modeling rule

* Bump pack from version qualys to 3.2.5.

* Added xdm.event.type to assets events

* Added tag

* Fixed schema file

* Fixed schema file

---------




* Update Pan-OS playbook for supporting version 11 (demisto#39249)

* added itamar (demisto#39265)

---------











---------













* add codeowner (demisto#39272)

* [GenericPolling] Update docs (demisto#39250)

* RN

* Update Packs/CommonPlaybooks/ReleaseNotes/2_6_55.md



* Update Packs/CommonPlaybooks/ReleaseNotes/2_6_55.md



---------




* edit readme file (demisto#39196)

* edit readme file

* documentation after tech writing fixes

* fix to soft break (line break)

* improve images resolution

* change permission list to bullet style

* [Code owners] Update ContentManagement with talzich (demisto#39284)

* Platform content support merge gateway (demisto#39268)

* batch_1 (demisto#39162)

* Adopt 'platform' MP to content packs #2 (demisto#39163)

* batch_2

* revert incorrect changes

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#3 (demisto#39164)

* batch_3

* remove identity_threat

---------



* batch_4 (demisto#39165)

* Adopt 'platform' MP to content packs demisto#6 (demisto#39167)

* batch_6

* revert incorrect changes

* batch_7 (demisto#39168)

* Adopt 'platform' MP to content packs #8 (demisto#39169)

* batch_8

* revert incorrect changes

* Update Packs/CommonScripts/pack_metadata.json

---------



* Adopt 'platform' MP to content packs demisto#9 (demisto#39170)

* batch_9

* revert quick actions

* revert incorrect changes

* revert incorrect changes

* batch_5 (demisto#39232)

* batch_10 (demisto#39171)

* batch_11 (demisto#39172)

* Adopt 'platform' MP to content packs #12 (demisto#39173)

* batch_12

* revert incorrect changes

* batch_13 (demisto#39174)

* Adopt 'platform' MP to content packs demisto#14 (demisto#39175)

* batch_14

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#15 (demisto#39176)

* batch_15

* Update Packs/FiltersAndTransformers/pack_metadata.json

---------



* batch_16 (demisto#39177)

* batch_17 (demisto#39178)

* Adopt 'platform' MP to content packs demisto#18 (demisto#39179)

* batch_18

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#19 (demisto#39180)

* batch_19

* Update Packs/Jira/pack_metadata.json

---------



* batch_20 (demisto#39181)

* Adopt 'platform' MP to content packs demisto#21 (demisto#39182)

* batch_21

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#22 (demisto#39183)

* batch_22

* revert incorrect changes

* Update Packs/Office365AndAzureAuditLog/pack_metadata.json

---------



* batch_24 (demisto#39185)

* Adopt 'platform' MP to content packs demisto#25 (demisto#39186)

* batch_25

* Update Packs/PingIdentity/pack_metadata.json

* Update Packs/PrismaAccess/pack_metadata.json

---------



* Adopt 'platform' MP to content packs demisto#26 (demisto#39187)

* batch_26

* revert incorrect changes

* Adopt 'platform' MP to content packs #27 (demisto#39188)

* batch_27

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#28 (demisto#39189)

* batch_28

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#29 (demisto#39190)

* batch_29

* revert incorrect changes

* Update Packs/Slack/pack_metadata.json

---------



* batch_30 (demisto#39191)

* batch_31 (demisto#39192)

* Adopt 'platform' MP to content packs demisto#32 (demisto#39193)

* batch_32

* Update Packs/Workday/pack_metadata.json

---------



* batch_33 (demisto#39194)

* Adopt 'platform' MP to content packs demisto#23 (demisto#39184)

* batch_23

* revert incorrect changes

* remove identity_threat

---------



* fix json

* limit common scripts

* fix Core layouts

* fix Core layouts

---------




* IBM HA - add "haIntegrationEventID" to multiple integrations (demisto#38846)

* add haIntegrationEventID key to qradar incidents

* added rn

* fixes

* in progress

* reverts & preperation

* tests fixes

* added haIntegrationEventID to more itnegrations

* added rns

* fixes

* fixes

* added sections to uptycs

* work in progress, save before testing

* working windows integration

* done all 9 integrations

* added rns

* fix proof point

* fix unit test

* validations fixes

* validations fixes

* reverts

* update uptycs contacts

* update rns

* update rns

* revert ms atp

* reverts

* reverts

* updated docker

* fixed empty offset issue

* added rn

* reverts

* Add ICDM Integration (demisto#38982) (demisto#39283)

* Add ICDM Integration

* Fix Formatting and Pipeline errors

* Update Sections

* Minor changes and refactors to address Review comments

* Fix Unit test for network indicator

* do not use deprecated method utcnow()

* Fix context path and format readable output of Protection Commands

* Update Readme

* Fix version info in Readme



* Box Quick Update (demisto#39267)

* Updated README and pack_metadata

* Updated README

* Update Packs/Box/README.md



* Update Packs/Box/README.md



* Update Packs/Box/README.md



* Update Packs/Box/README.md



---------



* [Trellix_ePO] Remove MP xsoar (demisto#39296)

* hide pack (demisto#39290) (demisto#39294)



* CortexCoreIR: added `quick actions` commands (demisto#38663)

* added prettynames placeholder

* added quickaction

* update prettypredefined

* capital prettyPredefined

* update prettypredefined

* JUST FOR TEST SDK FIX

* correct prettypredefined

* test script

* uuse sdk from branch

* added supportedModules

* adding the wrapper commands

* remove "platform" properties from script

* revert poetry changes

* remove quick action from the orig command

* correct the name of quick actions

* fix wrong

* update CoreIR integration with IA related & py code

* PM changes

* restore pack_metadata

* replace placeholders

* run ruff format after merge master

* added RN

* fix alert

* update the RN

---------



* drop CortexVulnerabilityManagement from platform (demisto#39299)

* Nivbs/ciac 13013 quick actions (demisto#38979)

* Added first draft for Quick action: Create Issue in Jira

* Added first draft for Quick action: Create ServiceNow Ticket

* Fixing Items in JIRA quick action

* Adding Corrects Fields in Open Service Now Ticket

* Quick Action Slack Integration

* Quick Action MSFT Teams Integration

* re-format the ${issue} syntax after clarifications

* Adding Platform to pack_metadata.json

* Updating pack_metadata.json for all Packs, according to platform-content-support

* update supportsquickactions to higher scope
adding hidden to relevant quiack-action cmds

* Update slack to slackV3

* Remove deprecated arguments from JIRA cmd

* Update default Value in Jira

* Update Docker images versions

* Update Release notes for quick actions Packs

* Adding supports quick action for slack V3

* Change order of pre-defined options

* Change defaultValue to predefined

* Change pretty name for short_description in ServiceNowv2.yml

* Remove prettyname for non required params

* Update JiraV3.yml according to design changes

* Update MicrosoftTeams.yml according to design changes

* Update SlackV3.yml according to design changes

* Update ServiceNowv2.yml according to design changes

* Change from issue to alert keyword

* Fixes After demo: Remove user option from teams and slack. Remove defaultValue from Servicenow TicketType

* After Server fix - change from alert to issue keyword

* Update Packs/Slack/ReleaseNotes/3_5_11.md



* Update Packs/Slack/ReleaseNotes/3_5_11.md



* Update Packs/ServiceNow/ReleaseNotes/2_7_8.md



* Update Packs/ServiceNow/Integrations/ServiceNowv2/ServiceNowv2.yml



* Update Packs/Jira/Integrations/JiraV3/JiraV3.yml



* Update Packs/Jira/Integrations/JiraV3/JiraV3.yml



* Update Packs/Jira/ReleaseNotes/3_2_16.md



* Update Packs/MicrosoftTeams/ReleaseNotes/1_5_17.md



* Update Packs/MicrosoftTeams/ReleaseNotes/1_5_17.md



* Update Packs/ServiceNow/Integrations/ServiceNowv2/ServiceNowv2.yml



* Update Packs/MicrosoftTeams/ReleaseNotes/1_5_17.md



* Update Packs/MicrosoftTeams/ReleaseNotes/1_5_17.md



* Update Packs/ServiceNow/Integrations/ServiceNowv2/ServiceNowv2.yml



* Apply suggestions from code review



* Update release note file name

* Update description after pre commit notes

* Create 3_5_12.md

* Update Descriptions and params after product meeting

* Revert "Create 3_5_12.md"

This reverts commit 348e186.

* Because of ST failed - update description in commands

* batch_1 (demisto#39162)

* Adopt 'platform' MP to content packs #2 (demisto#39163)

* batch_2

* revert incorrect changes

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#3 (demisto#39164)

* batch_3

* remove identity_threat

---------



* batch_4 (demisto#39165)

* Adopt 'platform' MP to content packs demisto#6 (demisto#39167)

* batch_6

* revert incorrect changes

* batch_7 (demisto#39168)

* Adopt 'platform' MP to content packs #8 (demisto#39169)

* batch_8

* revert incorrect changes

* Update Packs/CommonScripts/pack_metadata.json

---------



* Adopt 'platform' MP to content packs demisto#9 (demisto#39170)

* batch_9

* revert quick actions

* revert incorrect changes

* revert incorrect changes

* batch_5 (demisto#39232)

* batch_10 (demisto#39171)

* batch_11 (demisto#39172)

* Adopt 'platform' MP to content packs #12 (demisto#39173)

* batch_12

* revert incorrect changes

* batch_13 (demisto#39174)

* Adopt 'platform' MP to content packs demisto#14 (demisto#39175)

* batch_14

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#15 (demisto#39176)

* batch_15

* Update Packs/FiltersAndTransformers/pack_metadata.json

---------



* batch_16 (demisto#39177)

* batch_17 (demisto#39178)

* Adopt 'platform' MP to content packs demisto#18 (demisto#39179)

* batch_18

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#19 (demisto#39180)

* batch_19

* Update Packs/Jira/pack_metadata.json

---------



* batch_20 (demisto#39181)

* Adopt 'platform' MP to content packs demisto#21 (demisto#39182)

* batch_21

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#22 (demisto#39183)

* batch_22

* revert incorrect changes

* Update Packs/Office365AndAzureAuditLog/pack_metadata.json

---------



* batch_24 (demisto#39185)

* Adopt 'platform' MP to content packs demisto#25 (demisto#39186)

* batch_25

* Update Packs/PingIdentity/pack_metadata.json

* Update Packs/PrismaAccess/pack_metadata.json

---------



* Adopt 'platform' MP to content packs demisto#26 (demisto#39187)

* batch_26

* revert incorrect changes

* Adopt 'platform' MP to content packs #27 (demisto#39188)

* batch_27

* revert incorrect changes

* Adopt 'platform' MP to content packs demisto#28 (demisto#39189)

* batch_28

* revert incorrect changes

* remove identity_threat

---------



* Adopt 'platform' MP to content packs demisto#29 (demisto#39190)

* batch_29

* revert incorrect changes

* Update Packs/Slack/pack_metadata.json

---------



* batch_30 (demisto#39191)

* batch_31 (demisto#39192)

* Adopt 'platform' MP to content packs demisto#32 (demisto#39193)

* batch_32

* Update Packs/Workday/pack_metadata.json

---------



* batch_33 (demisto#39194)

* Adopt 'platform' MP to content packs demisto#23 (demisto#39184)

* batch_23

* revert incorrect changes

* remove identity_threat

---------



* fix json

* limit common scripts

* Revert "Merge branch 'test-platform-mp' into nivbs/CIAC-13013_Quick_Actions"

This reverts commit 78e897c, reversing
changes made to d2885a5.

* Update release notes before pre commit

* Update release notes before pre commit

* Update current version in pack_metadata.json

* Applying changes to adjust pre-commit tests

* Making sure that send slack message and send teams message dont run as one action

* Updating SlackV3_test.py to support new version

* Revert docker changes in slack and teams because of build not supporting new versions

* Revert slack test changes becuase docker versions were not updated

* Remove Unnecessary description in Teams

---------







* Fix validate content tpb (demisto#39297)

* Increase timeout

* fix tpb yml

* FormatURL does not correctly extract URLs from URLs of type ProofPoint URLDefense v3 (demisto#39086)

* first commit

* add rn

* add tests- urls are from api

* Bump pack from version CommonScripts to 1.19.34.

* improve code

* Bump pack from version ApiModules to 2.2.43.

* add rn

* fix docker

* fix code

* fix pre-commit

* fix pre-commit

* fix pre-commit

* fix pre-commit

* fix test

* Bump pack from version CommonScripts to 1.19.35.

* fix test

* fix test playbook

* fix warnings

* fix warnings

* fix warnings

* fix warnings

---------



* Modified readme file - Proofpoint TAP (demisto#39289)

* Modified readme file

* Update Packs/ProofpointTAP/README.md



---------



* Improve handling of command execution timeout using timed thread in QualysV2 (demisto#39074)

* Updated Silverfort Pack README (demisto#38764) (demisto#39304)

* Updated Silverfort README

* Updated based on ilaredo's feedback

* Trigger build workflow



* Fix for list of techniques in InvestigationDetailedSummaryToTable (demisto#39291)

* fix for customer issue

* FeedDomainTools Release v1.0.1 (demisto#39280) (demisto#39305)

* Add release notes

* Removed release notes

* Add domain discovery feed.

* Added domainrdap feeds

* Add test cases for domainrdap feeds

* Revert hardcoded indicator type

* Remove unnecessary comment

* Update README

* Update release notes



* Fix upload flow core packs validation (demisto#39306)

* update the RN

* empty

* Intense sso failures fix (demisto#39301)

* Change 90 days to 1 day

* Change 90 days to 1 day

* RN

---------

Co-authored-by: xsoar-bot <67315154+xsoar-bot@users.noreply.github.com>
Co-authored-by: ROCCO <rocco.mercante@intesasanpaolo.com>
Co-authored-by: ispRM <99743409+ispRM@users.noreply.github.com>
Co-authored-by: inbalapt1 <164751454+inbalapt1@users.noreply.github.com>
Co-authored-by: iapt@paloaltonetworks.com <iapt@paloaltonetworks.com>
Co-authored-by: Shachar Kidor <82749224+ShacharKidor@users.noreply.github.com>
Co-authored-by: sdaniel6 <sdaniel@paloaltonetworks.com>
Co-authored-by: Shahaf Ben Yakir <44666568+ShahafBenYakir@users.noreply.github.com>
Co-authored-by: bryanster <45668775+bryanster@users.noreply.github.com>
Co-authored-by: Jelle Hol <jellehol93@gmail.com>
Co-authored-by: yasta5 <112320333+yasta5@users.noreply.github.com>
Co-authored-by: ShirleyDenkberg <62508050+ShirleyDenkberg@users.noreply.github.com>
Co-authored-by: Content Bot <bot@demisto.com>
Co-authored-by: Niv Ben Salmon <nbensalmon@paloaltonetworks.com>
Co-authored-by: EyalPintzov <91007713+eyalpalo@users.noreply.github.com>
Co-authored-by: Yuval Hayun <70104171+YuvHayun@users.noreply.github.com>
Co-authored-by: Daniel Rezvani <drezvani@paloaltonetworks.com>
Co-authored-by: Karina Fishman <147307864+karinafishman@users.noreply.github.com>
Co-authored-by: Adi Peretz <130285835+AdiPeret@users.noreply.github.com>
Co-authored-by: Jacob Levy <129657918+jlevypaloalto@users.noreply.github.com>
Co-authored-by: Arad Carmi <62752352+AradCarmi@users.noreply.github.com>
Co-authored-by: lironcohen272 <lircohen@paloaltonetworks.com>
Co-authored-by: Menachem Weinfeld <90556466+mmhw@users.noreply.github.com>
Co-authored-by: barryyosi-panw <158817412+barryyosi-panw@users.noreply.github.com>
Co-authored-by: Israel Lappe <79846863+ilappe@users.noreply.github.com>
Co-authored-by: darbel <darbel@paloaltonetworks.com>
Co-authored-by: rundssoar <139948408+rundssoar@users.noreply.github.com>
Co-authored-by: eepstain <116078117+eepstain@users.noreply.github.com>
Co-authored-by: johnnywilkes <32227961+johnnywilkes@users.noreply.github.com>
Co-authored-by: Danny_Fried <dfried@paloaltonetworks.com>
Co-authored-by: barryyosi-panw <byosilevich@paloaltonetworks.com>
Co-authored-by: Tal Zichlinsky <35036457+talzich@users.noreply.github.com>
Co-authored-by: Tal Carmeli <158452762+tcarmeli1@users.noreply.github.com>
Co-authored-by: Kamal Qarain <45042524+kamalq97@users.noreply.github.com>
Co-authored-by: Frank Gasparovic <Frank.Gasparovic@Gmail.com>
Co-authored-by: Andrew Shamah <42912128+amshamah419@users.noreply.github.com>
Co-authored-by: Bri <133698148+briluza@users.noreply.github.com>
Co-authored-by: Tomer Haimof <81556849+tomer-pan@users.noreply.github.com>
Co-authored-by: RotemAmit <ramit@paloaltonetworks.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant