Skip to content

Bump DotNet.ReproducibleBuilds and 2 others#48

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/libs/all-c1e5dafa7d
Closed

Bump DotNet.ReproducibleBuilds and 2 others#48
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/libs/all-c1e5dafa7d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Nov 3, 2025

Updated DotNet.ReproducibleBuilds from 1.2.25 to 1.2.39.

Release notes

Sourced from DotNet.ReproducibleBuilds's releases.

1.2.39

Additions

Removals

Changed

Tidying up

New Contributors

Full Changelog: dotnet/reproducible-builds@v1.2.25...v1.2.39

Commits viewable in compare view.

Updated Microsoft.Windows.CsWin32 from 0.3.183 to 0.3.238.

Release notes

Sourced from Microsoft.Windows.CsWin32's releases.

0.3.238

Changes:

  • #​1520: Don't make void* params Span in friendly methods
  • #​1517: CsWin32Generator should allow newer language versions

This list of changes was auto generated.

0.3.236

NOTE: This changes the signature of methods with optional parameters. This change is also documented at https://microsoft.github.io/CsWin32/docs/getting-started.html:

Optional out/ref parameters

Some parameters in win32 are [optional, out] or [optional, in, out]. C# does not have an idiomatic way to represent this concept, so for any method that has such parameters, CsWin32 will generate two versions: one with all ref or out parameters included, and one with all such parameters omitted. For example:

// Omitting the optional parameter:
IsTextUnicode(buffer);

// Passing ref for optional parameter:
IS_TEXT_UNICODE_RESULT result = default;
IsTextUnicode(buffer, ref result);

Working with Span-typed and MemorySize-d parameters

In the Win32 APIs there are many functions where one parameter is a buffer (void* or byte*) and another parameter is the size of that buffer. When generating for a target framework that supports Spans, there will be overloads of these functions that take a Span<byte> which represents both of these parameters, since a Span refers to a chunk of memory and a length. For example, an API like IsTextUnicode has a void* parameter whose length is described by the iSize parameter in the native signature. The CsWin32 projection of this method will be:

BOOL IsTextUnicode(ReadOnlySpan<byte> lpv, ref IS_TEXT_UNICODE_RESULT lpiResult)

Instead of passing the buffer and length separately, in this projection you pass just one parameter. Span is a flexible type with many things that can be converted to it safely. You will also see Span parameters for things that may look like a struct but are variable sized. For example, InitializeAcl looks like it returns an ACL struct but the parameter is annotated with a [MemorySize] attribute in the metadata, indicating it is variable-sized based on another parameter. Thus, the cswin32 projection of this method will project this parameter as a Span<byte> since the size of the parameter is variable:

// The cswin32 signature:
static BOOL InitializeAcl(Span<byte> pAcl, ACE_REVISION dwAclRevision) { ... }

And you would call this by creating a buffer to receive the ACL. Then, after the call you can reinterpret the buffer as an ACL:

// Make a buffer
Span<byte> buffer = new byte[CalculateAclSize(...)];
InitializeAcl(buffer, ACE_REVISION.ACL_REVISION);

// The beginning of the buffer is an ACL, so cast it to a ref:
ref ACL acl = ref MemoryMarshal.AsRef<ACL>(buffer);

// Or treat it as a Span:
Span<ACL> aclSpan = MemoryMarshal.Cast<byte, ACL>(buffer);

CsWin32 will also generate a struct-typed parameter for convenience but this overload will pass sizeof(T) for the length parameter to the underlying Win32 API, so this only makes sense in some overloads such as SHGetFileInfo where the parameter has an annotation indicating it's variable-sized, but the size is only ever sizeof(SHFILEINFOW):

// Span<byte> overload:
static nuint SHGetFileInfo(string pszPath, FILE_FLAGS_AND_ATTRIBUTES dwFileAttributes, Span<byte> psfi, SHGFI_FLAGS uFlags)
// ref SHGETFILEINFOW overload:
static nuint SHGetFileInfo(string pszPath, FILE_FLAGS_AND_ATTRIBUTES dwFileAttributes, ref SHFILEINFOW psfi, SHGFI_FLAGS uFlags)
 ... (truncated)

## 0.3.235

## What's Changed
* Handle CoCreateable classes in ComSourceGenerators mode by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1502
* Simplify decimal conversions by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1512
* Prevent SafeHandle from being re-generated in downstream assembly by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1514
* Fix ArithmeticOverflow in HANDLE types and other helpers when CheckForOverflowUnderflow is enabled by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1513

**Full Changelog**: https://github.com/microsoft/CsWin32/compare/v0.3.228...v0.3.235

## 0.3.228

