From 68c24949ba29097e53ae17f8cf5f121de0e48134 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Wed, 29 Nov 2023 19:40:06 -0500 Subject: [PATCH 1/6] - removes problematic file --- tests/GetPhpInfo.php | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 tests/GetPhpInfo.php diff --git a/tests/GetPhpInfo.php b/tests/GetPhpInfo.php deleted file mode 100644 index f35a8efd679..00000000000 --- a/tests/GetPhpInfo.php +++ /dev/null @@ -1,3 +0,0 @@ - Date: Wed, 29 Nov 2023 19:40:18 -0500 Subject: [PATCH 2/6] - bumps patch version --- src/Core/GraphConstants.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/GraphConstants.php b/src/Core/GraphConstants.php index c728a9cf34f..453fccfaa44 100644 --- a/src/Core/GraphConstants.php +++ b/src/Core/GraphConstants.php @@ -23,7 +23,7 @@ final class GraphConstants const REST_ENDPOINT = "https://graph.microsoft.com/"; // Define HTTP request constants - const SDK_VERSION = "1.109.0"; + const SDK_VERSION = "1.109.1"; // Define error constants const MAX_PAGE_SIZE = 999; From c00afe699186e9f6735905d7d01487350eac3762 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Fri, 1 Dec 2023 00:11:19 +0300 Subject: [PATCH 3/6] Exclude non-prod files from 1.x SDK --- .gitattributes | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitattributes b/.gitattributes index 80b1920c711..58612b6959f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,3 +5,10 @@ /vendor export-ignore .gitattributes export-ignore .gitignore export-ignore +/.github export-ignore +/.vscode export-ignore +/scripts export-ignore +/tests export-ignore +phpdoc.dist.xml export-ignore +phpstan.neon export-ignore +phpunit.xml export-ignore From a2b7c246ca19dcee35727f4081a3346df8a64758 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Fri, 1 Dec 2023 09:54:08 +0300 Subject: [PATCH 4/6] Bump patch version --- README.md | 2 +- src/Core/GraphConstants.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54ea218dd9c..ea7f35ecf43 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof ``` { "require": { - "microsoft/microsoft-graph": "^1.109.0" + "microsoft/microsoft-graph": "^1.109.2" } } ``` diff --git a/src/Core/GraphConstants.php b/src/Core/GraphConstants.php index 453fccfaa44..1353c3dfb17 100644 --- a/src/Core/GraphConstants.php +++ b/src/Core/GraphConstants.php @@ -23,7 +23,7 @@ final class GraphConstants const REST_ENDPOINT = "https://graph.microsoft.com/"; // Define HTTP request constants - const SDK_VERSION = "1.109.1"; + const SDK_VERSION = "1.109.2"; // Define error constants const MAX_PAGE_SIZE = 999; From f0334084d11a6ced9a82c1dd115055591d5a4904 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Thu, 11 Jan 2024 15:30:57 +0300 Subject: [PATCH 5/6] Bump min guzzle versions to secure versions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1c80750ac97..67430817e6e 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ ], "require": { "php": "^8.0 || ^7.3", - "guzzlehttp/guzzle": "^6.0 || ^7.0", + "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", "ext-json": "*", "psr/http-message": "^1.0 || ^2.0" }, From 2ad937104d702fd29b2919783ab4c6500cedc13b Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Thu, 11 Jan 2024 15:32:51 +0300 Subject: [PATCH 6/6] Bump version in constants and README --- README.md | 2 +- src/Core/GraphConstants.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ea7f35ecf43..2a26e3f9ac9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof ``` { "require": { - "microsoft/microsoft-graph": "^1.109.2" + "microsoft/microsoft-graph": "^1.110.0" } } ``` diff --git a/src/Core/GraphConstants.php b/src/Core/GraphConstants.php index 1353c3dfb17..d2612da8416 100644 --- a/src/Core/GraphConstants.php +++ b/src/Core/GraphConstants.php @@ -23,7 +23,7 @@ final class GraphConstants const REST_ENDPOINT = "https://graph.microsoft.com/"; // Define HTTP request constants - const SDK_VERSION = "1.109.2"; + const SDK_VERSION = "1.110.0"; // Define error constants const MAX_PAGE_SIZE = 999;