Skip to content

Commit c88b5f5

Browse files
authored
Merge branch 'release/9.0' into merge/release/9.0-rc1-to-release/9.0
2 parents 280c613 + 2b865e3 commit c88b5f5

File tree

14 files changed

+374
-330
lines changed

14 files changed

+374
-330
lines changed

.azure/pipelines/helix-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ schedules:
1313
include:
1414
- release/6.0
1515
- release/8.0
16+
- release/9.0
1617
always: false
1718

1819
variables:

.azure/pipelines/identitymodel-helix-matrix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ schedules:
88
include:
99
- main
1010
- release/8.0
11+
- release/9.0
1112
always: true
1213

1314
variables:

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,15 @@ updates:
8686
labels:
8787
- area-infrastructure
8888
target-branch: "release/8.0"
89+
- package-ecosystem: "gitsubmodule"
90+
directory: "/"
91+
schedule:
92+
interval: "monthly"
93+
allow:
94+
- dependency-type: "all"
95+
commit-message:
96+
prefix: "[release/9.0] "
97+
include: scope
98+
labels:
99+
- area-infrastructure
100+
target-branch: "release/9.0"

.github/policies/resourceManagement.yml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -501,19 +501,30 @@ configuration:
501501
branch: main
502502
then:
503503
- addMilestone:
504-
milestone: 9.0-rc1
504+
milestone: 10.0-preview1
505505
description: '[Milestone Assignments] Assign Milestone to PRs merged to the `main` branch'
506506
- if:
507507
- payloadType: Pull_Request
508508
- isAction:
509509
action: Closed
510510
- targetsBranch:
511-
branch: release/9.0-preview7
511+
branch: release/9.0-rc1
512512
then:
513513
- removeMilestone
514514
- addMilestone:
515-
milestone: 9.0-preview7
516-
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0-preview7 branch'
515+
milestone: 9.0-rc1
516+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0-rc1 branch'
517+
- if:
518+
- payloadType: Pull_Request
519+
- isAction:
520+
action: Closed
521+
- targetsBranch:
522+
branch: release/9.0
523+
then:
524+
- removeMilestone
525+
- addMilestone:
526+
milestone: 9.0-rc2
527+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0 branch'
517528
- if:
518529
- payloadType: Issues
519530
- isAction:
@@ -581,6 +592,21 @@ configuration:
581592
- addReply:
582593
reply: 'Hi @${issueAuthor}. We have added the "Needs: Author Feedback" label to this issue, which indicates that we have an open question for you before we can take further action. This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.'
583594
description: Add comment when 'Needs Author Feedback' is applied to issue
595+
- if:
596+
- payloadType: Pull_Request
597+
- isAction:
598+
action: Opened
599+
- targetsBranch:
600+
branch: release/9.0
601+
then:
602+
- addMilestone:
603+
milestone: 9.0.x
604+
- addReply:
605+
reply: >-
606+
Hi @${issueAuthor}. If this is not a tell-mode PR, please make sure to follow the instructions laid out in the [servicing process](https://aka.ms/aspnet/servicing) document.
607+
608+
Otherwise, please add `tell-mode` label.
609+
description: Add release/9.0 targeting PRs to the servicing project
584610
- if:
585611
- payloadType: Pull_Request
586612
- isAction:

eng/Version.Details.xml

Lines changed: 176 additions & 176 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 87 additions & 87 deletions
Large diffs are not rendered by default.

eng/common/SetupNugetSources.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ if ($dotnet31Source -ne $null) {
157157
AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -pwd $Password
158158
}
159159

160-
$dotnetVersions = @('5','6','7','8')
160+
$dotnetVersions = @('5','6','7','8','9')
161161

162162
foreach ($dotnetVersion in $dotnetVersions) {
163163
$feedPrefix = "dotnet" + $dotnetVersion;

eng/common/SetupNugetSources.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ if [ "$?" == "0" ]; then
9999
PackageSources+=('dotnet3.1-internal-transport')
100100
fi
101101

102-
DotNetVersions=('5' '6' '7' '8')
102+
DotNetVersions=('5' '6' '7' '8' '9')
103103

104104
for DotNetVersion in ${DotNetVersions[@]} ; do
105105
FeedPrefix="dotnet${DotNetVersion}";

eng/common/core-templates/job/job.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ parameters:
3333
artifactPublishSteps: []
3434
runAsPublic: false
3535

36-
# Sbom related params
37-
enableSbom: true
38-
PackageVersion: 9.0.0
39-
BuildDropPath: '$(Build.SourcesDirectory)/artifacts'
40-
4136
# 1es specific parameters
4237
is1ESPipeline: ''
4338

eng/common/internal/Tools.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<PropertyGroup>
55
<TargetFramework>net472</TargetFramework>
66
<AutomaticallyUseReferenceAssemblyPackages>false</AutomaticallyUseReferenceAssemblyPackages>
7+
<BuildWithNetFrameworkHostedCompiler>false</BuildWithNetFrameworkHostedCompiler>
78
</PropertyGroup>
89
<ItemGroup>
910
<!-- Clear references, the SDK may add some depending on UsuingToolXxx settings, but we only want to restore the following -->

0 commit comments

Comments
 (0)