Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit bc4d77c

Browse files
author
Isaiah Williams
authored
Release update (#208)
1 parent bd880b2 commit bc4d77c

8 files changed

Lines changed: 13 additions & 10 deletions

File tree

ChangeLog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@
2020

2121
# Change Log
2222

23-
## 2.0.1912.1
23+
## 2.0.1911.6
2424

25+
* Authentication
26+
* Updated how [Connect-PartnerCenter](https://docs.microsoft.com/powershell/module/partnercenter/Connect-PartnerCenter) writes warnings during an authentication attempt
27+
* Updated how [New-PartnerAccessToken](https://docs.microsoft.com/powershell/module/partnercenter/New-PartnerAccessToken) prompts for interaction
2528
* Azure
2629
* Added the [Set-PartnerAzureSubscription](https://docs.microsoft.com/powershell/module/partnercenter/Set-PartnerAzureSubscription) command to update the display name of an Azure subscription provided through an Azure Plan
2730

build/PartnerCenter.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>PartnerCenter</id>
5-
<version>2.0.1912.1</version>
5+
<version>2.0.1911.6</version>
66
<authors>Microsoft Corporation</authors>
77
<owners>Microsoft</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/PowerShell/Commands/GetPartnerUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private async Task<List<User>> GetUsersAsync(IGraphServiceClient client)
5454

5555
while (data.NextPageRequest != null)
5656
{
57-
data = await data.NextPageRequest.GetAsync().ConfigureAwait(false);
57+
data = await data.NextPageRequest.GetAsync(CancellationToken).ConfigureAwait(false);
5858
users.AddRange(data.CurrentPage);
5959
}
6060

src/PowerShell/Commands/PartnerPSCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public abstract class PartnerPSCmdlet : PSCmdlet
4242
/// </summary>
4343
private static readonly TelemetryClient telemetryClient = new TelemetryClient
4444
{
45-
InstrumentationKey = "cb2ea3c9-88e5-4139-bd48-f506319944fa"
45+
InstrumentationKey = "786d393c-be8e-46a8-b2b2-a3b6d5b417fc"
4646
};
4747

4848
/// <summary>

src/PowerShell/PartnerCenter.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/01/2019
6+
# Generated on: 11/26/2019
77
#
88

99
@{
1010
# Script module or binary module file associated with this manifest.
1111
RootModule = 'PartnerCenter.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '2.0.1912.1'
14+
ModuleVersion = '2.0.1911.6'
1515

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

src/PowerShell/PartnerCenter.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 12/01/2019
6+
# Generated on: 11/26/2019
77
#
88

99
$PSDefaultParameterValues.Clear()

src/PowerShell/PowerShell.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1919
<OutputPath>$(RepoArtifacts)$(Configuration)\</OutputPath>
2020
<PublishDir>$(OutputPath)</PublishDir>
21-
<Version>2.0.1912.1</Version>
21+
<Version>2.0.1911.6</Version>
2222
<LangVersion>latest</LangVersion>
2323
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2424
</PropertyGroup>
@@ -33,7 +33,7 @@
3333
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.4.0" />
3434
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="1.1.0-preview" />
3535
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="5.6.0" />
36-
<PackageReference Include="PartnerCenter.DotNet" Version="1.15.1" />
36+
<PackageReference Include="PartnerCenter.DotNet" Version="1.15.2" />
3737
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" PrivateAssets="All" />
3838
</ItemGroup>
3939

test/PowerShell.UnitTests/PowerShell.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<IsPackable>false</IsPackable>
88
<AssemblyName>Microsoft.Store.PartnerCenter.PowerShell.UnitTests</AssemblyName>
99
<RootNamespace>Microsoft.Store.PartnerCenter.PowerShell.UnitTests</RootNamespace>
10-
<Version>2.0.1912.1</Version>
10+
<Version>2.0.1911.6</Version>
1111
<NeutralLanguage>en-US</NeutralLanguage>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<LangVersion>latest</LangVersion>

0 commit comments

Comments
 (0)