Skip to content

Bump the azure group with 1 update#106

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/azure-ab330932fb
Closed

Bump the azure group with 1 update#106
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/azure-ab330932fb

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 Azure.Monitor.OpenTelemetry.Exporter from 1.7.0 to 1.8.0.

Release notes

Sourced from Azure.Monitor.OpenTelemetry.Exporter's releases.

1.8.0

1.8.0 (2026-04-29)

Other Changes

  • Pulled in OpenTelemetry dependency updates.

Commits viewable in compare view.

Dependabot compatibility score

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 Azure.Monitor.OpenTelemetry.Exporter from 1.7.0 to 1.8.0

---
updated-dependencies:
- dependency-name: Azure.Monitor.OpenTelemetry.Exporter
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: azure
...

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:02
@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
@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

@mghabin mghabin deleted the dependabot/nuget/azure-ab330932fb branch May 2, 2026 16:00
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