Skip to content

Commit b25f4ac

Browse files
committed
Bump kiota http to version 0.2.0
1 parent 159efdc commit b25f4ac

File tree

3 files changed

+34
-38
lines changed

3 files changed

+34
-38
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "pypi"
55

66
[packages] # Packages required to run the application
77
microsoft-kiota-abstractions = "==0.1.0"
8-
microsoft-kiota-http = "==0.1.2"
8+
microsoft-kiota-http = "==0.2.0"
99
microsoft-kiota-authentication-azure = "==0.1.0"
1010
httpx = {version = "==0.23.0", extras = ["http2"]}
1111

Pipfile.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/unit/test_graph_client_factory.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
# ------------------------------------
55
import httpx
66
import pytest
7-
from kiota_http.middleware import (
8-
AsyncKiotaTransport,
9-
MiddlewarePipeline,
10-
ParametersNameDecodingHandler,
11-
)
7+
from kiota_http.middleware import AsyncKiotaTransport, MiddlewarePipeline, RedirectHandler
128

139
from msgraph.core import APIVersion, GraphClientFactory, NationalClouds
1410
from msgraph.core.middleware.telemetry import GraphTelemetryHandler
@@ -22,7 +18,7 @@ def test_create_with_default_middleware():
2218
assert isinstance(client._transport, AsyncKiotaTransport)
2319
pipeline = client._transport.pipeline
2420
assert isinstance(pipeline, MiddlewarePipeline)
25-
assert isinstance(pipeline._first_middleware, ParametersNameDecodingHandler)
21+
assert isinstance(pipeline._first_middleware, RedirectHandler)
2622
assert isinstance(pipeline._current_middleware, GraphTelemetryHandler)
2723

2824

0 commit comments

Comments
 (0)