File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212### Changed
1313
14+ ## [ 0.2.1] - 2021-11-19
15+
16+ ### Changed
17+
18+ - Made the client options public so they can be used by consumers when customizing middleware
19+
1420## [ 0.2.0] - 2021-11-17
1521
1622### Changed
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ var clientOptions = core.GraphClientOptions{
1313 GraphServiceLibraryVersion : "0.2.0" ,
1414}
1515
16+ // GetDefaultClientOptions returns the default client options used by the GraphRequestAdapterBase and the middleware.
17+ func GetDefaultClientOptions () core.GraphClientOptions {
18+ return clientOptions
19+ }
20+
1621// GraphRequestAdapter is the core service used by GraphServiceClient to make requests to Microsoft Graph.
1722type GraphRequestAdapter struct {
1823 core.GraphRequestAdapterBase
@@ -67,5 +72,3 @@ func NewGraphRequestAdapterWithParseNodeFactoryAndSerializationWriterFactoryAndH
6772
6873 return result , nil
6974}
70-
71-
You can’t perform that action at this time.
0 commit comments