Skip to content

Bump Microsoft.Extensions.Configuration.Json from 10.0.2 to 10.0.3#12

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/Microsoft.Extensions.Configuration.Json-10.0.3
Closed

Bump Microsoft.Extensions.Configuration.Json from 10.0.2 to 10.0.3#12
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/nuget/Microsoft.Extensions.Configuration.Json-10.0.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 23, 2026

Copy link
Copy Markdown
Contributor

Updated Microsoft.Extensions.Configuration.Json from 10.0.2 to 10.0.3.

Release notes

Sourced from Microsoft.Extensions.Configuration.Json's releases.

No release notes found for this version range.

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.Json
  dependency-version: 10.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Feb 23, 2026
@dependabot @github

dependabot Bot commented on behalf of github Feb 23, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #13.

@dependabot dependabot Bot closed this Feb 23, 2026
@dependabot
dependabot Bot deleted the dependabot/nuget/Microsoft.Extensions.Configuration.Json-10.0.3 branch February 23, 2026 03:51
Aaronontheweb added a commit that referenced this pull request Jun 25, 2026
…out (#1472 step 5) (#1487)

After #1481 the off-thread StreamingToolWatchdog was used for exactly one thing:
bounding opaque tool calls with a flat wall-clock budget. In that mode its two
shared Volatile fields were written once and never changed, so the 1s polling timer
only ever computed "has the budget elapsed since start?" — which is exactly what a
CancellationTokenSource timeout token does. (The "why is this volatile instead of
actor state?" smell.)

Replace it with a TimeProvider-driven timeout token — new CancellationTokenSource(
timeout, timeProvider) linked to the caller token — draining through the same
DrainToCompletionAsync helper self-monitoring tools already use. A budget trip is
converted to the same TimeoutException message; caller (turn/user) cancellation is
rethrown unchanged (preserves #1481). Per call, so a slow tool times out without
affecting siblings, and TimeProvider-virtualizable so tests stay deterministic.

- Delete StreamingToolWatchdog, ToolWatchdogBudget, ToolWatchdogResetMode — removes
  the volatile, the polling timer, and the dead ResetOnItem/FirstItem/InterItem
  machinery (review follow-up #13).
- Unify the two drain paths on DrainToCompletionAsync (review follow-up #11).
- Point SpawnAgentStreamingTests at the production drain instead of the watchdog
  (review follow-up #12).
- Opaque wall-clock timeout + concurrent independence are already covered at the
  pipeline level (FakeTimeProvider); add one test for the stream-without-a-completion-
  item contract; gut the watchdog unit tests, keeping the INetclawTool default-adapter
  test.

No behavior change: opaque tools still time out at the same wall-clock budget with the
same message and per-tool isolation; self-monitoring tools are untouched. The spec-of-
record ("Per-call liveness by tool class") already says opaque tools get one wall-clock
budget — only the mechanism changed.

Net: roughly -150 LOC. Part of #1472.
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