Skip to content

Commit 25b1561

Browse files
authored
Merge branch 'main' into merge/release/10.0-to-main
2 parents ab0cf6a + cd8dd6d commit 25b1561

File tree

38 files changed

+899
-418
lines changed

38 files changed

+899
-418
lines changed

.azuredevops/pull_request_template/branches/internal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.azuredevops/pull_request_template/branches/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ Fixes #{bug number} (in this specific format)
4646

4747
----
4848

49-
## When servicing release/2.1
49+
## When servicing release/2.3
5050

5151
- [ ] Make necessary changes in eng/PatchConfig.props

.github/PULL_REQUEST_TEMPLATE/servicing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.github/policies/resourceManagement.yml

Lines changed: 36 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,19 +441,30 @@ configuration:
441441
branch: main
442442
then:
443443
- addMilestone:
444-
milestone: 10.0-rc1
444+
milestone: 11.0-preview1
445445
description: '[Milestone Assignments] Assign Milestone to PRs merged to the `main` branch'
446446
- if:
447447
- payloadType: Pull_Request
448448
- isAction:
449449
action: Closed
450450
- targetsBranch:
451-
branch: release/10.0-preview7
451+
branch: release/10.0-rc1
452452
then:
453453
- removeMilestone
454454
- addMilestone:
455-
milestone: 10.0-preview7
456-
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-preview1 branch'
455+
milestone: 10.0-rc1
456+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-rc1 branch'
457+
- if:
458+
- payloadType: Pull_Request
459+
- isAction:
460+
action: Closed
461+
- targetsBranch:
462+
branch: release/10.0
463+
then:
464+
- removeMilestone
465+
- addMilestone:
466+
milestone: 10.0-rc2
467+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0 branch'
457468
- if:
458469
- payloadType: Issues
459470
- isAction:
@@ -566,6 +577,25 @@ configuration:
566577
567578
Otherwise, please add `tell-mode` label.
568579
description: Add release/2.3 targeting PRs to the servicing project
580+
- if:
581+
- payloadType: Pull_Request
582+
- isAction:
583+
action: Opened
584+
- targetsBranch:
585+
branch: release/10.0
586+
- activitySenderHasPermission:
587+
permission: Read
588+
- not:
589+
isActivitySender:
590+
user: dotnet-maestro
591+
issueAuthor: False
592+
- not:
593+
isActivitySender:
594+
user: dotnet-maestro-bot
595+
issueAuthor: False
596+
then:
597+
- addLabel:
598+
label: servicing-consider
569599
- if:
570600
- payloadType: Pull_Request
571601
- labelAdded:
@@ -743,3 +773,5 @@ configuration:
743773
onFailure:
744774
onSuccess:
745775

776+
777+

.github/workflows/backport.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
backport:
17-
uses: dotnet/arcade/.github/workflows/backport-base.yml@fac534d85b77789bd4daf2b4c916117f1ca381e7 # 2025-01-13
17+
uses: dotnet/arcade/.github/workflows/backport-base.yml@f2cdf946c00a12a2c283835bb41ddc2255832055 # 2025-01-13
1818
with:
1919
pr_description_template: |
2020
Backport of #%source_pr_number% to %target_branch%
@@ -63,6 +63,6 @@ jobs:
6363
6464
----
6565
66-
## When servicing release/2.1
66+
## When servicing release/2.3
6767
6868
- [ ] Make necessary changes in eng/PatchConfig.props

.github/workflows/copilot-setup-steps.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,28 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
1818

19-
# Include PrepareForHelix to maximise what is downloaded here
19+
# Include PrepareForHelix to maximise what is downloaded here
2020
- name: Build solution
2121
env:
2222
# prevent GitInfo errors
2323
CI: false
2424
run: ./restore.sh
25+
26+
# For MCP servers like nuget's
27+
- name: Install .NET 10.x
28+
uses: actions/setup-dotnet@v4
29+
with:
30+
dotnet-version: |
31+
10.x
32+
dotnet-quality: preview
33+
34+
# for MCP servers
35+
- name: Install .NET 8.x
36+
uses: actions/setup-dotnet@v4
37+
with:
38+
dotnet-version: |
39+
8.x
40+
41+
# Diagnostics in the log
42+
- name: dotnet --info
43+
run: dotnet --info

.github/workflows/inter-branch-merge-flow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77
permissions:
88
contents: write
99
pull-requests: write
10+
issues: write
1011

1112
jobs:
1213
Merge:
13-
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@fac534d85b77789bd4daf2b4c916117f1ca381e7 # 2024-06-24
14+
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@f2cdf946c00a12a2c283835bb41ddc2255832055 # 2024-06-24

eng/Version.Details.props

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

eng/Version.Details.xml

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

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AspNetCoreMajorVersion>10</AspNetCoreMajorVersion>
1111
<AspNetCoreMinorVersion>0</AspNetCoreMinorVersion>
1212
<AspNetCorePatchVersion>0</AspNetCorePatchVersion>
13-
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
13+
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
1414
<ValidateBaseline>true</ValidateBaseline>
1515
<IdentityModelVersion Condition="'$(IsIdentityModelTestJob)' != 'true'">8.0.1</IdentityModelVersion>
1616
<IdentityModelVersion Condition="'$(IsIdentityModelTestJob)' == 'true'">*-*</IdentityModelVersion>

0 commit comments

Comments
 (0)