Skip to content

Commit 7c8c554

Browse files
authored
Merge branch 'main' into chore/kiota-bundle
2 parents e40fb97 + 7afe7f9 commit 7c8c554

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.2.0"
2+
".": "3.2.1"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project does adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.2.1](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/compare/3.2.0...3.2.1) (2024-11-18)
9+
10+
11+
### Bug Fixes
12+
13+
* removes upper bound on System.Net.Http.WinHttpHandler ([72aa793](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/commit/72aa793b90964335c051d7ba1c06d2f9f6aa5524))
14+
* removes upper bound on System.Net.Http.WinHttpHandler ([4f50933](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/commit/4f509338ed4440ae3f3e4cc6fe7069ce7bd3ee37))
15+
816
## [3.2.0](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/compare/3.1.22...3.2.0) (2024-11-08)
917

1018

pipelines/productionBuild.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ extends:
7878
pwsh: true
7979
enabled: true
8080
- powershell: |
81-
dotnet workload install android macos ios maccatalyst
81+
dotnet workload install android macos ios maccatalyst
8282
displayName: 'Install needed dotnet workloads'
8383
- task: DotNetCoreCLI@2
8484
displayName: 'dotnet restore'
@@ -243,6 +243,13 @@ extends:
243243
dependsOn: build
244244
jobs:
245245
- deployment: deploy_nuget
246+
templateContext:
247+
type: releaseJob
248+
isProduction: true
249+
inputs:
250+
- input: pipelineArtifact
251+
artifactName: ProductionReleaseArtifact
252+
targetPath: $(Pipeline.Workspace)
246253
pool:
247254
name: Azure-Pipelines-1ESPT-ExDShared
248255
os: windows
@@ -258,11 +265,6 @@ extends:
258265
inputs:
259266
versionSpec: '>=5.2.0'
260267
checkLatest: true
261-
- task: DownloadPipelineArtifact@2
262-
displayName: Download nupkg from artifacts
263-
inputs:
264-
artifact: ProductionReleaseArtifact
265-
source: current
266268
- task: PowerShell@2
267269
displayName: 'Get Latest Commit SHA from repo'
268270
inputs:
@@ -297,4 +299,4 @@ extends:
297299
assetUploadMode: replace
298300
assets: |
299301
!**/**
300-
$(Pipeline.Workspace)/Microsoft.Graph.Core.*.*nupkg
302+
$(Pipeline.Workspace)/Microsoft.Graph.Core.*.*nupkg

src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
2222
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
2323
<!-- x-release-please-start-version -->
24-
<VersionPrefix>3.2.0</VersionPrefix>
24+
<VersionPrefix>3.2.1</VersionPrefix>
2525
<!-- x-release-please-end -->
2626
<!-- VersionPrefix minor version should not be set when the change comes from the generator. It will be updated automatically. -->
2727
<!-- VersionPrefix minor version must be manually set when making manual changes to code. -->

tests/Microsoft.Graph.DotnetCore.Core.Test/Microsoft.Graph.DotnetCore.Core.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<PrivateAssets>all</PrivateAssets>
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2424
</PackageReference>
25-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
25+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
2626
<PackageReference Include="Moq" Version="4.20.72" />
2727
<PackageReference Include="xunit" Version="2.9.2" />
2828
<PackageReference Include="coverlet.collector" Version="6.0.2">

0 commit comments

Comments
 (0)