diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 127d58b8955..0ba1ceaaf73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.24.0" + ".": "2.25.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fb2046fc8c4..17d8a5ed3c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.25.0](https://github.com/microsoftgraph/msgraph-beta-sdk-php/compare/v2.24.0...v2.25.0) (2025-01-08) + + +### Features + +* Bump Graph core dependency version ([6839ae1](https://github.com/microsoftgraph/msgraph-beta-sdk-php/commit/6839ae147b474889c4c81864c2ccfee6ac9a6af0)) +* Bump Graph core dependency version ([a36bd74](https://github.com/microsoftgraph/msgraph-beta-sdk-php/commit/a36bd742416de81bc1f60e1988ca81a792eaf876)) +* **generation:** update request builders and models ([a788d1f](https://github.com/microsoftgraph/msgraph-beta-sdk-php/commit/a788d1fe24015709bc6f33638b2469580fafe553)) + + +### Bug Fixes + +* Use provided national cloud as base URL and map it to the correct authentication endpoint ([7558d60](https://github.com/microsoftgraph/msgraph-beta-sdk-php/commit/7558d60a40d984b3d11327e3862831f2aa152378)) +* Use provided national cloud as base URL and map it to the correct authentication endpoint ([3be5da8](https://github.com/microsoftgraph/msgraph-beta-sdk-php/commit/3be5da88288735b69a8cae06cdeb1f6a397349e0)) + ## [2.24.0](https://github.com/microsoftgraph/msgraph-beta-sdk-php/compare/v2.23.0...v2.24.0) (2025-01-02) diff --git a/README.md b/README.md index 57cb813c178..b28cf385f06 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ You can install the Beta PHP SDK with Composer by editing your `composer.json` f { "require": { // x-release-please-start-version - "microsoft/microsoft-graph-beta": "^2.24.0" + "microsoft/microsoft-graph-beta": "^2.25.0" // x-release-please-end } } diff --git a/src/GraphConstants.php b/src/GraphConstants.php index 88b25cfec34..9df9577b919 100644 --- a/src/GraphConstants.php +++ b/src/GraphConstants.php @@ -21,6 +21,6 @@ final class GraphConstants const API_VERSION = "beta"; // x-release-please-start-version - const SDK_VERSION = "2.24.0"; + const SDK_VERSION = "2.25.0"; // x-release-please-end }