Skip to content

Commit f200305

Browse files
authored
Update UPGRADING.md
1 parent abadbe4 commit f200305

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

UPGRADING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The `msgraph-sdk` provides auto-generated model classes that correspond to objec
2727
This package (`msgraph-sdk`) will only contain models that match the [Microsoft Graph v1 API metadata](https://graph.microsoft.com/v1.0/$metadata). If you are interested in the Beta API, please see the [Microsoft Graph Beta Python SDK](https://github.com/microsoftgraph/msgraph-sdk-beta-python).
2828

2929
## Fluent Request Builder Pattern
30-
`msgraph-sdk` provides a fluent interface that takes advantage of method chaining and IDE autocomplete when making requests to the Graph. This is a shift from `msgraph-core` where raw URLs would be passed instead:
30+
`msgraph-sdk` provides a fluent interface that takes advantage of method chaining and IDE autocomplete when making requests to Microsoft Graph. This is a shift from `msgraph-core` where raw URLs would be passed instead:
3131

3232
```py
3333
# msgraph-core
@@ -40,13 +40,13 @@ resp = asyncio.run(req)
4040

4141
Hopefully this makes it more intuitive to work with the SDK and reduces time checking reference docs. Your feedback would be appreciated on your preferred experience or whether we should support both scenarios.
4242

43-
# Breaking Changes
43+
# Breaking changes
4444

4545
The following breaking changes were introduced in `msgraph-sdk`:
4646

47-
- [Changes to Authentication Mechanism](#changes-to-authentication)
48-
- [Changes to the Graph client construction and configuration experience](#changes-to-graph-client-instantiation-and-configuration).
49-
- [Changes to Graph request functionality](#changes-to-graph-request-functionality).
47+
- [Changes to Authentication mechanism](#changes-to-authentication)
48+
- [Changes to the Microsoft Graph client construction and configuration experience](#changes-to-graph-client-instantiation-and-configuration).
49+
- [Changes to Microsoft Graph request functionality](#changes-to-graph-request-functionality).
5050
- [Dependency changes](#dependency-changes).
5151

5252
## Changes to authentication
@@ -73,7 +73,7 @@ auth_provider = AzureIdentityAuthenticationProvider(credential)
7373

7474
See more [code samples](README.md#create-an-authenticationprovider-object) on how to initialise the Authentication Provider.
7575

76-
## Changes to Graph client instantiation and configuration
76+
## Changes to Microsoft Graph client instantiation and configuration
7777

7878
`msgraph-sdk` introduces a new format for creating and configuring clients based on our [Kiota](https://github.com/microsoft/kiota) client generator. It involves creating an instance of a `GraphRequestAdapter` that will take care of all generic processing of HTTP requests, and passing the instance to the `GraphServiceClient` which holds strongly typed models and request builders to simplify the process of creating requests and consuming responses.
7979

@@ -127,7 +127,7 @@ for msg in messages.value:
127127

128128
See [the examples](docs/Examples.md) on how to pass headers in your requests.
129129

130-
## Exception Handling
130+
## Exception handling
131131

132132
Any `4xx` or `5xx` responses from the Graph API will result in an `ApiException` being thrown.
133133

0 commit comments

Comments
 (0)