## What's Changed
* BuildTask mode should not generate types from InternalsVisibleTo referenced assemblies by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1492
* CsWin32 build task fixes for NET8/CSharp12 by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1498
* Fix platform case sensitivity issue with CsWin32Generator tool by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1499
* Update documentation for CsWin32RunAsBuildTask mode by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1497
* ArrayPool can be larger than requested resulting in freeing uninitialized GCHandles by @​jlaanstra in https://github.com/microsoft/CsWin32/pull/1405
* Fix analyzer test break in devdiv AzDO account by @​AArnott in https://github.com/microsoft/CsWin32/pull/1504

## New Contributors
* @​jlaanstra made their first contribution in https://github.com/microsoft/CsWin32/pull/1405

**Full Changelog**: https://github.com/microsoft/CsWin32/compare/v0.3.217...v0.3.228

https://www.nuget.org/packages/Microsoft.Windows.CsWin32/0.3.228

## 0.3.217

## What's Changed
* Add cswin32 mode to generate [GeneratedComInterface] and [LibraryImport] code by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1474
* Handle UnauthorizedAccessException in new ComTests by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1486
* Project byte* parameters as Span<byte> by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1488
* Fix nuspec to refer to only signed files and drop apphost.exe from the nuget by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1489


**Full Changelog**: https://github.com/microsoft/CsWin32/compare/v0.3.213...v0.3.217

## 0.3.213

## What's Changed
* Retarget to roslyn for VS 2022 Update 14 by @​AArnott in https://github.com/microsoft/CsWin32/pull/1466
* .NET targeting projects should reference `Microsoft.Windows.SDK.NET.Ref` instead by @​AArnott in https://github.com/microsoft/CsWin32/pull/1471
* Update win32metadata version to 65.0.8-preview by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1469
* Update dependency Microsoft.Build.NoTargets to 3.7.134 by @​renovate[bot] in https://github.com/microsoft/CsWin32/pull/1461


**Full Changelog**: https://github.com/microsoft/CsWin32/compare/v0.3.205...v0.3.213

## 0.3.205

## What's Changed
* Add msbuild item to opt 3rd party libraries into app-local deployments by @​AArnott in https://github.com/microsoft/CsWin32/pull/1381
* Fix NRE thrown from friendly overloads with optional pointer parameters by @​AArnott in https://github.com/microsoft/CsWin32/pull/1385
* Update getting-started.md by @​LWChris in https://github.com/microsoft/CsWin32/pull/1388
* Remove test workaround by @​DoctorKrolic in https://github.com/microsoft/CsWin32/pull/1447
* Add custom DebuggerDisplay for HRESULT by @​misaz in https://github.com/microsoft/CsWin32/pull/1445
* Update documentation links from `docs.microsoft.com` to `learn.microsoft.com` by @​xtqqczze in https://github.com/microsoft/CsWin32/pull/1454
* Merge latest Library.Template by @​AArnott in https://github.com/microsoft/CsWin32/pull/1458
* Support for derived IInspectable COM interfaces in custom winmds by @​jevansaks in https://github.com/microsoft/CsWin32/pull/1459

## New Contributors
* @​LWChris made their first contribution in https://github.com/microsoft/CsWin32/pull/1388
* @​DoctorKrolic made their first contribution in https://github.com/microsoft/CsWin32/pull/1447
* @​misaz made their first contribution in https://github.com/microsoft/CsWin32/pull/1445
* @​xtqqczze made their first contribution in https://github.com/microsoft/CsWin32/pull/1454

**Full Changelog**: https://github.com/microsoft/CsWin32/compare/v0.3.183...v0.3.205

