Skip to content

Commit 1455ec5

Browse files
author
Andrew Omondi
committed
Fix test and update changelog
1 parent d5138a3 commit 1455ec5

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project does adheres to [Semantic Versioning](https://semver.org/spec/v
77

88
## [Unreleased]
99

10+
## [5.4.0] - 2023-03-28
11+
12+
### Added
13+
14+
- Updates kiota abstraction library dependencies to reduce code size in generation.
15+
- Metadata fixes for missing expand clauses for contact endpoints
16+
- Latest metadata updates from 28st March 2023
1017

1118
## [5.3.0] - 2023-03-21
1219

src/Microsoft.Graph/Extensions/DriveItemRequestBuilderExtensions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ public static CustomDriveItemItemRequestBuilder ItemWithPath(this Microsoft.Grap
8282

8383
private static IRequestAdapter GetRequestAdapter(this object obj) {
8484
var field = obj.GetType()
85+
.BaseType
8586
.GetFields(BindingFlags.NonPublic | BindingFlags.Instance)
8687
.FirstOrDefault( field => field.FieldType.Equals(typeof(IRequestAdapter)));
8788
return (IRequestAdapter)field?.GetValue(obj);
@@ -164,8 +165,6 @@ public CustomDriveItemItemRequestBuilder(string rawUrl, IRequestAdapter requestA
164165
{ get =>
165166
new PreviewRequestBuilder(this._rawUrl+"/microsoft.graph.preview", RequestAdapter);
166167
}
167-
/// <summary>The request adapter to use to execute the requests.</summary>
168-
private IRequestAdapter RequestAdapter { get; set; }
169168
/// <summary>Provides operations to call the restore method.</summary>
170169
public new RestoreRequestBuilder Restore
171170
{ get =>

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DelaySign>false</DelaySign>
2222
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
2323
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
24-
<VersionPrefix>5.3.0</VersionPrefix>
24+
<VersionPrefix>5.4.0</VersionPrefix>
2525
<!-- VersionPrefix minor version should not be set when the change comes from the generator. It will be updated automatically. -->
2626
<!-- VersionPrefix minor version must be manually set when making manual changes to code. -->
2727
<!-- VersionPrefix major and patch versions must be manually set. -->

0 commit comments

Comments
 (0)