From d996d2854f786e2d1821af91fa1d2d848534a017 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 27 Jun 2025 15:51:51 +0000 Subject: [PATCH] chore(main): release 1.3.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/msgraph_core/_constants.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 35f8f67a..086b6949 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.4" + ".": "1.3.5" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 96588c85..4fbd2bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [1.3.5](https://github.com/microsoftgraph/msgraph-sdk-python-core/compare/v1.3.4...v1.3.5) (2025-06-27) + + +### Bug Fixes + +* BatchRequestItem now properly serializes the header and body fields ([7b5ad11](https://github.com/microsoftgraph/msgraph-sdk-python-core/commit/7b5ad1130f16438579e160aaea1d3aae000b96b6)) +* GraphClientFactory baseUrl setting logic ([5377bba](https://github.com/microsoftgraph/msgraph-sdk-python-core/commit/5377bbafdfbd68d9467bf12c1ccdb40e13c4e374)) + ## [1.3.4](https://github.com/microsoftgraph/msgraph-sdk-python-core/compare/v1.3.3...v1.3.4) (2025-06-02) diff --git a/pyproject.toml b/pyproject.toml index a2a1b4c1..ac1ece82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "msgraph-core" # The SDK version # x-release-please-start-version -version = "1.3.4" +version = "1.3.5" # x-release-please-end authors = [{name = "Microsoft", email = "graphtooling+python@microsoft.com"}] description = "Core component of the Microsoft Graph Python SDK" diff --git a/src/msgraph_core/_constants.py b/src/msgraph_core/_constants.py index fb7ad47d..177ea952 100644 --- a/src/msgraph_core/_constants.py +++ b/src/msgraph_core/_constants.py @@ -10,6 +10,6 @@ DEFAULT_CONNECTION_TIMEOUT = 30 # The SDK version # x-release-please-start-version -SDK_VERSION = '1.3.4' +SDK_VERSION = '1.3.5' # x-release-please-end MS_DEFAULT_SCOPE = 'https://graph.microsoft.com/.default'