From 135e1307fb51068e11a01dc052eb2e11f256708d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 12:03:52 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump the kiota group with 3 updates Bumps the kiota group with 3 updates: [microsoft-kiota-abstractions](https://github.com/microsoft/kiota-python), [microsoft-kiota-authentication-azure](https://github.com/microsoft/kiota-python) and [microsoft-kiota-http](https://github.com/microsoft/kiota-python). Updates `microsoft-kiota-abstractions` from 1.9.0 to 1.9.1 - [Release notes](https://github.com/microsoft/kiota-python/releases) - [Changelog](https://github.com/microsoft/kiota-python/blob/main/release-please-config.json) - [Commits](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-abstractions-v1.9.0...microsoft-kiota-abstractions-v1.9.1) Updates `microsoft-kiota-authentication-azure` from 1.9.0 to 1.9.1 - [Release notes](https://github.com/microsoft/kiota-python/releases) - [Changelog](https://github.com/microsoft/kiota-python/blob/main/release-please-config.json) - [Commits](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-authentication-azure-v1.9.0...microsoft-kiota-authentication-azure-v1.9.1) Updates `microsoft-kiota-http` from 1.9.0 to 1.9.1 - [Release notes](https://github.com/microsoft/kiota-python/releases) - [Changelog](https://github.com/microsoft/kiota-python/blob/main/release-please-config.json) - [Commits](https://github.com/microsoft/kiota-python/compare/microsoft-kiota-http-v1.9.0...microsoft-kiota-http-v1.9.1) --- updated-dependencies: - dependency-name: microsoft-kiota-abstractions dependency-type: direct:development update-type: version-update:semver-patch dependency-group: kiota - dependency-name: microsoft-kiota-authentication-azure dependency-type: direct:development update-type: version-update:semver-patch dependency-group: kiota - dependency-name: microsoft-kiota-http dependency-type: direct:development update-type: version-update:semver-patch dependency-group: kiota ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 131609a1..4a2e8dd4 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -145,11 +145,11 @@ httpx[http2]==0.28.1 hyperframe==6.1.0 ; python_full_version >= '3.6.1' -microsoft-kiota-abstractions==1.9.0 +microsoft-kiota-abstractions==1.9.1 -microsoft-kiota-authentication-azure==1.9.0 +microsoft-kiota-authentication-azure==1.9.1 -microsoft-kiota-http==1.9.0 +microsoft-kiota-http==1.9.1 multidict==6.1.0 ; python_version >= '3.7' From 9e1d29b2ce3ff4c7e536e5929716d9a529cf0cdc Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 30 Jan 2025 07:25:30 -0500 Subject: [PATCH 2/2] chore: fixes unit test after changing the base URL loading Signed-off-by: Vincent Biret --- tests/test_base_graph_request_adapter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_base_graph_request_adapter.py b/tests/test_base_graph_request_adapter.py index 59e7c891..acb8922d 100644 --- a/tests/test_base_graph_request_adapter.py +++ b/tests/test_base_graph_request_adapter.py @@ -16,7 +16,7 @@ def test_create_graph_request_adapter(mock_auth_provider): request_adapter._serialization_writer_factory, SerializationWriterFactoryRegistry ) assert isinstance(request_adapter._http_client, httpx.AsyncClient) - assert request_adapter.base_url == '' + assert request_adapter.base_url == 'https://graph.microsoft.com/v1.0/' def test_create_request_adapter_no_auth_provider():