Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
60fcdfb
Fix wrong alias-to for tvos AOT packs in net8 workload manifest (#110…
akoeplinger Jan 15, 2025
114532f
[release/9.0] Disable tests targetting http://corefx-net-http11.azure…
rzikm Jan 15, 2025
e781fb7
[release/9.0-staging] Support generic fields in PersistedAssemblyBuil…
github-actions[bot] Jan 15, 2025
f2a1313
Re-enable skiasharp WBT tests (#109232) (#110734)
radekdoulik Jan 16, 2025
f9ffbe0
[release/9.0-staging] Backport test fixes related to BinaryFormatter …
adamsitnik Jan 17, 2025
e84969e
Merge pull request #111565 from carlossanlop/release/9.0
carlossanlop Jan 18, 2025
9efd46e
[release/9.0] [wasi] Disable build in .NET 9 (#108877)
maraf Jan 21, 2025
0b71788
[mono] Disable UnitTest_GVM_TypeLoadException on fullAOT (#111394)
github-actions[bot] Jan 21, 2025
eaea271
Fix `UnsafeAccessor` scenario for modopts/modreqs when comparing fiel…
AaronRobinsonMSFT Jan 24, 2025
28117b9
[release/9.0-staging] [mono] Run runtime-llvm and runtime-ioslike on …
github-actions[bot] Jan 24, 2025
db5ef46
[release/9.0-staging] fix stack 2x2 tensor along dimension 1 (#110053)
github-actions[bot] Jan 28, 2025
ea5e814
[release/9.0-staging] Fix race condition in cleanup of collectible th…
github-actions[bot] Jan 28, 2025
6061b2c
[release/9.0-staging] [iOS] Retrieve device locale in full (specific)…
github-actions[bot] Jan 29, 2025
62d433f
[release/9.0-staging] Add workflow to prevent merging a PR when the `…
github-actions[bot] Jan 29, 2025
99b4e84
Use alternative format (#111444)
github-actions[bot] Jan 30, 2025
77e45d3
Fixed referring to `_LibClang` item (#111696)
jkurdek Jan 31, 2025
6091bce
[release/9.0-staging] Fix UNC paths (#111499)
github-actions[bot] Feb 3, 2025
2e3dd8e
[release/9.0-staging] [mono] [llvm-aot] Fixed storing Vector3 into me…
github-actions[bot] Feb 4, 2025
9c8c625
Remove explicit __compact_unwind entries from x64 assembler (#112204)
filipnavara Feb 5, 2025
b63f899
[release/9.0-staging] Update dependencies from dotnet/xharness (#111606)
dotnet-maestro[bot] Feb 6, 2025
84b3239
[release/9.0-staging] Update dependencies from dotnet/icu (#111519)
dotnet-maestro[bot] Feb 6, 2025
7161e66
[release/9.0-staging] Update dependencies from dotnet/icu (#112121)
dotnet-maestro[bot] Feb 6, 2025
a7bfd90
Update dependencies from https://github.com/dotnet/runtime-assets bui…
dotnet-maestro[bot] Feb 6, 2025
e50cf90
[release/9.0-staging] Fix shimmed implementation of TryGetHashAndRese…
github-actions[bot] Feb 6, 2025
6babc42
Remove Windows 8.1 from test queues (#112056)
agocke Feb 7, 2025
b1413ce
[release/9.0-staging] Update dependencies from dotnet/source-build-re…
dotnet-maestro[bot] Feb 9, 2025
8f76618
[browser] Remove experimental args from NodeJS WBT runner (#111655)
maraf Feb 10, 2025
b9d1938
Update dependencies from https://github.com/dotnet/sdk build 20250115…
dotnet-maestro[bot] Feb 10, 2025
e8c394c
[release/9.0-staging] Update dependencies from dotnet/roslyn-analyzer…
dotnet-maestro[bot] Feb 10, 2025
c5b2668
Update dependencies from https://github.com/dotnet/hotreload-utils bu…
dotnet-maestro[bot] Feb 10, 2025
ccbef33
Update dependencies from https://github.com/dotnet/cecil build 202502…
dotnet-maestro[bot] Feb 10, 2025
85ef657
Update dependencies from https://github.com/dotnet/roslyn build 20250…
dotnet-maestro[bot] Feb 10, 2025
d042fc3
Update dependencies from https://github.com/dotnet/icu build 20250205…
dotnet-maestro[bot] Feb 10, 2025
ca6fe3d
Merge branch 'release/9.0-staging' into merge/release/9.0-to-release/…
carlossanlop Feb 10, 2025
f5a9459
Merge pull request #112219 from dotnet/merge/release/9.0-to-release/9…
carlossanlop Feb 10, 2025
1b9b968
Update dependencies from https://github.com/dotnet/xharness build 202…
dotnet-maestro[bot] Feb 10, 2025
49a1042
[release/9.0-staging] Update dependencies from dotnet/arcade (#111483)
dotnet-maestro[bot] Feb 10, 2025
10a6130
Backport pr 111723 to 9.0 staging (#112322)
StephenMolloy Feb 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"microsoft.dotnet.xharness.cli": {
"version": "9.0.0-prerelease.25057.1",
"version": "9.0.0-prerelease.25103.3",
"commands": [
"xharness"
]
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/check-no-merge-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: check-no-merge-label

permissions:
pull-requests: read

on:
pull_request:
types: [opened, edited, reopened, labeled, unlabeled, synchronize]
branches:
- 'main'
- 'release/**'

jobs:
check-labels:
runs-on: ubuntu-latest
steps:
- name: Check 'NO-MERGE' label
run: |
echo "Merging permission is disabled when the 'NO-MERGE' label is applied."
if [ "${{ contains(github.event.pull_request.labels.*.name, 'NO-MERGE') }}" = "false" ]; then
exit 0
else
echo "::error:: The 'NO-MERGE' label was applied to the PR. Merging is disabled."
exit 1
fi
2 changes: 1 addition & 1 deletion .github/workflows/check-service-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Check 'Servicing-approved' label
run: |
echo "Merging permission is enabled for servicing PRs when the `Servicing-approved` label is applied."
echo "Merging permission is enabled for servicing PRs when the 'Servicing-approved' label is applied."
if [ "${{ contains(github.event.pull_request.labels.*.name, 'Servicing-approved') }}" = "true" ]; then
exit 0
else
Expand Down
19 changes: 18 additions & 1 deletion NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,28 @@
<clear />
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
<!-- Begin: Package sources from dotnet-emsdk -->
<add key="darc-pub-dotnet-emsdk-4c9d1b1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-4c9d1b11/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-dad5528" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-dad5528e/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-79f708d" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-79f708d7/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-15" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-15/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-14" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-14/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-13" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-13/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-12" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-12/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-11" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-11/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-10/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-9/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-8/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-7" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-7/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-6/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-5/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-4/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-3/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-2/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40-1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405-1/nuget/v3/index.json" />
<add key="darc-pub-dotnet-emsdk-2c27e40" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-2c27e405/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-emsdk -->
<!-- Begin: Package sources from dotnet-sdk -->
<add key="darc-pub-dotnet-sdk-a345a00" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-sdk-a345a003/nuget/v3/index.json" />
<add key="darc-pub-dotnet-sdk-049799c" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-sdk-049799c3/nuget/v3/index.json" />
<!-- End: Package sources from dotnet-sdk -->
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
<!--
Expand Down
Loading
Loading