') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Bump the nuget-deps group with 8 updates by dependabot[bot] · Pull Request #446 · ptr727/Utilities · GitHub
Skip to content

Bump the nuget-deps group with 8 updates - #446

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/main/nuget-deps-c7579a624f
Closed

Bump the nuget-deps group with 8 updates#446
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/main/nuget-deps-c7579a624f

Conversation

@dependabot

@dependabotdependabotBot commented on behalf of githubAug 21, 2026

Copy link
Copy Markdown
Contributor

Updated AwesomeAssertions from 9.5.0 to 9.6.0.

Release notes

Sourced from AwesomeAssertions's releases.

9.6.0

What's Changed

New features

Fixes

Documentation

Others

Dependencies

New Contributors

Commits viewable in compare view.

Updated Microsoft.Extensions.Http.Resilience from 10.8.0 to 10.9.0.

Release notes

Sourced from Microsoft.Extensions.Http.Resilience's releases.

10.9.0

Version 10.9.0 is headlined by changes in these areas:

  • AI: New experimental routing APIs center on the abstract RoutingChatClient base class, with SemanticRoutingChatClient as a concrete semantic-routing implementation. Separately, the abstract FailoverChatClient specialization and its concrete OrderedFailoverChatClient implementation add failover routing.
  • AI Evaluation: The generated report gains redesigned Overview, Cases, History, and Comparison views.
  • ASP.NET Core and HTTP diagnostics: The release adds HTTP request latency log enrichment and fixes configuration binding, response-body logging, request-path redaction, and resilience package version handling.
  • Source-generated logging and service discovery: Fixes cover classification type qualification, thread-local state cleanup, and DNS query suffix handling.

Experimental API Changes

New Experimental APIs

  • New experimental API: HTTP request latency log enrichment (EXTEXP0013) #​7602
  • New experimental API: Chat client routing and failover (MEAI001) #​7662

What's Changed

AI (Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI)

  • Add extensible chat client routing #​7662 by @​joshuajyue (co-authored by @​Copilot)
  • Pass the request's options to the selected client #​7685 by @​joshuajyue (co-authored by @​jozkee @​Copilot)
  • AI.Abstractions: fix ExcludeFromSchema dropped under concurrent AIFunction creation #​7677 by @​jozkee (co-authored by @​Copilot)
  • Cap OpenAI dependency version (b10f9c0) by @​jeffhandley (co-authored by @​Copilot)

Note: Microsoft.Extensions.AI.OpenAI constrains its dependency for OpenAI to 2.12.x, preventing OpenAI updates to 2.13.0+ due to an incompatibility. We expect to release Microsoft.Extensions.AI.OpenAI version 10.9.1 during the week of August 17 to address this issue.

HTTP Resilience and Diagnostics (Microsoft.Extensions.Http.Resilience and Microsoft.Extensions.Http.Diagnostics)

  • Fix Grpc.Net.ClientFactory version range check - Fixes #​7565 #​7566 by @​Ghost93
  • Fix response body logging under debugger #​7678 by @​Rimobul
  • Redact outgoing path when route is unknown #​7687 by @​Rimobul
  • Fix HTTP client logging config binding #​7691 by @​Rimobul

ASP.NET Core Extensions (Microsoft.AspNetCore.Diagnostics.Middleware)

  • Rename HttpLatencyTelemetry extensions class and drop redundant TFM guard #​7645 by @​EasyL0ver (co-authored by @​Copilot)
  • Add HTTP request latency log enricher (experimental) #​7602 by @​EasyL0ver (co-authored by @​Copilot)

Logging Source Generator (Microsoft.Gen.Logging)

  • [Microsoft.Gen.Logging] Clear thread-local state when logging throws #​7682 by @​Rimobul
  • [Microsoft.Gen.Logging] Fully qualify classification types #​7689 by @​Rimobul

AI Evaluation (Microsoft.Extensions.AI.Evaluation.Reporting)

  • [Microsoft.Extensions.AI.Evaluation.Reporting] Evaluation report redesign #​7609 by @​grafanaKibana

Project Templates (Microsoft.McpServer.ProjectTemplates)

  • Remove MCP server project template #​7680 by @​jeffhandley (co-authored by @​Copilot)

... (truncated)

10.8.4

This servicing update refreshes the .NET AI project templates ahead of the July 30, 2026 retirement of GitHub Models — removing the GitHub Models provider option and updating template dependencies.