Commits viewable in [compare view](https://github.com/microsoft/CsWin32/compare/v0.3.183...v0.3.238).
</details>

Updated [System.Security.Permissions](https://github.com/dotnet/runtime) from 9.0.7 to 9.0.10.

<details>
<summary>Release notes</summary>

_Sourced from [System.Security.Permissions's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.10

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [release/9.0-staging] Disable release assert on disallowed thread re-initialization for managed C++ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118842
* [release/9.0-staging] [wasm][AOT] fix codegen for small structs on stack by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118416
* Update branding to 9.0.10 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119280
* [release/9.0-staging] Don't use vfork on android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118331
* [release/9.0-staging] [mono][debugger] Fix assertion when stepping by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118459
* [release/9.0-staging][maccatalyst] Check for -Wno-overriding-option for compatibility with clang in Xcode 16.3+  by @​akoeplinger in https://github.com/dotnet/runtime/pull/119301
* [release/9.0-staging][HTTP] Stress fix for docker compose by @​ManickaP in https://github.com/dotnet/runtime/pull/119455
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/119505
* [9.0] Preserve Lock ID Members by @​jkoritzinsky in https://github.com/dotnet/runtime/pull/119281
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118940
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118151
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118372
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118423
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118193
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118758
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119619
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119598
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119620
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119051
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118492
* [release/9.0-staging] [H/3] Fix interop tests. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119522
* [release/9.0-staging] Disable tests parallelization in flaky OleDB tests by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119626
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119690
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118224
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119677
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119635
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119669
* [release/9.0-staging] Fix recursion issue found in PROCCreateCrashDump by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119128
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119742
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119721
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119753
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119793
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119809
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119832
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119830
* Backport macOS 26 Tahoe test fixes to release/9.0-staging by @​vcsjones in https://github.com/dotnet/runtime/pull/119716
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119871
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119872
* [release/9.0-staging] Disable Multicast SocketOption test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/119889
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119932
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/119900
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in https://github.com/dotnet/runtime/pull/119966
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120025
* [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/120111


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.9...v9.0.10

## 9.0.9

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117671
* [release/9.0-staging] [Test Only] Fix BuildChainCustomTrustStore test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117761
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117742
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117872
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117873
* Revert "[release/9.0-staging] Update dependencies from dotnet/sdk" by @​lewing in https://github.com/dotnet/runtime/pull/118001
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117910
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117962
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118080
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118114
* [release/9.0-staging] Fix broken debugger/debuggee startup handshake protocol on macOS26. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118212
* [release/9.0-staging] [NRBF] Allow the users to decode System.Nullable<UserStruct> by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118328
* [release/9.0-staging] [Test Only] Disable/modify some TimeZoneInfoTests on Android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118455
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118349
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118451
* [release/9.0-staging] Revert "Remove custom allocator." by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118279
* [release/9.0] Merge release/9.0-staging changes by @​krwq in https://github.com/dotnet/runtime/pull/118764
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117879


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9

## 9.0.8

[Release](https://github.com/dotnet/core/releases/tag/v9.0.8)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/116514
* [release/9.0] Disable all MT tests on CI by @​ilonatommy in https://github.com/dotnet/runtime/pull/116747
* [9.0] Revert squash commit and pulls release/9.0 again by @​jozkee in https://github.com/dotnet/runtime/pull/116764
* [release/9.0-staging] Backport "Dispose Xunit ToolCommand" by @​ilonatommy in https://github.com/dotnet/runtime/pull/116685
* [release/9.0-staging] Skip SSL key log test for OpenSSL 3.5+ by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/116687
* [release/9.0-staging] Fix absolute path check when loading hostfxr/hostpolicy/coreclr by @​elinor-fung in https://github.com/dotnet/runtime/pull/116775
* Update openssl dependency for SLES by @​NikolaMilosavljevic in https://github.com/dotnet/runtime/pull/116922
* [9.0] Backport 115546 FLS initialization fix to 9.  by @​mangod9 in https://github.com/dotnet/runtime/pull/116872
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117137
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116681
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116455
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116948
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/115596
* [release/9.0-staging] Update dependencies from dotnet/source-build-reference-packages by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/115588
* [release/9.0-staging] Map version for Tahoe compatibility. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/116641
* [9.0] Update CI OSes by @​richlander in https://github.com/dotnet/runtime/pull/115503
* Update branding to 9.0.8 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/117283
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116683
* Disable odbc tests on net9 interpreter by @​BrzVlad in https://github.com/dotnet/runtime/pull/117245
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117228
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117257
* [release/9.0-staging] Update dependencies from dotnet/hotreload-utils by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117184
* [release/9.0-staging] Update dependencies from dotnet/runtime-assets by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116664
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116908
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/116626
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117296
* [release/9.0-staging][wbt] Prevent `InvalidOperationException` on `TestOutputHelper` logging. by @​ilonatommy in https://github.com/dotnet/runtime/pull/116916
* [release/9.0-staging] Harden `Ping_TimedOut_*` tests by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/116630
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/117442
* [release/9.0-staging] Fix ILogB for subnormal values by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/116973
* [release/9.0-staging] Fix ordering issue in interface trimming by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/114509
* [release/9.0-staging][mono][gc] Fix gc descriptor computation for InlineArray structs by @​BrzVlad in https://github.com/dotnet/runtime/pull/116951
* [release/9.0-staging] Fix few RandomAccess.Write edge case bugs by @​adamsitnik in https://github.com/dotnet/runtime/pull/109646
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117471
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117594
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117595
* [manual] Merge release/9.0-staging into release/9.0 by @​tarekgh in https://github.com/dotnet/runtime/pull/117634


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.7...v9.0.8

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.7...v9.0.10).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps DotNet.ReproducibleBuilds from 1.2.25 to 1.2.39
Bumps Microsoft.Windows.CsWin32 from 0.3.183 to 0.3.238
Bumps System.Security.Permissions from 9.0.7 to 9.0.10

---
updated-dependencies:
- dependency-name: DotNet.ReproducibleBuilds
  dependency-version: 1.2.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.Windows.CsWin32
  dependency-version: 0.3.238
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: System.Security.Permissions
  dependency-version: 9.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Nov 3, 2025
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Nov 3, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 10, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this Nov 10, 2025
@dependabot dependabot Bot deleted the dependabot/nuget/src/libs/all-c1e5dafa7d branch November 10, 2025 03:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants