Skip to content

Commit 4c56467

Browse files
authored
Merge pull request #536 from microsoftgraph/dev
Sync master with dev
2 parents a3989fe + 4d3d126 commit 4c56467

File tree

37 files changed

+41
-42
lines changed

37 files changed

+41
-42
lines changed

.azure-pipelines/generate-modules-template.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
- task: PowerShell@2
4747
displayName: 'Generate Profiles'
4848
continueOnError: false
49+
enabled: false
4950
inputs:
5051
targetType: 'filePath'
5152
pwsh: true

config/ModuleMetadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
],
2323
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
2424
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
25-
"version": "1.3.0"
25+
"version": "1.3.1"
2626
}

src/Applications/Applications/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ directive:
8181
### Versioning
8282
8383
``` yaml
84-
module-version: 1.3.0
84+
module-version: 1.3.1
8585
release-notes: See https://aka.ms/GraphPowerShell-Release.
8686
```

src/Authentication/Authentication/Helpers/ContentHelper.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ internal static RestReturnType CheckReturnType(this HttpResponseMessage response
2828

2929
var rt = RestReturnType.Detect;
3030
var contentType = response.GetContentType();
31-
if (string.IsNullOrEmpty(contentType))
32-
rt = RestReturnType.Detect;
33-
else if (IsJson(contentType))
31+
if (string.IsNullOrEmpty(contentType) || IsJson(contentType))
3432
rt = RestReturnType.Json;
3533
else if (IsXml(contentType))
3634
rt = RestReturnType.Xml;

src/Authentication/Authentication/Microsoft.Graph.Authentication.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>1.3.0</Version>
3+
<Version>1.3.1</Version>
44
<LangVersion>7.1</LangVersion>
55
<TargetFramework>netstandard2.0</TargetFramework>
66
<OutputType>Library</OutputType>
@@ -21,9 +21,9 @@
2121
<PreLoadAssemblies Include="$(RepoTools)Lib\System.Security.Cryptography.ProtectedData.dll" />
2222
</ItemGroup>
2323
<ItemGroup>
24-
<PackageReference Include="Microsoft.Graph.Auth" Version="1.0.0-preview.6" />
25-
<PackageReference Include="Microsoft.Graph.Core" Version="1.23.0" />
26-
<PackageReference Include="Microsoft.Identity.Client" Version="4.23.0" />
24+
<PackageReference Include="Microsoft.Graph.Auth" Version="1.0.0-preview.5" />
25+
<PackageReference Include="Microsoft.Graph.Core" Version="1.20.1" />
26+
<PackageReference Include="Microsoft.Identity.Client" Version="4.14.0" />
2727
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="5.6.0" />
2828
<PackageReference Include="Microsoft.IdentityModel.Logging" Version="5.6.0" />
2929
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.6.0" />

src/Authentication/Authentication/Microsoft.Graph.Authentication.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<metadata>
4-
<version>1.3.0</version>
4+
<version>1.3.1</version>
55
<id>Microsoft.Graph.Authentication</id>
66
<description>Microsoft Graph PowerShell authentication module</description>
77
<authors>Microsoft</authors>

src/Authentication/Authentication/Microsoft.Graph.Authentication.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft
55
#
6-
# Generated on: 1/27/2021
6+
# Generated on: 1/29/2021
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = './Microsoft.Graph.Authentication.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.3.0'
15+
ModuleVersion = '1.3.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'

src/Bookings/Bookings/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ subject-prefix: ''
3535
### Versioning
3636
3737
``` yaml
38-
module-version: 1.3.0
38+
module-version: 1.3.1
3939
release-notes: See https://aka.ms/GraphPowerShell-Release.
4040
```

src/Calendar/Calendar/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ directive:
5252
### Versioning
5353

5454
``` yaml
55-
module-version: 1.3.0
55+
module-version: 1.3.1
5656
release-notes: See https://aka.ms/GraphPowerShell-Release.
5757
```

src/ChangeNotifications/ChangeNotifications/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ subject-prefix: ''
3434
### Versioning
3535
3636
``` yaml
37-
module-version: 1.3.0
37+
module-version: 1.3.1
3838
release-notes: See https://aka.ms/GraphPowerShell-Release.
3939
```

0 commit comments

Comments
 (0)