As a result, both the AI Chat Web (aichatweb) and AI Agent Web API (aiagent-webapi) templates now require the AI service provider to be chosen explicitly via --provider; there is no longer a default. One of the following must be selected:

  • --provider azureopenai — Azure OpenAI
  • --provider ollama — Ollama (for local development)
  • --provider openai — OpenAI Platform

Packages in this release

PackageVersion
Microsoft.Extensions.AI.Templates10.8.4-preview.3.26379.3
Microsoft.Agents.AI.ProjectTemplates1.13.0-preview.1.26379.3

What's Changed

Project templates

  • Removed the GitHub Models provider from the AI Chat Web and AI Agent Web API templates, ahead of GitHub Models being fully retired on July 30, 2026. The --provider option is now required with no default (#​7667).
  • Updated AI template dependencies — bumped Aspire.Hosting.AppHost to 13.4.6 and CommunityToolkit.VectorData.SqliteVec to 1.0.0-preview.4 (aligned System.Linq.AsyncEnumerable to 10.0.9), replacing earlier workaround package pins (#​7639).

Full Changelog

10.8.3

Packages in this release

PackageVersion
Microsoft.Extensions.AI10.8.3
Microsoft.Extensions.AI.Abstractions10.8.3
Microsoft.Extensions.AI.OpenAI10.8.3

Experimental API Changes

Experimental API behavior updates

  • Updated serialization behavior for experimental ToolApprovalRequestContent.RequiresConfirmation so it no longer leaks into consumer source-generated AIContent JSON metadata unless approval APIs are intentionally used (#​7659).

What's Changed

AI abstractions and serialization

  • Fixed MEAI001 leakage from RequiresConfirmation in source-generated AIContent contexts by using an internal JSON-included backing member while keeping the public experimental member ignored for source-generation metadata (#​7659).

Test Improvements

  • Added stabilization regression coverage to verify consumer source-generated List<AIContent> contexts compile and round-trip without requiring MEAI001 suppression (#​7659).

Full Changelog

10.8.2

This servicing release updates Microsoft.Extensions.VectorData.ConformanceTests to 10.8.2 and includes targeted test framework migration fixes.

Packages in this release

PackageVersionNote
Microsoft.Extensions.VectorData.Abstractions10.8.2Published August 7, 2026
Microsoft.Extensions.VectorData.ConformanceTests10.8.2

Update: August 7, 2026
The Microsoft.Extensions.VectorData.Abstractions package was initially excluded from this release by mistake. Because Microsoft.Extensions.VectorData.ConformanceTests has a dependency on Microsoft.Extensions.VectorData.Abstractions, that led to failures when updating to Microsoft.Extensions.VectorData.ConformanceTests 10.8.2.

Microsoft.Extensions.VectorData.Abstractions was published August 7, 2026 to resolve that issue.

What's Changed

AI

  • Move Microsoft.Extensions.VectorData.ConformanceTests to xUnit 3 #​7636 by @​adamsitnik (co-authored by @​Copilot)

Acknowledgements

  • @​roji reviewed pull requests

Full Changelog: dotnet/extensions@v10.8.1...v10.8.2

10.8.1

This servicing release updates the Microsoft.Extensions.AI, Microsoft.Extensions.AI.Abstractions, and Microsoft.Extensions.AI.OpenAI packages to 10.8.1 with two targeted fixes: correct tool-call/tool-result ordering when resuming approval-gated functions with service-managed chat history, and preservation of the OpenAI Responses reasoning item id for stateless (store=false) encrypted reasoning.

Packages in this release

PackageVersion
Microsoft.Extensions.AI10.8.1
Microsoft.Extensions.AI.Abstractions10.8.1
Microsoft.Extensions.AI.OpenAI10.8.1

What's Changed

AI

  • Fix FICC tool_calls/tool ordering with approvals and service-managed chat history #​7617 by @​westey-m
  • Roundtrip OpenAI Responses reasoning item id for stateless (store=false) encrypted reasoning #​7629 by @​rogerbarreto (co-authored by @​tarekgh)

Acknowledgements

  • @​jozkee reviewed pull requests

Full Changelog: dotnet/extensions@v10.8.0...v10.8.1

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Abstractions from 10.0.10 to 10.0.11.

Release notes

Sourced from Microsoft.Extensions.Logging.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 18.8.1 to 18.9.0.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.9.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v18.8.0...v18.9.0

Commits viewable in compare view.

Updated Microsoft.SourceLink.GitHub from 10.0.301 to 10.0.400.

Release notes

Sourced from Microsoft.SourceLink.GitHub's releases.

10.0.400

You can build .NET 10.0 from the repository by cloning the release tag v10.0.400 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.303

You can build .NET 10.0 from the repository by cloning the release tag v10.0.303 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.302

You can build .NET 10.0 from the repository by cloning the release tag v10.0.302 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

Commits viewable in compare view.

Updated xunit.analyzers from 1.27.0 to 2.0.0.

Release notes

Sourced from xunit.analyzers's releases.

2.0.0

Release notes: https://xunit.net/releases/analyzers/2.0.0

2.0.0-pre.60

Release notes: https://xunit.net/releases/analyzers/2.0.0-pre.60

2.0.0-pre.56

Release notes: https://xunit.net/releases/analyzers/2.0.0-pre.56

2.0.0-pre.51

Release notes: https://xunit.net/releases/analyzers/2.0.0-pre.51

2.0.0-pre.40

Release notes: https://xunit.net/releases/analyzers/2.0.0-pre.40

2.0.0-pre.9

Release notes: https://xunit.net/releases/analyzers/2.0.0-pre.9

Commits viewable in compare view.

Updated xunit.runner.visualstudio from 3.1.5 to 4.0.0.

Release notes

Sourced from xunit.runner.visualstudio's releases.

4.0.0

Release notes: https://xunit.net/releases/visualstudio/4.0.0

4.0.0-pre.5

Release notes: https://xunit.net/releases/visualstudio/4.0.0-pre.5

4.0.0-pre.4

Release notes: https://xunit.net/releases/visualstudio/4.0.0-pre.4

4.0.0-pre.3

Release notes: https://xunit.net/releases/visualstudio/4.0.0-pre.3

Commits viewable in compare view.

Updated xunit.v3 from 3.2.2 to 4.0.0.

Release notes

Sourced from xunit.v3's releases.

No release notes found for this version range.

Commits viewable in compare view.

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 commands and options

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 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

Bumps AwesomeAssertions from 9.5.0 to 9.6.0
Bumps Microsoft.Extensions.Http.Resilience from 10.8.0 to 10.9.0
Bumps Microsoft.Extensions.Logging.Abstractions from 10.0.10 to 10.0.11
Bumps Microsoft.NET.Test.Sdk from 18.8.1 to 18.9.0
Bumps Microsoft.SourceLink.GitHub from 10.0.301 to 10.0.400
Bumps xunit.analyzers from 1.27.0 to 2.0.0
Bumps xunit.runner.visualstudio from 3.1.5 to 4.0.0
Bumps xunit.v3 from 3.2.2 to 4.0.0
---
updated-dependencies:
- dependency-name: AwesomeAssertions
dependency-version: 9.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Http.Resilience
dependency-version: 10.9.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: nuget-deps
- dependency-name: Microsoft.Extensions.Logging.Abstractions
dependency-version: 10.0.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget-deps
- dependency-name: Microsoft.NET.Test.Sdk
dependency-version: 18.9.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: nuget-deps
- dependency-name: Microsoft.SourceLink.GitHub
dependency-version: 10.0.400
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: nuget-deps
- dependency-name: xunit.analyzers
dependency-version: 2.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget-deps
- dependency-name: xunit.runner.visualstudio
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget-deps
- dependency-name: xunit.v3
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: nuget-deps
...
Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotBot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Aug 21, 2026
ptr727 added a commit that referenced this pull request Aug 29, 2026
## Why
The .NET 10 SDK dropped the VSTest bridge `dotnet test` relied on, so
`dotnet test` failed outright on every PR: `Testing with VSTest target
is no longer supported by Microsoft.Testing.Platform on .NET 10 SDK and
later.` This is what was blocking #443, #444, #445, and #446 (all four
currently fail on the `Run unit tests job`).
## What
- Opt `UtilitiesTests` into native Microsoft.Testing.Platform (MTP):
`global.json`'s `test.runner` setting, plus
`UseMicrosoftTestingPlatformRunner`/`OutputType=Exe` on the test
project, per the [official migration
guide](https://learn.microsoft.com/en-us/dotnet/core/testing/migrating-vstest-microsoft-testing-platform).
- Swap `coverlet.collector` (VSTest-only) for
`Microsoft.Testing.Extensions.CodeCoverage`, the native MTP coverage
provider.
- Bump `Microsoft.NET.Test.Sdk` and the `xunit.v3` family to the
versions that ship a compatible MTP runtime; the prior `xunit.v3` 3.2.2
pairing threw a `TypeLoadException` against the newer platform assembly.
- Update the validate workflow's `dotnet test` invocation (`--coverage`
instead of `--collect`), naming the output file explicitly
(`--coverage-output coverage.cobertura.xml`): the extension's default
GUID basename is not matched by codecov-action's file finder, so the
upload step would otherwise silently find nothing under
`fail_ci_if_error: false`.
- Fix three `ExtensionsTests.cs` null-argument tests that were missing
the null-forgiving operator a sibling test already used;
`TreatWarningsAsErrors` never reached these under the old VSTest error,
which aborted the build before the test project ever compiled.
- Add `global.json` to the Solution Items folder and fix
`Directory.Packages.props`'s alphabetical ordering.
## Verification
Ran locally against .NET 10.0.400: `dotnet build` (0 warnings/errors),
`dotnet test --coverage --coverage-output-format cobertura
--coverage-output coverage.cobertura.xml --results-directory ./coverage`
(183/183 passed, `coverage/coverage.cobertura.xml` produced), `dotnet
csharpier check .`, and `dotnet format style --verify-no-changes` all
clean. Reviewed with a local adversarial pass before pushing (fleet
`local-strict-review`).
## Known trade-off
`Microsoft.Testing.Extensions.CodeCoverage` ships native instrumentation
for `win-x64/x86/arm64`, `linux-x64`, `linux-musl-x64`, and `osx-x64`
only, no `osx-arm64` or `linux-arm64`. CI runs on `ubuntu-latest` (x64)
and is unaffected, but coverage collection won't work locally on Apple
Silicon or Linux arm64 dev machines, where `coverlet.collector` had none
of that restriction. Flagging for awareness rather than blocking on it,
since this is the officially recommended MTP coverage path.
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
* **Tests**
* Updated the test runner and testing tools for improved compatibility
and execution.
* Added consistent Cobertura code coverage reporting.
* Preserved validation of expected compression and decompression errors.
* **Chores**
* Standardized .NET SDK and test environment configuration.
* Updated test tooling and coverage integration packages.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
ptr727 added a commit that referenced this pull request Aug 30, 2026
…451)
Brings this repository back into line with the hub, driven from
`RESYNC.md` against a fresh hub checkout. The audit that produced the
findings ran at `audit run 2026-08-30T03:27:29Z | hub a378121` and
reported 45 findings against `main@eb80a36`. Every hub task is pinned at
`f3b4cc9`, release `2.0.526`.
## Line endings are now LF
This is the headline change and the reason nearly every file appears in
the diff. The fleet standard moved to LF, so `.gitattributes` is now `*
text=auto eol=lf` with CRLF kept only for `*.bat` and `*.cmd`, and
`.editorconfig` declares `end_of_line = lf` on `[*]` with the same
single CRLF exception. The two now agree, and git enforces on checkout
what the editor writes, where the old `* -text` default left git out of
it entirely.
The tree was renormalized with `git add --renormalize`, so every tracked
file is LF in both the index and the working tree. Verified against the
hub's own gate:
```text
[ok ] eol 0 issue(s)
[ok ] eol-coverage 0 issue(s) (9 representative paths + 1 tracked shebang path resolved through git check-attr)
```
**Reviewing this diff:** 52 of the 124 changed files carry line-ending
churn and nothing else, and are provably byte-identical with the
carriage returns stripped. `git diff origin/develop --ignore-cr-at-eol`
is the view that drops them.
## Instruction set
`AGENTS.md` is now the hub's three byte-locked sections plus a
repository preamble, with the fleet rule text moved to a new
`GOVERNANCE.md` (the 20 declared sections) and a new `CLAUDE.md`
importing `AGENTS.md`. `CODESTYLE.md`, `WORKFLOW.md` and `AUDIT.md` are
re-vendored, and the `.github/skills/` tree is carried whole with its
digest verified against the hub source.
The `carried-instruction-file-guard` probe found twelve local additions
in the old `AGENTS.md` and `CODESTYLE.md`. None were dropped. Each went
to its declared destination:
| Local content | Destination |
| --- | --- |
| Library public-API and behavioral contracts, project layout | new
`ARCHITECTURE.md` |
| Tooling, linter invocations, release and hook runbooks | new
`OPERATIONS.md` |
| Packable-project, test-runner and analyzer-relaxation rules |
`CODESTYLE.md` "Utilities .NET Conventions" |
## Workflows
All four reusable tasks are now the hub's, reached by pin:
`validate-task`, `publish-plan-task`, `build-release-task` and
`merge-bot-task`. What stays here is the trigger policy, the paths
filter, the per-target wiring, and the ruleset-bound aggregator.
`build-release-task.yml`, `publish-plan-task.yml`, `validate-task.yml`,
`repo-config/` and `spec/secrets.json` are deleted, per their `retire`
dispositions in the hub's `spec/divergences.json`.
Adopting the shared validator was originally deferred, because its
unit-test step ran the VSTest coverage invocation that this repository's
native Microsoft.Testing.Platform suite exits `5` on. Hub #1107 fixed
that in `2.0.526`, and the task's exact command was verified against
this tree before adopting: 183 of 183 pass, and the report lands where
the Codecov finder matches it once prefixed. Both Codecov checks are
green on this pull request, which is the end-to-end proof.
The pull request workflow also gained the `changes` paths filter that
`WORKFLOW.md` D1.1, D1.4 and D1.5 require. Its entries are the
publisher's own shipped-input list, so the smoke gate and the publish
gate agree on what affects the package by construction, and a
documentation-only pull request now skips the smoke build.
## Dependabot
PRs #443 through #446 are stale against this branch: they still carry
`coverlet.collector`, which the Microsoft.Testing.Platform migration
removed, and they conflict. Their content is either already on `develop`
or included here (the cspell action at `v9.0.1`). Dependabot should
reopen cleanly once `develop` and `main` move. Also bumps
`Microsoft.Testing.Extensions.CodeCoverage` to 18.10.0, the one package
with an update available. The dotnet tool manifest is already at the
current CSharpier and Husky.Net.
## Verification
Every gate run locally before each push, plus three
`local-strict-review` passes whose findings are all fixed:
```text
dotnet build 0 warnings, 0 errors
dotnet csharpier check . 43 files, clean
dotnet format style --verify-no-changes clean
dotnet test (MTP + coverage) 183/183 passed
markdownlint-cli2 '**/*.md' 48 files, 0 issues
cspell README.md HISTORY.md 0 issues
actionlint clean
editorconfig-checker clean
shellcheck + shfmt (.husky/pre-commit) clean
repo_gate.py eol, eol-coverage, sha-pin all clean
prose_lint.py --diff origin/develop clean
```
## Filed rather than fixed here
- #452, the download tests reaching real network hosts.
Correct, and out of scope for a change that only renormalizes those
files' line endings.
- Three hub-side items, since no hub file is touched by this change: the
carried-content defects this review surfaced, the `WORKFLOW.md` D1.6
wording on how `CODECOV_TOKEN` reaches the validator, and the stale
registry entry for this repository.
Repository settings and rulesets were not applied, since
`repo-config/configure.sh check|apply` is an outward-facing write.
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
* **Documentation**
* Added architecture, governance, operations, coding standards, audit,
workflow, and maintenance guidance.
* Improved README navigation, installation, release, contribution, and
support information.
* Added comprehensive review, testing, and workflow references.
* **Workflow Updates**
* Streamlined pull-request validation, release planning, publishing, and
merge automation.
* Removed obsolete validation and release workflow components.
* **Consistency**
* Standardized line endings, formatting, linting exclusions, and editor
configuration.
* Improved project and workspace organization.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
@dependabot@github

dependabotBot commented on behalf of githubAug 30, 2026

Copy link
Copy Markdown
ContributorAuthor

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

@dependabotdependabotBot closed this Aug 30, 2026
auto-merge was automatically disabled August 30, 2026 21:18

Pull request was closed

@dependabot
dependabotBot deleted the dependabot/nuget/main/nuget-deps-c7579a624f branch August 30, 2026 21:18
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependenciesPull requests that update a dependency file.NETPull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants