Skip to content

Bump the analyzers group with 2 updates#107

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/analyzers-dfa7faf477
Closed

Bump the analyzers group with 2 updates#107
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/analyzers-dfa7faf477

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Updated Meziantou.Analyzer from 3.0.54 to 3.0.58.

Release notes

Sourced from Meziantou.Analyzer's releases.

3.0.58

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.58

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.57...3.0.58

3.0.57

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.57

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.56...3.0.57

3.0.56

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.56

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.55...3.0.56

3.0.55

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/3.0.55

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@3.0.54...3.0.55

Commits viewable in compare view.

Updated SonarAnalyzer.CSharp from 10.24.0.138807 to 10.25.0.139117.

Release notes

Sourced from SonarAnalyzer.CSharp's releases.

10.25

?

Feature

  • NET-3613 - Support Cobertura coverage file format
    • Cobertura report paths can be passed via the sonar.cs.cobertura.reportsPaths parameter
  • NET-3665 - Update RSPEC before 10.25 release

False Positive

  • NET-3640 - Fix S3400 FP: Don't report function with conditional compilation body

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 Meziantou.Analyzer from 3.0.54 to 3.0.58
Bumps SonarAnalyzer.CSharp from 10.24.0.138807 to 10.25.0.139117

---
updated-dependencies:
- dependency-name: Meziantou.Analyzer
  dependency-version: 3.0.58
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: analyzers
- dependency-name: SonarAnalyzer.CSharp
  dependency-version: 10.25.0.139117
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: analyzers
...

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 May 1, 2026
@dependabot dependabot Bot requested a review from mghabin as a code owner May 1, 2026 19:04
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels May 1, 2026
mghabin added a commit that referenced this pull request May 2, 2026
Audit-driven cleanup folding in **all 6 open Dependabot PRs** + closing
the 4 high-impact findings from this session's parallel audit run +
addressing all 3 open issues.

## Headline change: 3 docs prescribed a **forbidden** pattern

`docs/validation.md:54,57,156` and `docs/decision-trees.md:76,82` showed
`[Authorize(Roles = "...")]` — explicitly forbidden by `DOCTRINE.md`
(added in PR #110): silently no-ops on Microsoft.Identity.Web JWT
schemes (`MapInboundClaims=false` looks for `ClaimTypes.Role`, Entra
emits short-name `roles`). Readers copying these snippets would deploy a
privilege-escalation bug.

## Six Dependabot PRs absorbed

Each as part of this single squash, with their breakage transitively
fixed:

- **#104** (actions group) — `markdownlint-cli2-action v20→v23`
introduced new MD060 enforcement. Realigned 5 doc tables + disabled
MD060 in `.markdownlint.yaml` (emoji-width breaks 'aligned' detection).
- **#105** Microsoft.Identity.Web 4.8 → 4.9
- **#106** Azure.Monitor.OpenTelemetry.Exporter 1.7 → 1.8
- **#107** Meziantou.Analyzer + SonarAnalyzer.CSharp
- **#108** Microsoft.NET.Test.Sdk 18.4.0 → 18.5.1
- **#109** Scalar.AspNetCore 2.14.4 → 2.14.9

## All 4 audit waves

- **A — Doc doctrine**: validation.md + decision-trees.md fixed;
operations.md env-rename runbook marked historical.
- **B — Test coverage** (+21 new tests, 72 → 93):
- new `EntraAuthForwardedHeadersExtensionsTests` (X-Forwarded-* +
ForwardLimit cap)
- rate-limiter long-form claim Theory
(`http://schemas.microsoft.com/identity/claims/{tid,oid,appid}`) +
Retry-After RFC 6585 + 2-user partition isolation
- claims-challenge RFC 7235 edge-case Theory (case-insensitive params,
comma-in-quoted, empty Bearer, multi-Bearer first-wins, non-Bearer
scheme)
- **bug fix surfaced by Retry-After test**: `MetadataName.RetryAfter`
isn't always populated; falls back to `opts.Window` so 429 responses
always carry the header.
- **C — Infra**:
- `log-analytics.bicep` `retentionInDays` parameterized (prod=90d audit
floor, others=30d)
- new `modules/budget.bicep` (Microsoft.Consumption/budgets,
Forecasted+Actual at 80/100%, prod $50/mo, others $10/mo)
- new `drift-detection.yml` workflow (weekly `az deployment group
what-if`, matrix [ci, ppe], `::warning::` on drift)
  - container-app `transport='https'` for prod
- **D — Polish**:
- `DownstreamApiClient.ProbeAsync` `ConfigureAwait(false)` (library
code)
- `cd-cleanup.yml` PPE auth failure fixed via pre-check before
`azure/login`

## Issues closed

- **#80** — re-spiked twice (xunit.v3 3.2.2 + M.T.E.* still
incompatible). Closing as `wontfix`. Added `Microsoft.Testing.*` to
dependabot test-group so future bumps land grouped.
- **#83** — keeping open as a focused follow-up (WAF<Program> harness
migration is independent doctrine work; existing `IHostBuilder +
TestServer` test covers the same matrix).
- **#85** — keeping open as a focused follow-up (kitchen-worker → ACA
Job is real architectural change; new module + permission-grant rewiring
+ CD pipeline change deserves its own PR).

## Verification

| Gate | Result |
|---|---|
| `dotnet test EntraAuthPatterns.slnx` | **93/93** |
| `az bicep build` (every `.bicep` + `.bicepparam`) | clean |
| `actionlint` | clean |
| `shellcheck` | clean |
| `markdownlint-cli2` (CI version) | clean |

Co-authored-by: mghabin <81494213+MohammadGhabin@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@mghabin
Copy link
Copy Markdown
Owner

mghabin commented May 2, 2026

Superseded by PR #111 (admin-merged as 8577b0b) — bump folded into the audit-driven cleanup wave alongside transitive fixes (markdownlint v23 MD060 realignment, RFC 6585 Retry-After bug fix, etc.).

@mghabin mghabin closed this May 2, 2026
@mghabin mghabin deleted the dependabot/nuget/analyzers-dfa7faf477 branch May 2, 2026 16:00
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 2, 2026

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

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.

1 participant