From 89f44be01bcaf46cbef81603c0b62c9501940bf2 Mon Sep 17 00:00:00 2001 From: Menachem Weinfeld Date: Wed, 23 Aug 2023 16:50:08 +0300 Subject: [PATCH 1/3] Revert the 7839428 commit --- .../MicrosoftApiModule/MicrosoftApiModule.py | 33 +----------- .../MicrosoftApiModule_test.py | 54 +------------------ .../ReleaseNotes/1_3_16.md | 1 + Packs/AzureCompute/ReleaseNotes/1_2_13.md | 1 + .../AzureDataExplorer/ReleaseNotes/1_2_25.md | 1 + Packs/AzureDevOps/ReleaseNotes/1_2_17.md | 1 + Packs/AzureFirewall/ReleaseNotes/1_1_25.md | 1 + Packs/AzureKeyVault/ReleaseNotes/1_1_26.md | 1 + .../ReleaseNotes/1_1_18.md | 1 + .../AzureLogAnalytics/ReleaseNotes/1_1_16.md | 1 + .../ReleaseNotes/1_2_18.md | 1 + Packs/AzureRiskyUsers/ReleaseNotes/1_1_16.md | 1 + .../AzureSQLManagement/ReleaseNotes/1_1_27.md | 1 + .../AzureSecurityCenter/ReleaseNotes/2_0_8.md | 1 + Packs/AzureSentinel/ReleaseNotes/1_5_18.md | 1 + Packs/AzureStorage/ReleaseNotes/1_2_18.md | 1 + Packs/AzureWAF/ReleaseNotes/1_1_16.md | 1 + .../ReleaseNotes/4_5_12.md | 1 + .../ReleaseNotes/2_1_38.md | 1 + .../ReleaseNotes/1_16_3.md | 1 + .../ReleaseNotes/1_2_17.md | 1 + .../MicrosoftGraphAPI/ReleaseNotes/1_1_27.md | 1 + .../ReleaseNotes/1_2_24.md | 1 + .../ReleaseNotes/1_1_15.md | 1 + .../ReleaseNotes/1_1_16.md | 1 + .../ReleaseNotes/1_1_16.md | 1 + .../ReleaseNotes/1_1_27.md | 1 + .../ReleaseNotes/1_2_29.md | 1 + .../MicrosoftGraphMail/ReleaseNotes/1_5_11.md | 1 + .../ReleaseNotes/1_0_4.md | 1 + .../ReleaseNotes/2_1_28.md | 1 + .../ReleaseNotes/1_0_11.md | 1 + .../MicrosoftGraphUser/ReleaseNotes/1_5_22.md | 1 + .../ReleaseNotes/1_3_26.md | 1 + Packs/MicrosoftTeams/ReleaseNotes/1_4_29.md | 1 + 35 files changed, 37 insertions(+), 83 deletions(-) diff --git a/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule.py b/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule.py index 776eb7e2b982..65272cac02e1 100644 --- a/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule.py +++ b/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule.py @@ -735,8 +735,6 @@ def __init__(self, tenant_id: str = '', self.resources = resources if resources else [] self.resource_to_access_token: dict[str, str] = {} - self.auth_code_reconfigured = False - # for Azure Managed Identities purpose self.managed_identities_client_id = managed_identities_client_id self.managed_identities_resource_uri = managed_identities_resource_uri @@ -869,11 +867,7 @@ def get_access_token(self, resource: str = '', scope: str | None = None) -> str: valid_until = integration_context.get(valid_until_keyword) - self.auth_code_reconfigured = self.is_auth_code_reconfigured(integration_context.get('auth_code', '')) - if self.auth_code_reconfigured: - demisto.debug("Auth code reconfigured, saving new auth code to integration context") - integration_context['auth_code'] = self.auth_code - elif access_token and valid_until and self.epoch_seconds() < valid_until: + if access_token and valid_until and self.epoch_seconds() < valid_until: return access_token if self.auth_type == OPROXY_AUTH_TYPE: @@ -1107,7 +1101,7 @@ def _get_self_deployed_token_auth_code( data['scope'] = scope refresh_token = refresh_token or self._get_refresh_token_from_auth_code_param() - if refresh_token and not self.auth_code_reconfigured: + if refresh_token: data['grant_type'] = REFRESH_TOKEN data['refresh_token'] = refresh_token else: @@ -1393,29 +1387,6 @@ def start_auth(self, complete_command: str) -> str: and enter the code **{user_code}** to authenticate. 2. Run the **{complete_command}** command in the War Room.""" - def is_auth_code_reconfigured(self, auth_code) -> bool: - """ - Checks if the auth_code is reconfigured by comparing to the self.auth_code from the instance params. - Args: - auth_code: The auth_code form the integration context. - Returns: - bool: True if the auth_code is reconfigured, otherwise False. - """ - # Case of oproxy - if self.auth_type == OPROXY_AUTH_TYPE: - return False - # Case of the next times or after reconfigured the auth_code - if auth_code and self.auth_code: - is_reconfigured = auth_code != self.auth_code - demisto.debug(f'Auth code is reconfigured: {is_reconfigured}') - return is_reconfigured - # Case of the first time or after deleting the auth_code - elif auth_code or self.auth_code: - demisto.debug('Auth code is only in ' + ('integration_context' if auth_code else 'params')) - return True - else: - return False - class NotFoundError(Exception): """Exception raised for 404 - Not Found errors. diff --git a/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule_test.py b/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule_test.py index 91ae59a585ef..f8e04530eb86 100644 --- a/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule_test.py +++ b/Packs/ApiModules/Scripts/MicrosoftApiModule/MicrosoftApiModule_test.py @@ -18,8 +18,6 @@ CLIENT_ID = 'dummy_client' CLIENT_SECRET = 'dummy_secret' APP_URL = 'https://login.microsoftonline.com/dummy_tenant/oauth2/v2.0/token' -AUTH_CODE = 'dummy_auth_code' -REDIRECT_URI = 'https://localhost/myapp' SCOPE = 'https://graph.microsoft.com/.default' RESOURCE = 'https://defender.windows.com/shtak' RESOURCES = ['https://resource1.com', 'https://resource2.com'] @@ -64,17 +62,15 @@ def oproxy_client_refresh(): ) -def self_deployed_client(grant_type=CLIENT_CREDENTIALS): +def self_deployed_client(): tenant_id = TENANT client_id = CLIENT_ID client_secret = CLIENT_SECRET base_url = BASE_URL - auth_code = AUTH_CODE if grant_type == AUTHORIZATION_CODE else '' resource = RESOURCE ok_codes = OK_CODES return MicrosoftClient(self_deployed=True, tenant_id=tenant_id, auth_id=client_id, enc_key=client_secret, - grant_type=grant_type, auth_code=auth_code, resource=resource, base_url=base_url, verify=True, proxy=False, ok_codes=ok_codes) @@ -721,7 +717,7 @@ def test_generate_login_url(): """ from MicrosoftApiModule import generate_login_url - client = self_deployed_client(grant_type=AUTHORIZATION_CODE) + client = self_deployed_client() result = generate_login_url(client) @@ -729,49 +725,3 @@ def test_generate_login_url(): f'response_type=code&scope=offline_access%20https://graph.microsoft.com/.default' \ f'&client_id={CLIENT_ID}&redirect_uri=https://localhost/myapp)' assert expected_url in result.readable_output, "Login URL is incorrect" - - -def test_get_access_token_auth_code_reconfigured(mocker, requests_mock): - """ - Given: - - The auth code was reconfigured - When: - - Calling function get_access_token - Then: - - Ensure the access token is as expected in the body of the request and in the integration context - """ - context = {'auth_code': AUTH_CODE, 'access_token': TOKEN, - 'valid_until': 3605, 'current_refresh_token': REFRESH_TOKEN} - - mocker.patch.object(demisto, 'getIntegrationContext', return_value=context) - mocker.patch.object(demisto, 'setIntegrationContext') - - tenant_id = TENANT - client_id = CLIENT_ID - client_secret = CLIENT_SECRET - base_url = BASE_URL - new_auth_code = 'reconfigured_auth_code' - resource = None - ok_codes = OK_CODES - grant_type = AUTHORIZATION_CODE - - client = MicrosoftClient(self_deployed=True, tenant_id=tenant_id, auth_id=client_id, enc_key=client_secret, - grant_type=grant_type, auth_code=new_auth_code, - resource=resource, base_url=base_url, verify=True, proxy=False, ok_codes=ok_codes) - - requests_mock.post( - APP_URL, - json={'access_token': TOKEN, 'expires_in': '3600'}) - - body = { - 'client_id': CLIENT_ID, - 'client_secret': CLIENT_SECRET, - 'redirect_uri': REDIRECT_URI, - 'grant_type': AUTHORIZATION_CODE, - 'code': new_auth_code, - } - - assert client.get_access_token() - req_body = requests_mock._adapter.last_request._request.body - assert urllib.parse.urlencode(body) == req_body - assert demisto.getIntegrationContext().get('auth_code') == new_auth_code diff --git a/Packs/AzureActiveDirectory/ReleaseNotes/1_3_16.md b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_16.md index e8a70dc34314..6a2bc8c4704b 100644 --- a/Packs/AzureActiveDirectory/ReleaseNotes/1_3_16.md +++ b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureCompute/ReleaseNotes/1_2_13.md b/Packs/AzureCompute/ReleaseNotes/1_2_13.md index d6ad0b5b70c0..ab688e4714cf 100644 --- a/Packs/AzureCompute/ReleaseNotes/1_2_13.md +++ b/Packs/AzureCompute/ReleaseNotes/1_2_13.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureDataExplorer/ReleaseNotes/1_2_25.md b/Packs/AzureDataExplorer/ReleaseNotes/1_2_25.md index 8e9a90a1c61e..6f3d610ffce6 100644 --- a/Packs/AzureDataExplorer/ReleaseNotes/1_2_25.md +++ b/Packs/AzureDataExplorer/ReleaseNotes/1_2_25.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureDevOps/ReleaseNotes/1_2_17.md b/Packs/AzureDevOps/ReleaseNotes/1_2_17.md index 6ed9f76f84a3..5ba20e276e93 100644 --- a/Packs/AzureDevOps/ReleaseNotes/1_2_17.md +++ b/Packs/AzureDevOps/ReleaseNotes/1_2_17.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureFirewall/ReleaseNotes/1_1_25.md b/Packs/AzureFirewall/ReleaseNotes/1_1_25.md index 105f7d073b6a..73f2f5e629bf 100644 --- a/Packs/AzureFirewall/ReleaseNotes/1_1_25.md +++ b/Packs/AzureFirewall/ReleaseNotes/1_1_25.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureKeyVault/ReleaseNotes/1_1_26.md b/Packs/AzureKeyVault/ReleaseNotes/1_1_26.md index bd29bd4967b2..ef3a2e14b5be 100644 --- a/Packs/AzureKeyVault/ReleaseNotes/1_1_26.md +++ b/Packs/AzureKeyVault/ReleaseNotes/1_1_26.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureKubernetesServices/ReleaseNotes/1_1_18.md b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_18.md index e1710120a225..ccf9d258e279 100644 --- a/Packs/AzureKubernetesServices/ReleaseNotes/1_1_18.md +++ b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_18.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureLogAnalytics/ReleaseNotes/1_1_16.md b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_16.md index c42c394b4f62..3a47dcfc7c57 100644 --- a/Packs/AzureLogAnalytics/ReleaseNotes/1_1_16.md +++ b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_18.md b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_18.md index 0631bc1900ab..27f1e376f60f 100644 --- a/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_18.md +++ b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_18.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureRiskyUsers/ReleaseNotes/1_1_16.md b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_16.md index d2ca6b3e2485..463fcd80126b 100644 --- a/Packs/AzureRiskyUsers/ReleaseNotes/1_1_16.md +++ b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureSQLManagement/ReleaseNotes/1_1_27.md b/Packs/AzureSQLManagement/ReleaseNotes/1_1_27.md index 71974dc8810b..7439113b1156 100644 --- a/Packs/AzureSQLManagement/ReleaseNotes/1_1_27.md +++ b/Packs/AzureSQLManagement/ReleaseNotes/1_1_27.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureSecurityCenter/ReleaseNotes/2_0_8.md b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_8.md index cce46f02617f..c618f9158d9d 100644 --- a/Packs/AzureSecurityCenter/ReleaseNotes/2_0_8.md +++ b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_8.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureSentinel/ReleaseNotes/1_5_18.md b/Packs/AzureSentinel/ReleaseNotes/1_5_18.md index f4e9271814b4..5aad897574b3 100644 --- a/Packs/AzureSentinel/ReleaseNotes/1_5_18.md +++ b/Packs/AzureSentinel/ReleaseNotes/1_5_18.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureStorage/ReleaseNotes/1_2_18.md b/Packs/AzureStorage/ReleaseNotes/1_2_18.md index e718cdc7bf3c..8d4ddb45e9e4 100644 --- a/Packs/AzureStorage/ReleaseNotes/1_2_18.md +++ b/Packs/AzureStorage/ReleaseNotes/1_2_18.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/AzureWAF/ReleaseNotes/1_1_16.md b/Packs/AzureWAF/ReleaseNotes/1_1_16.md index a3fb851cbc16..b5e3af6c1ff3 100644 --- a/Packs/AzureWAF/ReleaseNotes/1_1_16.md +++ b/Packs/AzureWAF/ReleaseNotes/1_1_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/Microsoft365Defender/ReleaseNotes/4_5_12.md b/Packs/Microsoft365Defender/ReleaseNotes/4_5_12.md index 789daefbae22..cdc9a9d269e6 100644 --- a/Packs/Microsoft365Defender/ReleaseNotes/4_5_12.md +++ b/Packs/Microsoft365Defender/ReleaseNotes/4_5_12.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_38.md b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_38.md index 0ba0dd76466f..b5fabfa4e2a0 100644 --- a/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_38.md +++ b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_38.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_3.md b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_3.md index 2454a0d77187..d11a1f37db82 100644 --- a/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_3.md +++ b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_3.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_17.md b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_17.md index 645c743b98ed..8794a1978f9f 100644 --- a/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_17.md +++ b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_17.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_27.md b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_27.md index 71ac882ee9f2..6fc80704c1dd 100644 --- a/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_27.md +++ b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_27.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_24.md b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_24.md index 650fe74587f2..e45c2c671815 100644 --- a/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_24.md +++ b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_24.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_15.md b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_15.md index 2a95bb18d03a..184b46344f8e 100644 --- a/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_15.md +++ b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_15.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_16.md b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_16.md index 01608d1f0c05..d407b36f217a 100644 --- a/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_16.md +++ b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_16.md b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_16.md index 806c66aa1b75..40b6c3262d3a 100644 --- a/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_16.md +++ b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_16.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_27.md b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_27.md index d884b5a46466..7aa8040096ef 100644 --- a/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_27.md +++ b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_27.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_29.md b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_29.md index 2d6647ba81c2..72f70df44a86 100644 --- a/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_29.md +++ b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_29.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_11.md b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_11.md index 2525ccb0ce83..e122497f5356 100644 --- a/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_11.md +++ b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_11.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_4.md b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_4.md index 55272ba125c2..78397ebeafa1 100644 --- a/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_4.md +++ b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_4.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_1_28.md b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_1_28.md index 3b76e32eecec..683ffd0ce3c0 100644 --- a/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_1_28.md +++ b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_1_28.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_11.md b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_11.md index a3b5d803bd0b..8dffd43c9611 100644 --- a/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_11.md +++ b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_11.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_22.md b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_22.md index 1769d2d0e172..f56ca32f0de1 100644 --- a/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_22.md +++ b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_22.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_26.md b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_26.md index 238e35ee97e0..d742afec3e3f 100644 --- a/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_26.md +++ b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_26.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations diff --git a/Packs/MicrosoftTeams/ReleaseNotes/1_4_29.md b/Packs/MicrosoftTeams/ReleaseNotes/1_4_29.md index 6473808c3ae6..15256f6cbe6b 100644 --- a/Packs/MicrosoftTeams/ReleaseNotes/1_4_29.md +++ b/Packs/MicrosoftTeams/ReleaseNotes/1_4_29.md @@ -1,3 +1,4 @@ +***WARNING: This version is invalid. Please install a different version.*** #### Integrations From b4d439460af38c85dff7a7c244b5c05d20ecc0d3 Mon Sep 17 00:00:00 2001 From: Menachem Weinfeld Date: Wed, 23 Aug 2023 17:14:29 +0300 Subject: [PATCH 2/3] Update RN --- Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md | 6 ++++++ Packs/AzureActiveDirectory/pack_metadata.json | 2 +- Packs/AzureCompute/ReleaseNotes/1_2_14.md | 6 ++++++ Packs/AzureCompute/pack_metadata.json | 2 +- Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md | 6 ++++++ Packs/AzureDataExplorer/pack_metadata.json | 2 +- Packs/AzureDevOps/ReleaseNotes/1_3_1.md | 6 ++++++ Packs/AzureDevOps/pack_metadata.json | 2 +- Packs/AzureFirewall/ReleaseNotes/1_1_26.md | 6 ++++++ Packs/AzureFirewall/pack_metadata.json | 2 +- Packs/AzureKeyVault/ReleaseNotes/1_1_27.md | 6 ++++++ Packs/AzureKeyVault/pack_metadata.json | 2 +- Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md | 6 ++++++ Packs/AzureKubernetesServices/pack_metadata.json | 2 +- Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md | 6 ++++++ Packs/AzureLogAnalytics/pack_metadata.json | 2 +- .../AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md | 6 ++++++ Packs/AzureNetworkSecurityGroups/pack_metadata.json | 2 +- Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md | 6 ++++++ Packs/AzureRiskyUsers/pack_metadata.json | 2 +- Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md | 6 ++++++ Packs/AzureSQLManagement/pack_metadata.json | 2 +- Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md | 10 ++++++++++ Packs/AzureSecurityCenter/pack_metadata.json | 2 +- Packs/AzureSentinel/ReleaseNotes/1_5_19.md | 6 ++++++ Packs/AzureSentinel/pack_metadata.json | 2 +- Packs/AzureStorage/ReleaseNotes/1_2_19.md | 6 ++++++ Packs/AzureStorage/pack_metadata.json | 2 +- Packs/AzureWAF/ReleaseNotes/1_1_17.md | 6 ++++++ Packs/AzureWAF/pack_metadata.json | 2 +- Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md | 6 ++++++ Packs/Microsoft365Defender/pack_metadata.json | 2 +- Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md | 10 ++++++++++ Packs/MicrosoftCloudAppSecurity/pack_metadata.json | 2 +- .../ReleaseNotes/1_16_5.md | 10 ++++++++++ .../pack_metadata.json | 2 +- Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md | 6 ++++++ Packs/MicrosoftExchangeOnline/pack_metadata.json | 2 +- Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md | 6 ++++++ Packs/MicrosoftGraphAPI/pack_metadata.json | 2 +- .../MicrosoftGraphApplications/ReleaseNotes/1_2_25.md | 6 ++++++ Packs/MicrosoftGraphApplications/pack_metadata.json | 2 +- Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md | 6 ++++++ Packs/MicrosoftGraphCalendar/pack_metadata.json | 2 +- .../ReleaseNotes/1_1_17.md | 6 ++++++ .../MicrosoftGraphDeviceManagement/pack_metadata.json | 2 +- Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md | 6 ++++++ Packs/MicrosoftGraphFiles/pack_metadata.json | 2 +- Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md | 6 ++++++ Packs/MicrosoftGraphGroups/pack_metadata.json | 2 +- .../ReleaseNotes/1_2_30.md | 6 ++++++ .../MicrosoftGraphIdentityandAccess/pack_metadata.json | 2 +- Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md | 10 ++++++++++ Packs/MicrosoftGraphMail/pack_metadata.json | 2 +- Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md | 6 ++++++ Packs/MicrosoftGraphSearch/pack_metadata.json | 2 +- Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md | 6 ++++++ Packs/MicrosoftGraphSecurity/pack_metadata.json | 2 +- Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md | 6 ++++++ Packs/MicrosoftGraphTeams/pack_metadata.json | 2 +- Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md | 6 ++++++ Packs/MicrosoftGraphUser/pack_metadata.json | 2 +- .../MicrosoftManagementActivity/ReleaseNotes/1_3_27.md | 6 ++++++ Packs/MicrosoftManagementActivity/pack_metadata.json | 2 +- Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md | 6 ++++++ Packs/MicrosoftTeams/pack_metadata.json | 2 +- 66 files changed, 247 insertions(+), 33 deletions(-) create mode 100644 Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md create mode 100644 Packs/AzureCompute/ReleaseNotes/1_2_14.md create mode 100644 Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md create mode 100644 Packs/AzureDevOps/ReleaseNotes/1_3_1.md create mode 100644 Packs/AzureFirewall/ReleaseNotes/1_1_26.md create mode 100644 Packs/AzureKeyVault/ReleaseNotes/1_1_27.md create mode 100644 Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md create mode 100644 Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md create mode 100644 Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md create mode 100644 Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md create mode 100644 Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md create mode 100644 Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md create mode 100644 Packs/AzureSentinel/ReleaseNotes/1_5_19.md create mode 100644 Packs/AzureStorage/ReleaseNotes/1_2_19.md create mode 100644 Packs/AzureWAF/ReleaseNotes/1_1_17.md create mode 100644 Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md create mode 100644 Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md create mode 100644 Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md create mode 100644 Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md create mode 100644 Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md create mode 100644 Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md create mode 100644 Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md create mode 100644 Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md create mode 100644 Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md create mode 100644 Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md create mode 100644 Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md create mode 100644 Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md create mode 100644 Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md create mode 100644 Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md create mode 100644 Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md create mode 100644 Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md create mode 100644 Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md create mode 100644 Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md diff --git a/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md new file mode 100644 index 000000000000..80432c422907 --- /dev/null +++ b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Active Directory Identity Protection (Deprecated) + +Fixed an issue where instances using version 1.3.16 or highr of the pack could have authentication issues. diff --git a/Packs/AzureActiveDirectory/pack_metadata.json b/Packs/AzureActiveDirectory/pack_metadata.json index 90eb1a236977..9a1ed94f7c0f 100644 --- a/Packs/AzureActiveDirectory/pack_metadata.json +++ b/Packs/AzureActiveDirectory/pack_metadata.json @@ -3,7 +3,7 @@ "description": "Deprecated. Use Microsoft Graph Identity and Access instead.", "support": "xsoar", "hidden": true, - "currentVersion": "1.3.16", + "currentVersion": "1.3.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureCompute/ReleaseNotes/1_2_14.md b/Packs/AzureCompute/ReleaseNotes/1_2_14.md new file mode 100644 index 000000000000..a0e5cb5f3d01 --- /dev/null +++ b/Packs/AzureCompute/ReleaseNotes/1_2_14.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Compute v2 + +Fixed an issue where instances using version 1.2.13 or highr of the pack could have authentication issues. diff --git a/Packs/AzureCompute/pack_metadata.json b/Packs/AzureCompute/pack_metadata.json index f37f9f3cb155..794d855fdf7f 100644 --- a/Packs/AzureCompute/pack_metadata.json +++ b/Packs/AzureCompute/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Compute", "description": "Create and Manage Azure Virtual Machines", "support": "xsoar", - "currentVersion": "1.2.13", + "currentVersion": "1.2.14", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md b/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md new file mode 100644 index 000000000000..d4e223a0c8ea --- /dev/null +++ b/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Data Explorer + +Fixed an issue where instances using version 1.2.25 or highr of the pack could have authentication issues. diff --git a/Packs/AzureDataExplorer/pack_metadata.json b/Packs/AzureDataExplorer/pack_metadata.json index 4761bf74dfb4..c48c0dae2ef1 100644 --- a/Packs/AzureDataExplorer/pack_metadata.json +++ b/Packs/AzureDataExplorer/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Data Explorer", "description": "Use Azure Data Explorer integration to collect and analyze data inside clusters of Azure Data Explorer and manage search queries.", "support": "xsoar", - "currentVersion": "1.2.25", + "currentVersion": "1.2.26", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureDevOps/ReleaseNotes/1_3_1.md b/Packs/AzureDevOps/ReleaseNotes/1_3_1.md new file mode 100644 index 000000000000..3d05446ea328 --- /dev/null +++ b/Packs/AzureDevOps/ReleaseNotes/1_3_1.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### AzureDevOps + +Fixed an issue where instances using version 1.2.17 or highr of the pack could have authentication issues. diff --git a/Packs/AzureDevOps/pack_metadata.json b/Packs/AzureDevOps/pack_metadata.json index c4dab7487b62..e92eab998658 100644 --- a/Packs/AzureDevOps/pack_metadata.json +++ b/Packs/AzureDevOps/pack_metadata.json @@ -2,7 +2,7 @@ "name": "AzureDevOps", "description": "Create and manage Git repositories in Azure DevOps Services.", "support": "xsoar", - "currentVersion": "1.3.0", + "currentVersion": "1.3.1", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureFirewall/ReleaseNotes/1_1_26.md b/Packs/AzureFirewall/ReleaseNotes/1_1_26.md new file mode 100644 index 000000000000..842bacfcea44 --- /dev/null +++ b/Packs/AzureFirewall/ReleaseNotes/1_1_26.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Firewall + +Fixed an issue where instances using version 1.1.25 or highr of the pack could have authentication issues. diff --git a/Packs/AzureFirewall/pack_metadata.json b/Packs/AzureFirewall/pack_metadata.json index 8d6abc2b6288..05f6bb6e6f40 100644 --- a/Packs/AzureFirewall/pack_metadata.json +++ b/Packs/AzureFirewall/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Firewall", "description": "Azure Firewall is a cloud-native and intelligent network firewall security service that provides breed threat protection for cloud workloads running in Azure.It's a fully stateful, firewall as a service with built-in high availability and unrestricted cloud scalability.", "support": "xsoar", - "currentVersion": "1.1.25", + "currentVersion": "1.1.26", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md b/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md new file mode 100644 index 000000000000..27686ad8f123 --- /dev/null +++ b/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Key Vault + +Fixed an issue where instances using version 1.1.26 or highr of the pack could have authentication issues. diff --git a/Packs/AzureKeyVault/pack_metadata.json b/Packs/AzureKeyVault/pack_metadata.json index 698dbe347630..fe29ed6bfdfc 100644 --- a/Packs/AzureKeyVault/pack_metadata.json +++ b/Packs/AzureKeyVault/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Key Vault", "description": "Use Key Vault to safeguard and manage cryptographic keys and secrets used by cloud applications and services.", "support": "xsoar", - "currentVersion": "1.1.26", + "currentVersion": "1.1.27", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md new file mode 100644 index 000000000000..c21ab3d8318b --- /dev/null +++ b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Kubernetes Services + +Fixed an issue where instances using version 1.1.18 or highr of the pack could have authentication issues. diff --git a/Packs/AzureKubernetesServices/pack_metadata.json b/Packs/AzureKubernetesServices/pack_metadata.json index bc3cef70a441..622ab277904d 100644 --- a/Packs/AzureKubernetesServices/pack_metadata.json +++ b/Packs/AzureKubernetesServices/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Kubernetes Services", "description": "Deploy and manage containerized applications with a fully managed Kubernetes service.", "support": "xsoar", - "currentVersion": "1.1.18", + "currentVersion": "1.1.19", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md new file mode 100644 index 000000000000..696bbac528fb --- /dev/null +++ b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Log Analytics + +Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. diff --git a/Packs/AzureLogAnalytics/pack_metadata.json b/Packs/AzureLogAnalytics/pack_metadata.json index f2660649846b..32d0a979d72d 100644 --- a/Packs/AzureLogAnalytics/pack_metadata.json +++ b/Packs/AzureLogAnalytics/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Log Analytics", "description": "Log Analytics is a service that helps you collect and analyze data generated by resources in your cloud and on-premises environments.", "support": "xsoar", - "currentVersion": "1.1.16", + "currentVersion": "1.1.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md new file mode 100644 index 000000000000..6461c2cb9054 --- /dev/null +++ b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Network Security Groups + +Fixed an issue where instances using version 1.2.18 or highr of the pack could have authentication issues. diff --git a/Packs/AzureNetworkSecurityGroups/pack_metadata.json b/Packs/AzureNetworkSecurityGroups/pack_metadata.json index ef7aab86cc37..d6ecc4257d31 100644 --- a/Packs/AzureNetworkSecurityGroups/pack_metadata.json +++ b/Packs/AzureNetworkSecurityGroups/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Network Security Groups", "description": "Azure Network Security Groups are used to filter network traffic to and from Azure resources in an Azure virtual network", "support": "xsoar", - "currentVersion": "1.2.18", + "currentVersion": "1.2.19", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md new file mode 100644 index 000000000000..791f8d531cf6 --- /dev/null +++ b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Risky Users + +Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. diff --git a/Packs/AzureRiskyUsers/pack_metadata.json b/Packs/AzureRiskyUsers/pack_metadata.json index 0e5349d3affd..4724f04f00f6 100644 --- a/Packs/AzureRiskyUsers/pack_metadata.json +++ b/Packs/AzureRiskyUsers/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Risky Users", "description": "Azure Risky Users provides access to all at-risk users and risk detections in Azure AD environment.", "support": "xsoar", - "currentVersion": "1.1.16", + "currentVersion": "1.1.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md b/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md new file mode 100644 index 000000000000..104b013e2bc5 --- /dev/null +++ b/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure SQL Management + +Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. diff --git a/Packs/AzureSQLManagement/pack_metadata.json b/Packs/AzureSQLManagement/pack_metadata.json index bc076172d78a..53b7fa7c37d0 100644 --- a/Packs/AzureSQLManagement/pack_metadata.json +++ b/Packs/AzureSQLManagement/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure SQL Management", "description": "Microsoft Azure SQL Database is a managed cloud database provided as part of Microsoft Azure", "support": "xsoar", - "currentVersion": "1.1.27", + "currentVersion": "1.1.28", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md new file mode 100644 index 000000000000..7bde77497ef4 --- /dev/null +++ b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md @@ -0,0 +1,10 @@ + +#### Integrations + +##### Microsoft Defender for Cloud Event Collector + +Fixed an issue where instances using version 2.0.8 or highr of the pack could have authentication issues. + +##### Microsoft Defender for Cloud + +Fixed an issue where instances using version 2.0.8 or highr of the pack could have authentication issues. diff --git a/Packs/AzureSecurityCenter/pack_metadata.json b/Packs/AzureSecurityCenter/pack_metadata.json index da761ba6eb1a..817040ea49b2 100644 --- a/Packs/AzureSecurityCenter/pack_metadata.json +++ b/Packs/AzureSecurityCenter/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Defender for Cloud", "description": "Unified security management and advanced threat protection across hybrid cloud workloads.", "support": "xsoar", - "currentVersion": "2.0.8", + "currentVersion": "2.0.9", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureSentinel/ReleaseNotes/1_5_19.md b/Packs/AzureSentinel/ReleaseNotes/1_5_19.md new file mode 100644 index 000000000000..f064099fdb12 --- /dev/null +++ b/Packs/AzureSentinel/ReleaseNotes/1_5_19.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Sentinel + +Fixed an issue where instances using version 1.5.18 or highr of the pack could have authentication issues. diff --git a/Packs/AzureSentinel/pack_metadata.json b/Packs/AzureSentinel/pack_metadata.json index 6f435ec339a0..f9c4438e769b 100644 --- a/Packs/AzureSentinel/pack_metadata.json +++ b/Packs/AzureSentinel/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Sentinel", "description": "Microsoft Sentinel is a cloud-native security information and event manager (SIEM) platform that uses built-in AI to help analyze large volumes of data across an enterprise.", "support": "xsoar", - "currentVersion": "1.5.18", + "currentVersion": "1.5.19", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureStorage/ReleaseNotes/1_2_19.md b/Packs/AzureStorage/ReleaseNotes/1_2_19.md new file mode 100644 index 000000000000..d3379dea41ff --- /dev/null +++ b/Packs/AzureStorage/ReleaseNotes/1_2_19.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Storage Management + +Fixed an issue where instances using version 1.2.18 or highr of the pack could have authentication issues. diff --git a/Packs/AzureStorage/pack_metadata.json b/Packs/AzureStorage/pack_metadata.json index f035ee893d04..76ff472fb5e6 100644 --- a/Packs/AzureStorage/pack_metadata.json +++ b/Packs/AzureStorage/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure Storage Management", "description": "Deploy and manage storage accounts and blob service properties.", "support": "xsoar", - "currentVersion": "1.2.18", + "currentVersion": "1.2.19", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/AzureWAF/ReleaseNotes/1_1_17.md b/Packs/AzureWAF/ReleaseNotes/1_1_17.md new file mode 100644 index 000000000000..987145f9e843 --- /dev/null +++ b/Packs/AzureWAF/ReleaseNotes/1_1_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Web Application Firewall + +Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. diff --git a/Packs/AzureWAF/pack_metadata.json b/Packs/AzureWAF/pack_metadata.json index b5bd40844a52..518e97f72ff9 100644 --- a/Packs/AzureWAF/pack_metadata.json +++ b/Packs/AzureWAF/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Azure WAF", "description": "Azure Web Application Firewall is used to detect web related attacks targeting your web servers hosted in azure and allow quick respond to threats", "support": "xsoar", - "currentVersion": "1.1.16", + "currentVersion": "1.1.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md b/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md new file mode 100644 index 000000000000..079204616b4c --- /dev/null +++ b/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft 365 Defender + +Fixed an issue where instances using version 4.5.12 or highr of the pack could have authentication issues. diff --git a/Packs/Microsoft365Defender/pack_metadata.json b/Packs/Microsoft365Defender/pack_metadata.json index 143a53aaa09c..21c9aaf1fc29 100644 --- a/Packs/Microsoft365Defender/pack_metadata.json +++ b/Packs/Microsoft365Defender/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft 365 Defender", "description": "Microsoft 365 Defender is a unified pre- and post-breach enterprise defense suite that natively coordinates detection, prevention, investigation, and response across endpoints, identities, email, and applications to provide integrated protection against sophisticated attacks.", "support": "xsoar", - "currentVersion": "4.5.12", + "currentVersion": "4.5.13", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md new file mode 100644 index 000000000000..bb6f49fa4671 --- /dev/null +++ b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md @@ -0,0 +1,10 @@ + +#### Integrations + +##### Microsoft Defender for Cloud Apps Event Collector + +Fixed an issue where instances using version 2.1.38 or highr of the pack could have authentication issues. + +##### Microsoft Defender for Cloud Apps + +Fixed an issue where instances using version 2.1.38 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftCloudAppSecurity/pack_metadata.json b/Packs/MicrosoftCloudAppSecurity/pack_metadata.json index 7b16262c90c0..7825e3979159 100644 --- a/Packs/MicrosoftCloudAppSecurity/pack_metadata.json +++ b/Packs/MicrosoftCloudAppSecurity/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Defender for Cloud Apps", "description": "Microsoft Cloud App Security Integration, a Cloud Access Security Broker that supports various deployment modes", "support": "xsoar", - "currentVersion": "2.1.38", + "currentVersion": "2.1.39", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md new file mode 100644 index 000000000000..d26c45b3aecf --- /dev/null +++ b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md @@ -0,0 +1,10 @@ + +#### Integrations + +##### Microsoft Defender for Endpoint Event Collector + +Fixed an issue where instances using version 1.16.3 or highr of the pack could have authentication issues. + +##### Microsoft Defender for Endpoint + +Fixed an issue where instances using version 1.16.3 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftDefenderAdvancedThreatProtection/pack_metadata.json b/Packs/MicrosoftDefenderAdvancedThreatProtection/pack_metadata.json index 746905dcdaf3..c98bdd6203b2 100644 --- a/Packs/MicrosoftDefenderAdvancedThreatProtection/pack_metadata.json +++ b/Packs/MicrosoftDefenderAdvancedThreatProtection/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Defender for Endpoint", "description": "Microsoft Defender for Endpoint (previously Microsoft Defender Advanced Threat Protection (ATP)) is a unified platform for preventative protection, post-breach detection, automated investigation, and response.", "support": "xsoar", - "currentVersion": "1.16.4", + "currentVersion": "1.16.5", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md new file mode 100644 index 000000000000..7a94a916d78c --- /dev/null +++ b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### EWS O365 + +Fixed an issue where instances using version 1.2.17 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftExchangeOnline/pack_metadata.json b/Packs/MicrosoftExchangeOnline/pack_metadata.json index af70e4134d0d..5f54a0377af2 100644 --- a/Packs/MicrosoftExchangeOnline/pack_metadata.json +++ b/Packs/MicrosoftExchangeOnline/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Exchange Online", "description": "Exchange Online and Office 365 (mail)", "support": "xsoar", - "currentVersion": "1.2.18", + "currentVersion": "1.2.19", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md new file mode 100644 index 000000000000..335ca44ab5a4 --- /dev/null +++ b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Graph API + +Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphAPI/pack_metadata.json b/Packs/MicrosoftGraphAPI/pack_metadata.json index 948a94f81a02..56f17b741224 100644 --- a/Packs/MicrosoftGraphAPI/pack_metadata.json +++ b/Packs/MicrosoftGraphAPI/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph API", "description": "Use the Microsoft Graph API integration to interact with Microsoft APIs that do not have dedicated integrations in Cortex XSOAR, for example, Mail Single-User, etc.", "support": "xsoar", - "currentVersion": "1.1.27", + "currentVersion": "1.1.28", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md new file mode 100644 index 000000000000..08812bd8efce --- /dev/null +++ b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Active Directory Applications + +Fixed an issue where instances using version 1.2.24 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphApplications/pack_metadata.json b/Packs/MicrosoftGraphApplications/pack_metadata.json index 41ae4c2c62dc..438a433a92c7 100644 --- a/Packs/MicrosoftGraphApplications/pack_metadata.json +++ b/Packs/MicrosoftGraphApplications/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Applications", "description": "Use this pack to manage connected applications and services", "support": "xsoar", - "currentVersion": "1.2.24", + "currentVersion": "1.2.25", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md new file mode 100644 index 000000000000..d49e30e30d83 --- /dev/null +++ b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### O365 Outlook Calendar + +Fixed an issue where instances using version 1.1.15 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphCalendar/pack_metadata.json b/Packs/MicrosoftGraphCalendar/pack_metadata.json index 4d93177acdea..72a4c96c75f4 100644 --- a/Packs/MicrosoftGraphCalendar/pack_metadata.json +++ b/Packs/MicrosoftGraphCalendar/pack_metadata.json @@ -1,7 +1,7 @@ { "name": "Microsoft Graph Calendar", "description": "Microsoft Graph Calendar enables you to create and manage different calendars and events\n according to your requirements.", - "currentVersion": "1.1.15", + "currentVersion": "1.1.16", "support": "xsoar", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", diff --git a/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md new file mode 100644 index 000000000000..450d9c2f27f8 --- /dev/null +++ b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Endpoint Manager (Intune) + +Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphDeviceManagement/pack_metadata.json b/Packs/MicrosoftGraphDeviceManagement/pack_metadata.json index fefe066db7fa..5a90a241bf10 100644 --- a/Packs/MicrosoftGraphDeviceManagement/pack_metadata.json +++ b/Packs/MicrosoftGraphDeviceManagement/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Device Management", "description": "Microsoft Graph Device Management", "support": "xsoar", - "currentVersion": "1.1.16", + "currentVersion": "1.1.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md new file mode 100644 index 000000000000..cf062c01d605 --- /dev/null +++ b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### O365 File Management (Onedrive/Sharepoint/Teams) + +Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphFiles/pack_metadata.json b/Packs/MicrosoftGraphFiles/pack_metadata.json index 34fa40b074e0..ed00824984cc 100644 --- a/Packs/MicrosoftGraphFiles/pack_metadata.json +++ b/Packs/MicrosoftGraphFiles/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Files", "description": "Use the O365 File Management (Onedrive/Sharepoint/Teams) integration to enable your app get authorized access to files in OneDrive, SharePoint, and MS Teams across your entire organization. This integration requires admin consent.", "support": "xsoar", - "currentVersion": "1.1.16", + "currentVersion": "1.1.17", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md new file mode 100644 index 000000000000..109158af069e --- /dev/null +++ b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Active Directory Groups + +Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphGroups/pack_metadata.json b/Packs/MicrosoftGraphGroups/pack_metadata.json index c407d427a941..a672821d68ef 100644 --- a/Packs/MicrosoftGraphGroups/pack_metadata.json +++ b/Packs/MicrosoftGraphGroups/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Groups", "description": "Microsoft Graph Groups enables you to create and manage different types of groups and group functionality according to your requirements.", "support": "xsoar", - "currentVersion": "1.1.27", + "currentVersion": "1.1.28", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md new file mode 100644 index 000000000000..96ca2c44da26 --- /dev/null +++ b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Active Directory Identity And Access + +Fixed an issue where instances using version 1.2.29 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphIdentityandAccess/pack_metadata.json b/Packs/MicrosoftGraphIdentityandAccess/pack_metadata.json index 4ff899b36c4c..5e5890f7b96b 100644 --- a/Packs/MicrosoftGraphIdentityandAccess/pack_metadata.json +++ b/Packs/MicrosoftGraphIdentityandAccess/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Identity and Access", "description": "Use this pack to manage roles and members in Microsoft.", "support": "xsoar", - "currentVersion": "1.2.29", + "currentVersion": "1.2.30", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md new file mode 100644 index 000000000000..cae10f50dab7 --- /dev/null +++ b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md @@ -0,0 +1,10 @@ + +#### Integrations + +##### O365 Outlook Mail (Using Graph API) + +Fixed an issue where instances using version 1.5.11 or highr of the pack could have authentication issues. + +##### Microsoft Graph Mail Single User + +Fixed an issue where instances using version 1.5.11 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphMail/pack_metadata.json b/Packs/MicrosoftGraphMail/pack_metadata.json index ad8c88f25268..4b1834a747b2 100644 --- a/Packs/MicrosoftGraphMail/pack_metadata.json +++ b/Packs/MicrosoftGraphMail/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Mail", "description": "Microsoft Graph lets your app get authorized access to a user's Outlook mail data in a personal or organization account.", "support": "xsoar", - "currentVersion": "1.5.11", + "currentVersion": "1.5.12", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md new file mode 100644 index 000000000000..599e7c6d14d1 --- /dev/null +++ b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Graph Search + +Fixed an issue where instances using version 1.0.4 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphSearch/pack_metadata.json b/Packs/MicrosoftGraphSearch/pack_metadata.json index fcd89b1b6cd2..1454134c5f1d 100644 --- a/Packs/MicrosoftGraphSearch/pack_metadata.json +++ b/Packs/MicrosoftGraphSearch/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Search", "description": "Use the Microsoft Search API in Microsoft Graph to search content stored in OneDrive or SharePoint: files, folders, lists, list items, or sites.", "support": "community", - "currentVersion": "1.0.4", + "currentVersion": "1.0.5", "author": "randomizerxd", "url": "", "email": "", diff --git a/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md new file mode 100644 index 000000000000..560b11488e10 --- /dev/null +++ b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Graph Security + +Fixed an issue where instances using version 2.1.28 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphSecurity/pack_metadata.json b/Packs/MicrosoftGraphSecurity/pack_metadata.json index 2131f11fb739..c23576d5bc9b 100644 --- a/Packs/MicrosoftGraphSecurity/pack_metadata.json +++ b/Packs/MicrosoftGraphSecurity/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph Security", "description": "Unified gateway to security insights - all from a unified Microsoft Graph\n Security API.", "support": "xsoar", - "currentVersion": "2.2.0", + "currentVersion": "2.2.1", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md new file mode 100644 index 000000000000..1727424cc40d --- /dev/null +++ b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### O365 Teams (Using Graph API) + +Fixed an issue where instances using version 1.0.11 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphTeams/pack_metadata.json b/Packs/MicrosoftGraphTeams/pack_metadata.json index 01935213e636..e87509f517c9 100644 --- a/Packs/MicrosoftGraphTeams/pack_metadata.json +++ b/Packs/MicrosoftGraphTeams/pack_metadata.json @@ -2,7 +2,7 @@ "name": "MicrosoftGraphTeams", "description": "O365 Teams (Using Graph API) gives you authorized access to a user’s Teams enabling you to facilitate communication through teams as that user, or read conversations and/or messages of that user.", "support": "community", - "currentVersion": "1.0.11", + "currentVersion": "1.0.12", "author": "Joachim Bockland", "url": "", "email": "", diff --git a/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md new file mode 100644 index 000000000000..eae1a64f7448 --- /dev/null +++ b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Azure Active Directory Users + +Fixed an issue where instances using version 1.5.22 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphUser/pack_metadata.json b/Packs/MicrosoftGraphUser/pack_metadata.json index d0c6c0aca42a..003d15064ca1 100644 --- a/Packs/MicrosoftGraphUser/pack_metadata.json +++ b/Packs/MicrosoftGraphUser/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Graph User", "description": "Use the Microsoft Graph integration to connect to and interact with user objects on Microsoft Platforms.", "support": "xsoar", - "currentVersion": "1.5.22", + "currentVersion": "1.5.23", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md new file mode 100644 index 000000000000..635c90198c13 --- /dev/null +++ b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Management Activity API (O365 Azure Events) + +Fixed an issue where instances using version 1.3.26 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftManagementActivity/pack_metadata.json b/Packs/MicrosoftManagementActivity/pack_metadata.json index ae807931b901..d49c0eb85d00 100644 --- a/Packs/MicrosoftManagementActivity/pack_metadata.json +++ b/Packs/MicrosoftManagementActivity/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Management Activity API (O365/Azure Events)", "description": "An integration for Microsoft's management activity API, which enables you to fetch content records and manage your subscriptions.", "support": "xsoar", - "currentVersion": "1.3.26", + "currentVersion": "1.3.27", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", diff --git a/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md b/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md new file mode 100644 index 000000000000..0e0dc10e0545 --- /dev/null +++ b/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md @@ -0,0 +1,6 @@ + +#### Integrations + +##### Microsoft Teams Management + +Fixed an issue where instances using version 1.4.29 or highr of the pack could have authentication issues. diff --git a/Packs/MicrosoftTeams/pack_metadata.json b/Packs/MicrosoftTeams/pack_metadata.json index 2ba1192a49c7..753f175792d1 100644 --- a/Packs/MicrosoftTeams/pack_metadata.json +++ b/Packs/MicrosoftTeams/pack_metadata.json @@ -2,7 +2,7 @@ "name": "Microsoft Teams", "description": "Send messages and notifications to your team members.", "support": "xsoar", - "currentVersion": "1.4.29", + "currentVersion": "1.4.30", "author": "Cortex XSOAR", "url": "https://www.paloaltonetworks.com/cortex", "email": "", From 9c1eaff43b614326f657ca26400a37ffd350a8c2 Mon Sep 17 00:00:00 2001 From: Menachem Weinfeld Date: Wed, 23 Aug 2023 17:21:57 +0300 Subject: [PATCH 3/3] Update RN --- Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md | 2 +- Packs/AzureCompute/ReleaseNotes/1_2_14.md | 2 +- Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md | 2 +- Packs/AzureDevOps/ReleaseNotes/1_3_1.md | 2 +- Packs/AzureFirewall/ReleaseNotes/1_1_26.md | 2 +- Packs/AzureKeyVault/ReleaseNotes/1_1_27.md | 2 +- Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md | 2 +- Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md | 2 +- Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md | 2 +- Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md | 2 +- Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md | 2 +- Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md | 4 ++-- Packs/AzureSentinel/ReleaseNotes/1_5_19.md | 2 +- Packs/AzureStorage/ReleaseNotes/1_2_19.md | 2 +- Packs/AzureWAF/ReleaseNotes/1_1_17.md | 2 +- Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md | 2 +- Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md | 4 ++-- .../ReleaseNotes/1_16_5.md | 4 ++-- Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md | 2 +- Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md | 2 +- Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md | 2 +- Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md | 2 +- Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md | 2 +- Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md | 2 +- Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md | 2 +- Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md | 2 +- Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md | 4 ++-- Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md | 2 +- Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md | 2 +- Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md | 2 +- Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md | 2 +- Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md | 2 +- Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md | 2 +- 33 files changed, 37 insertions(+), 37 deletions(-) diff --git a/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md index 80432c422907..750d75cee033 100644 --- a/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md +++ b/Packs/AzureActiveDirectory/ReleaseNotes/1_3_17.md @@ -3,4 +3,4 @@ ##### Azure Active Directory Identity Protection (Deprecated) -Fixed an issue where instances using version 1.3.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.3.16 of the pack could have authentication issues. diff --git a/Packs/AzureCompute/ReleaseNotes/1_2_14.md b/Packs/AzureCompute/ReleaseNotes/1_2_14.md index a0e5cb5f3d01..c439083a1755 100644 --- a/Packs/AzureCompute/ReleaseNotes/1_2_14.md +++ b/Packs/AzureCompute/ReleaseNotes/1_2_14.md @@ -3,4 +3,4 @@ ##### Azure Compute v2 -Fixed an issue where instances using version 1.2.13 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.13 of the pack could have authentication issues. diff --git a/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md b/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md index d4e223a0c8ea..cc5e5b5221f0 100644 --- a/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md +++ b/Packs/AzureDataExplorer/ReleaseNotes/1_2_26.md @@ -3,4 +3,4 @@ ##### Azure Data Explorer -Fixed an issue where instances using version 1.2.25 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.25 of the pack could have authentication issues. diff --git a/Packs/AzureDevOps/ReleaseNotes/1_3_1.md b/Packs/AzureDevOps/ReleaseNotes/1_3_1.md index 3d05446ea328..756312cf54bc 100644 --- a/Packs/AzureDevOps/ReleaseNotes/1_3_1.md +++ b/Packs/AzureDevOps/ReleaseNotes/1_3_1.md @@ -3,4 +3,4 @@ ##### AzureDevOps -Fixed an issue where instances using version 1.2.17 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.17 of the pack could have authentication issues. diff --git a/Packs/AzureFirewall/ReleaseNotes/1_1_26.md b/Packs/AzureFirewall/ReleaseNotes/1_1_26.md index 842bacfcea44..b64862847127 100644 --- a/Packs/AzureFirewall/ReleaseNotes/1_1_26.md +++ b/Packs/AzureFirewall/ReleaseNotes/1_1_26.md @@ -3,4 +3,4 @@ ##### Azure Firewall -Fixed an issue where instances using version 1.1.25 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.25 of the pack could have authentication issues. diff --git a/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md b/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md index 27686ad8f123..718fce83aa17 100644 --- a/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md +++ b/Packs/AzureKeyVault/ReleaseNotes/1_1_27.md @@ -3,4 +3,4 @@ ##### Azure Key Vault -Fixed an issue where instances using version 1.1.26 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.26 of the pack could have authentication issues. diff --git a/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md index c21ab3d8318b..b1e716545c3e 100644 --- a/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md +++ b/Packs/AzureKubernetesServices/ReleaseNotes/1_1_19.md @@ -3,4 +3,4 @@ ##### Azure Kubernetes Services -Fixed an issue where instances using version 1.1.18 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.18 of the pack could have authentication issues. diff --git a/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md index 696bbac528fb..b7531c5e3a37 100644 --- a/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md +++ b/Packs/AzureLogAnalytics/ReleaseNotes/1_1_17.md @@ -3,4 +3,4 @@ ##### Azure Log Analytics -Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.16 of the pack could have authentication issues. diff --git a/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md index 6461c2cb9054..176c7f1393fd 100644 --- a/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md +++ b/Packs/AzureNetworkSecurityGroups/ReleaseNotes/1_2_19.md @@ -3,4 +3,4 @@ ##### Azure Network Security Groups -Fixed an issue where instances using version 1.2.18 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.18 of the pack could have authentication issues. diff --git a/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md index 791f8d531cf6..6a50a1cc753f 100644 --- a/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md +++ b/Packs/AzureRiskyUsers/ReleaseNotes/1_1_17.md @@ -3,4 +3,4 @@ ##### Azure Risky Users -Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.16 of the pack could have authentication issues. diff --git a/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md b/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md index 104b013e2bc5..085aa8cbf945 100644 --- a/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md +++ b/Packs/AzureSQLManagement/ReleaseNotes/1_1_28.md @@ -3,4 +3,4 @@ ##### Azure SQL Management -Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.27 of the pack could have authentication issues. diff --git a/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md index 7bde77497ef4..5273dbf19b16 100644 --- a/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md +++ b/Packs/AzureSecurityCenter/ReleaseNotes/2_0_9.md @@ -3,8 +3,8 @@ ##### Microsoft Defender for Cloud Event Collector -Fixed an issue where instances using version 2.0.8 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 2.0.8 of the pack could have authentication issues. ##### Microsoft Defender for Cloud -Fixed an issue where instances using version 2.0.8 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 2.0.8 of the pack could have authentication issues. diff --git a/Packs/AzureSentinel/ReleaseNotes/1_5_19.md b/Packs/AzureSentinel/ReleaseNotes/1_5_19.md index f064099fdb12..2439124d45fa 100644 --- a/Packs/AzureSentinel/ReleaseNotes/1_5_19.md +++ b/Packs/AzureSentinel/ReleaseNotes/1_5_19.md @@ -3,4 +3,4 @@ ##### Microsoft Sentinel -Fixed an issue where instances using version 1.5.18 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.5.18 of the pack could have authentication issues. diff --git a/Packs/AzureStorage/ReleaseNotes/1_2_19.md b/Packs/AzureStorage/ReleaseNotes/1_2_19.md index d3379dea41ff..bf9029e7a9de 100644 --- a/Packs/AzureStorage/ReleaseNotes/1_2_19.md +++ b/Packs/AzureStorage/ReleaseNotes/1_2_19.md @@ -3,4 +3,4 @@ ##### Azure Storage Management -Fixed an issue where instances using version 1.2.18 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.18 of the pack could have authentication issues. diff --git a/Packs/AzureWAF/ReleaseNotes/1_1_17.md b/Packs/AzureWAF/ReleaseNotes/1_1_17.md index 987145f9e843..39b5d0bfbf85 100644 --- a/Packs/AzureWAF/ReleaseNotes/1_1_17.md +++ b/Packs/AzureWAF/ReleaseNotes/1_1_17.md @@ -3,4 +3,4 @@ ##### Azure Web Application Firewall -Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.16 of the pack could have authentication issues. diff --git a/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md b/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md index 079204616b4c..5531f39ce6e8 100644 --- a/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md +++ b/Packs/Microsoft365Defender/ReleaseNotes/4_5_13.md @@ -3,4 +3,4 @@ ##### Microsoft 365 Defender -Fixed an issue where instances using version 4.5.12 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 4.5.12 of the pack could have authentication issues. diff --git a/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md index bb6f49fa4671..8edd44ae3594 100644 --- a/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md +++ b/Packs/MicrosoftCloudAppSecurity/ReleaseNotes/2_1_39.md @@ -3,8 +3,8 @@ ##### Microsoft Defender for Cloud Apps Event Collector -Fixed an issue where instances using version 2.1.38 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 2.1.38 of the pack could have authentication issues. ##### Microsoft Defender for Cloud Apps -Fixed an issue where instances using version 2.1.38 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 2.1.38 of the pack could have authentication issues. diff --git a/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md index d26c45b3aecf..ecc5be832763 100644 --- a/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md +++ b/Packs/MicrosoftDefenderAdvancedThreatProtection/ReleaseNotes/1_16_5.md @@ -3,8 +3,8 @@ ##### Microsoft Defender for Endpoint Event Collector -Fixed an issue where instances using version 1.16.3 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.16.3 of the pack could have authentication issues. ##### Microsoft Defender for Endpoint -Fixed an issue where instances using version 1.16.3 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.16.3 of the pack could have authentication issues. diff --git a/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md index 7a94a916d78c..9ac4d5da7fda 100644 --- a/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md +++ b/Packs/MicrosoftExchangeOnline/ReleaseNotes/1_2_19.md @@ -3,4 +3,4 @@ ##### EWS O365 -Fixed an issue where instances using version 1.2.17 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.17 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md index 335ca44ab5a4..4d92f78e8e1e 100644 --- a/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md +++ b/Packs/MicrosoftGraphAPI/ReleaseNotes/1_1_28.md @@ -3,4 +3,4 @@ ##### Microsoft Graph API -Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.27 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md index 08812bd8efce..ee5d54024936 100644 --- a/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md +++ b/Packs/MicrosoftGraphApplications/ReleaseNotes/1_2_25.md @@ -3,4 +3,4 @@ ##### Azure Active Directory Applications -Fixed an issue where instances using version 1.2.24 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.24 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md index d49e30e30d83..5bb05735346e 100644 --- a/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md +++ b/Packs/MicrosoftGraphCalendar/ReleaseNotes/1_1_16.md @@ -3,4 +3,4 @@ ##### O365 Outlook Calendar -Fixed an issue where instances using version 1.1.15 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.15 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md index 450d9c2f27f8..1e0939f83bbe 100644 --- a/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md +++ b/Packs/MicrosoftGraphDeviceManagement/ReleaseNotes/1_1_17.md @@ -3,4 +3,4 @@ ##### Microsoft Endpoint Manager (Intune) -Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.16 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md index cf062c01d605..49209cc41fd8 100644 --- a/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md +++ b/Packs/MicrosoftGraphFiles/ReleaseNotes/1_1_17.md @@ -3,4 +3,4 @@ ##### O365 File Management (Onedrive/Sharepoint/Teams) -Fixed an issue where instances using version 1.1.16 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.16 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md index 109158af069e..37053f2e866c 100644 --- a/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md +++ b/Packs/MicrosoftGraphGroups/ReleaseNotes/1_1_28.md @@ -3,4 +3,4 @@ ##### Azure Active Directory Groups -Fixed an issue where instances using version 1.1.27 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.1.27 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md index 96ca2c44da26..d004d96ab127 100644 --- a/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md +++ b/Packs/MicrosoftGraphIdentityandAccess/ReleaseNotes/1_2_30.md @@ -3,4 +3,4 @@ ##### Azure Active Directory Identity And Access -Fixed an issue where instances using version 1.2.29 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.2.29 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md index cae10f50dab7..a1d1828c24db 100644 --- a/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md +++ b/Packs/MicrosoftGraphMail/ReleaseNotes/1_5_12.md @@ -3,8 +3,8 @@ ##### O365 Outlook Mail (Using Graph API) -Fixed an issue where instances using version 1.5.11 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.5.11 of the pack could have authentication issues. ##### Microsoft Graph Mail Single User -Fixed an issue where instances using version 1.5.11 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.5.11 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md index 599e7c6d14d1..291b14b95092 100644 --- a/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md +++ b/Packs/MicrosoftGraphSearch/ReleaseNotes/1_0_5.md @@ -3,4 +3,4 @@ ##### Microsoft Graph Search -Fixed an issue where instances using version 1.0.4 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.0.4 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md index 560b11488e10..0d4e96f78ff1 100644 --- a/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md +++ b/Packs/MicrosoftGraphSecurity/ReleaseNotes/2_2_1.md @@ -3,4 +3,4 @@ ##### Microsoft Graph Security -Fixed an issue where instances using version 2.1.28 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 2.1.28 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md index 1727424cc40d..4d41a4cad5cc 100644 --- a/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md +++ b/Packs/MicrosoftGraphTeams/ReleaseNotes/1_0_12.md @@ -3,4 +3,4 @@ ##### O365 Teams (Using Graph API) -Fixed an issue where instances using version 1.0.11 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.0.11 of the pack could have authentication issues. diff --git a/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md index eae1a64f7448..d4ee24ea9630 100644 --- a/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md +++ b/Packs/MicrosoftGraphUser/ReleaseNotes/1_5_23.md @@ -3,4 +3,4 @@ ##### Azure Active Directory Users -Fixed an issue where instances using version 1.5.22 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.5.22 of the pack could have authentication issues. diff --git a/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md index 635c90198c13..ad2730d36587 100644 --- a/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md +++ b/Packs/MicrosoftManagementActivity/ReleaseNotes/1_3_27.md @@ -3,4 +3,4 @@ ##### Microsoft Management Activity API (O365 Azure Events) -Fixed an issue where instances using version 1.3.26 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.3.26 of the pack could have authentication issues. diff --git a/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md b/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md index 0e0dc10e0545..252182de744d 100644 --- a/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md +++ b/Packs/MicrosoftTeams/ReleaseNotes/1_4_30.md @@ -3,4 +3,4 @@ ##### Microsoft Teams Management -Fixed an issue where instances using version 1.4.29 or highr of the pack could have authentication issues. +Fixed an issue where instances using version 1.4.29 of the pack could have authentication issues.