Skip to content

Bump the nuget-all group with 10 updates#643

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/samples/dotnet/Agent-Framework/nuget-all-efc2d19c34
Open

Bump the nuget-all group with 10 updates#643
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/samples/dotnet/Agent-Framework/nuget-all-efc2d19c34

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Updated Azure.Monitor.OpenTelemetry.Exporter from 1.7.0 to 1.8.2.

Release notes

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

1.8.2

1.8.2 (2026-06-30)

Features Added

  • Added support for the Microsoft OpenTelemetry distro's SDK statistics: a new internal meter subscription and an AppContext switch (Azure.Monitor.OpenTelemetry.Exporter.RouteSdkStatsToDistroEndpoint) that lets the distro redirect SDK statistics to its own ingestion path. The ingestion destination and an on/off signal are resolved at startup by fetching a remote configuration; on success the configured destination is used, an explicit remote disable signal turns SDK statistics off, and any other outcome falls back to the existing region-derived ingestion endpoint so SDK statistics keep flowing. The AppContext switch has no effect on Statsbeat for callers that do not opt in.
    (#​59811)

  • Subscribed the Statsbeat MeterProvider to the Microsoft OpenTelemetry distro's Network SDKStats meter (MicrosoftOpenTelemetryNetworkSdkStatsMeter) so distro-emitted Network statistics flow through the existing Statsbeat cadence when the distro runs with a non-Azure-Monitor exporter.
    (#​60209)

  • Subscribed the Statsbeat MeterProvider to the Microsoft OpenTelemetry distro's Feature SDKStats meter (MicrosoftOpenTelemetryFeatureSdkStatsMeter) so distro-emitted Feature statistics reach the Statsbeat ingestion path. The distro uses an independent, spec-aligned bit map to avoid collisions with the classic Application Insights SDK's FeatureStatsbeatMeter.
    (#​59529)

  • Added Network SDKStats reporting, emitting the short-interval Network statistics defined in the Application Insights SDKStats spec on a 15-minute cadence: Request_Success_Count, Request_Failure_Count, Request_Duration, Retry_Count, Throttle_Count, and Exception_Count, each with the spec-defined dimensions (including host, statusCode, and exceptionType).
    (#​59909, #​60018)

Other Changes

  • Updated customer SDK stats dimension key names to use camelCase (computeType, telemetryType, dropCode, dropReason, retryCode, retryReason).
    (#​59902)

Commits viewable in compare view.

Updated GitHub.Copilot.SDK from 1.0.0-beta.3 to 1.0.5.

Release notes

Sourced from GitHub.Copilot.SDK's releases.

1.0.5

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.5</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.5")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.5'

Feature: annotation-based tool API (@​CopilotTool)

The Java SDK now includes a high-level, annotation-driven tool API. Annotate methods with @​CopilotTool and parameters with @​CopilotToolParam to define tools — a JSR-269 annotation processor generates metadata at compile time with no runtime reflection. Use ToolDefinition.fromObject() to register tools with minimal boilerplate. (#​1792)

public class WeatherTools {
    `@CopilotTool`("Get the current weather for a given city")
    public String getWeather(
            `@CopilotToolParam`(value = "The city to get weather for", required = true) String city,
            `@CopilotToolParam`(value = "Temperature unit: celsius or fahrenheit", defaultValue = "celsius") String unit) {
        // implementation
    }
}

List<ToolDefinition> tools = ToolDefinition.fromObject(new WeatherTools());
SessionConfig config = new SessionConfig().setTools(tools);

Feature: ToolInvocation injection in @​CopilotTool methods

... (truncated)

1.0.5-preview.1

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.5-preview.0...rust/v1.0.5-preview.1

1.0.5-preview.0

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.4...rust/v1.0.5-preview.0

1.0.4

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.4</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.4")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.4'

Feature: HTTP request callback support

Register a CopilotRequestHandler on the client to intercept every outbound LLM inference HTTP or WebSocket request — for both BYOK and CAPI — and mutate, replace, or fully forward it. Useful for logging, header injection, model substitution, or custom routing. (#​1689, #​1775, #​1784)

final class MyHandler extends CopilotRequestHandler {
    `@Override`
    protected HttpResponse<InputStream> sendRequest(HttpRequest request, CopilotRequestContext ctx) throws Exception {
        HttpRequest mutated = HttpRequest.newBuilder(request, (n, v) -> true)
                .header("X-Debug-Session", ctx.sessionId() == null ? "none" : ctx.sessionId())
                .build();
        return super.sendRequest(mutated, ctx);
    }
}

CopilotClient client = new CopilotClient(
    new CopilotClientOptions().setRequestHandler(new MyHandler()));

Feature: getBearerToken callback for BYOK providers (Managed Identity)

... (truncated)

1.0.2

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.1...rust/v1.0.2

1.0.1

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.1</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.1")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.1'

Feature: @​CopilotExperimental compile-time gate for experimental APIs

Experimental SDK APIs are now guarded by the @​CopilotExperimental annotation. Using them causes a compile error by default; opt in by annotating the consuming class or method with @​AllowCopilotExperimental, or pass -Acopilot.experimental.allowed=true to the Java compiler. (#​1601)

`@AllowCopilotExperimental`
public class MyHandler {
    // may use `@​CopilotExperimental` APIs here
}

Feature: open-canvases snapshot on CopilotSession

CopilotSession.getOpenCanvases() now returns the live set of canvas instances open for the session, bringing the Java SDK to parity with the other SDK languages. The snapshot is seeded from the session create/resume response and kept current via session.canvas.opened and session.canvas.closed events. (#​1606)

List<OpenCanvasInstance> open = session.getOpenCanvases();

Other changes

... (truncated)

1.0.0

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 View on Maven Central

📖 Documentation · Javadoc

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.0</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.0")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.0'

What's Changed

Full Changelog: github/copilot-sdk@java/v1.0.0-beta-12-java.1...java/v1.0.0

1.0.0-beta-12-java.1

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

📖 [Documentation]((github.github.io/redacted) · [Javadoc]((github.github.io/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.0-beta-12-java.1</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.0-beta-12-java.1")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.0-beta-12-java.1'

Feature: slash command responses accessible via RPC

Applications can now retrieve responses from slash commands. Previously the ability to invoke slash commands existed, but responses were not surfaced through the RPC layer. (#​1520)

// Send a slash command and receive its response via the session RPC
CompletableFuture<AssistantMessage> response = session.sendMessage("/my-command args");

Feature: session.mcp.apps.callTool returns JsonNode

session.mcp.apps.callTool() previously returned CompletableFuture<Void> due to a codegen gap; it now correctly returns CompletableFuture<JsonNode>, making the tool result accessible. (#​1523)

JsonNode result = session.rpc().mcp().apps().callTool(params).get();

Generated by Release Changelog Generator · ● 2.2M

1.0.0-beta-10-java.5

Installation

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 [View on Maven Central]((central.sonatype.com/redacted)

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.0-beta-10-java.5</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.0-beta-10-java.5")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.0-beta-10-java.5'

Changes since java/v1.0.0-beta-10-java.4

  • improvement: add reflection-based Jackson round-trip test coverage for all generated event/type classes (#​1509)
  • improvement: fix JaCoCo coverage badge script to use correct generated-types package name (#​1499)
  • improvement: Java release pipeline improvements (#​1514)

New contributors

  • @​examon made their first contribution in #​1323

Full Changelog: github/copilot-sdk@java/v1.0.0-beta-10-java.4...java/v1.0.0-beta-10-java.5

Generated by Release Changelog Generator · ● 2.9M

1.0.0-beta-10-java.4

Installation

i️ Public Preview: This is the official Java SDK for GitHub Copilot. This repository treats the official .NET and Node.js SDKs for GitHub Copilot as reference implementations. These SDKs are all officially supported as GitHub open source projects. The Java implementation follows the backward compatibility guarantees offered by the reference implementations.

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 View on Maven Central

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.0-beta-10-java.4</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.0-beta-10-java.4")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.0-beta-10-java.4'

Changes since java/v1.0.0-beta-10-java.3

  • improvement: fix release pipeline token permissions to enable publishing to Maven Central

Full Changelog: github/copilot-sdk@java/v1.0.0-beta-10-java.3...java/v1.0.0-beta-10-java.4

Generated by Release Changelog Generator · ● 2.7M

1.0.0-beta-10-java.3

Installation

ℹ️ Public Preview: This is the official Java SDK for GitHub Copilot. This repository treats the official .NET and Node.js SDKs for GitHub Copilot as reference implementations. These SDKs are all officially supported as GitHub open source projects. The Java implementation follows the backward compatibility guarantees offered by the reference implementations.

⚠️ Artifact versioning plan: Releases of this implementation track releases of the reference implementation. For each release of the reference implementation, there may follow a corresponding release of this implementation with the same number as the reference implementation. Release identifiers of the reference implementation are in the form vMaj.Min.Micro. For example v0.1.32. The corresponding maven version for the release will be Maj.Min.Micro-java.N, where Maj, Min and Micro are the corresponding numbers for the reference implementation release, and N is a monotonically increasing sequence number starting with 0 for each release. See the corresponding architectural decision record for more information in the docs/adr directory of the source code.

📦 View on Maven Central

Maven

<dependency>
    <groupId>com.github</groupId>
    <artifactId>copilot-sdk-java</artifactId>
    <version>1.0.0-beta-10-java.3</version>
</dependency>

Gradle (Kotlin DSL)

implementation("com.github:copilot-sdk-java:1.0.0-beta-10-java.3")

Gradle (Groovy DSL)

implementation 'com.github:copilot-sdk-java:1.0.0-beta-10-java.3'

Full Changelog: github/copilot-sdk@java/v1.0.0-beta-10-java.1...java/v1.0.0-beta-10-java.3

1.0.0-beta.12

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.0-beta.10...rust/v1.0.0-beta.12

1.0.0-beta.10

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.0-beta.9...rust/v1.0.0-beta.10

1.0.0-beta.9

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust/v1.0.0-beta.8...rust/v1.0.0-beta.9

1.0.0-beta.8

What's Changed

Full Changelog: github/copilot-sdk@rust/v1.0.0-beta.7...rust/v1.0.0-beta.8

1.0.0-beta.7

What's Changed

Full Changelog: github/copilot-sdk@rust/v1.0.0-beta.6...rust/v1.0.0-beta.7

1.0.0-beta.6

What's Changed

1.0.0-beta.4

What's Changed

New Contributors

Full Changelog: github/copilot-sdk@rust-v0.1.0...rust/v1.0.0-beta.4

Commits viewable in compare view.

Updated Microsoft.Agents.AI from 1.10.0 to 1.12.0.

Release notes

Sourced from Microsoft.Agents.AI's releases.

1.11.1

Changes:

  • d9ec5eaab4918612ae0f7ddf11499576bdb510bf update package version (#​6752)
  • e3b64fdc4749256fa2d559be18a41f1a008dd7f6 .NET: [BREAKING] Make all AgentSkillsProvider tools require approval by default (#​6729) [ #​6727 ]
  • 3a5bbb5f8e3991d06fc3fe67fe3b01f2441cab0a .NET: Add DeclarativeWorkflowJsonOptions for AOT-safe declarative workflow checkpointing (#​6745)
  • a7332d69a8ffac3ad6039466d60761c970d7c367 .NET: Fix issue with resuming checkpoint after package version upgrade (#​6670)
  • e57e9455b367b1b83526fdaa21257125baac5d5d Build(deps): Bump hyperlight-sandbox-python-guest in /python (#​6737)
  • d97bc4fe3912cc32b99d654336e543d0ca5ff446 Build(deps): Bump huggingface-hub from 1.20.1 to 1.21.0 in /python (#​6738)
  • 5d57b10b9f2161ed765cbe4b8336604d6db7a6c2 Build(deps): Bump google-genai from 1.75.0 to 2.10.0 in /python (#​6739)
  • 8cd71dd4f62c35d2f868ac1b5d08956e9116f599 Build(deps): Bump fastapi from 0.124.4 to 0.138.0 in /python (#​6740)
  • 5e5dd87c91f0941ad69d247fe00b484644c125f6 Update .NET SDK to 10.0.301 (#​6730)
  • d0be98d649f97ee2b723730ae63ddc1567bb87dc Remove {resource_instructions} and {script_instructions} placeholder mechanism (#​6706)
See More
  • 802fe13053d379d68cb21aed108fa55aaf65ed38 Disable failing durable function integration tests (#​6731)
  • d75f2286f4c234d860919a78bcaf4040b91db0c4 Python: Add Telegram channel for agent-framework-hosting (#​6698) [ #​6588, #​6265 ]
  • ce74c84bdb1f2647fe8a484744ea359bc42e6e0f Python: Preserve OTel parent context for deferred streams (#​6709)
  • 4fb1fb615a1729f5cf1d017427f7fd12ee2ed8d2 Python: Fix Hyperlight CodeAct span parenting (#​6712)
  • 41a9c54bbee3c0724c14d4975b3f0630e0f0d28f Add Foundry project environment variables (#​6721)
  • 9f1ee23a4bcdb92dd9011a1ce778dc25d2dc5f16 Python: [BREAKING] Refactor FileSkillsSource for depth-based discovery and predicate filters (#​6488) [ #​6109 ]
  • 336a19fd326fd3e2d8c580096ca3e5d13a4e1342 .NET: .NET samples: migrate coding samples to Foundry-first AIProjectClient (#​6557)
  • 0283fd00a12af27ad0a7a72b70ce4f2fc8c34629 .NET: Fix hosted agent crash after tool call by rooting session store under $HOME (#​6231) (#​6714)
  • 5627dc0493e525e948e9985adf37baff21574569 docs: Add Python session identity ADR (#​6630)
  • 1df47667eadf0283637cd73b99cda63f13a28df5 Python: surface cache and reasoning token counts for the Bedrock and Gemini connectors (#​6640)
  • 91f639a694f9b70b79328058f284400897b2d0d3 Python: Explicitly emit available_resources and available_scripts in skill content (#​6694) [ #​6348 ]
  • a9e5f6d7985a555d042ff807995da7ca908f86d2 .NET: .NET Foundry: add CreateMcpTool projectConnectionId overload (#​6703)
  • ea7ae1cc00e02918a231cc97e2794b02fcfbb87c .NET: [BREAKING] Support archive-type skills in AgentMcpSkillsSource (#​6631)
  • e049bb569179384f11eb8a1b41d8a987fa416203 .NET: Add IncludeDetailedErrors option for skill script execution (#​6680) [ #​6304 ]
  • dd4b7ff475e467ac4490090eb2436e80b898dd5c .NET: Fix SearchDirectoriesForSkills to stop recursing after finding SKILL.md (#​6686) [ #​6683 ]
  • d5c15f2fe15f00118d818f79b1b532ee4ec52f03 .NET/Python: Purview: prefer token principal for user identity (#​6693)
  • 4cf7ace4463d0b4aa4a320d9671325485433f3a7 Python: track dependency maintenance PR creation (#​6665)
  • 5fff0df2afda58e4898f6cbe1a18ef4f054b11ff Python: Add load_dotenv to get-started samples and fix chat_response_… (#​6691)
  • acb28a63b5b739f5fdba4d8ac46d8c805f30b56a Python: Fix MCP metadata and tool name handling (#​6656)
  • f2d02e58b3b0e7f7d87353e2c9bf36a5834da665 Python: Add hosting core and Responses channel (#​6580)
  • 36420c515eb80015de1a5ff2098db5f6ce041aab Python: Align serialized tool format to OTel GenAI tool def format (#​6556)

This list of changes was auto generated.

1.11.0

Changes:

  • 1109d0bf64f3d1dd1e1f2bcaf3b38912ec7e833b Get date suffix up to date with release date (#​6690)
  • e030fb53ded912d0ce71bd80fe4c0455bc9d5478 .NET: Replace the symlink index entries with regular file entries (#​6687)
  • e6ebba1884238134628ad081249b451c0eb15df9 Add ADR 0029: Skills over MCP implementation design options (#​6679)
  • 7051a4920d87387587a32ab217a2cf35433bece8 Python: Add MCP as a hard dep in Foundry Hosting (#​6634)
  • 15df1152fc8d0617c6e6cfc439a260cfa09fea14 .NET: Add sample for per-run refreshable MCP authentication headers (#​6624) [ #​1631 ]
  • a2018b40f907c012bc5398e9ff36d69897d35d6f Python: [BREAKING] Require approval for file-access tools with read-only auto-approval (#​6599)
  • e4b89373f1cdc2fe6a047fd74d48bf9ab74b951b .NET: Explicitly emit available_resources and available_scripts in skill content (#​6672)
  • 88f0b23fb022b0adf33f5772b4b56a41289db748 .NET: Change A2A default session store to NoopAgentSessionStore (#​6635)
  • 9ba6b3a94e40dd90765719e44f5807a4aed4209e Remove unnecessary declarative logging (#​6677)
  • 2999f7416f7f171e0a8ae78a8d6c747a7174e71c Update package release version (#​6673)
See More
  • 09791533cfc5aa4b862c1d2790d91a1881b222a0 .NET: Emit execute_tool spans by placing OpenTelemetry below FunctionInvokingChatClient (#​6667)
  • 7f2e19ca2ffd2c11047099f853b7b7a3e46cf0b9 Python: Ensure spans created inside sync preparations in streaming call are correctly nested (#​6552)
  • 7b6f582b13436a034ec293d6f663f98dde772076 Python: Agent Harness blog post accompanying samples part 1 (#​6605)
  • dc60722cee1b208b7e91482d3ecc661542cbd342 .NET: Project ToolExecution events as FunctionCallContent/FunctionResultContent in GitHubCopilotAgent streaming (#​6228) [ #​4734, #​5897 ]
  • 2f5a76ab1de1bb4f4710f320bc1074240802bfc2 Fix issue with resuming checkpoint after package version upgrade (#​6636)
  • a7381d8bef5cdffe4b9417a530989616aad4e760 Python: stabilize dependency maintenance final checks (#​6662)
  • d108d4b54937346eb56fa65a7455d1f26fdbd4a7 Python: [BREAKING] Integrate looping into HarnessAgent (#​6607)
  • fd160a77824e98a50661109c12eba981c8b0f16a Python: fix dependency maintenance cutoff (#​6658)
  • ad3c1535c4cdb4b898161a1e95c4f5bab8c01917 fix: propagate EnableSensitiveData to auto-wired inner OpenTelemetryChatClient (#​6096) [ #​5873 ]
  • 10b7d08bff96502229e102f5c3f0474940871124 .NET: fix(hosting): emit url_citation annotation events from streamed AI Search responses (#​6649) [ #​6641 ]
  • fc3111c391afd5451c055a86d5cfd37ffab59617 Python: Add FoundryAgent conversation session helper (#​6623)
  • 098e52158655561c18a9e2afadea6b63374c45e3 .NET: Bring Hosted-Toolbox sample to parity with sibling hosting samples (#​6633)
  • 7435dd48d0e13811ade0f112f1a1aa2afc4b469d Python: harden Hyperlight output capture against symlinks (#​6601)
  • 148f57020aaa9aabf797cdd5f0a42249972cd7ce Python: host MAF workflows on a standalone Durable Task worker (#​6418) [ #​6608 ]
  • 89d19a23704713b1f214e3e229b800cba9ac84bd .NET: Migrate 01-get-started samples to Foundry as canonical default (#​6555)
  • c81590234413c3ece097c486ebdf9e2c6339b41b .NET: InProcessRunnerContext bugfix for workflows (#​6551)
  • 074ac68a6c284ec9532f118a6593d3a300ef1693 .NET: Harden fan-in barrier checkpoint state and extend resume coverage (#​6574)
  • d049d94b4997782c4aa59ac86eddc8dcdb22dfef Python: consolidate dependency maintenance workflow (#​6570)
  • 41995e265de4183eea07ca14a0cb74baf9337442 Build(deps): Bump anthropic from 0.80.0 to 0.107.1 in /python (#​6396)
  • 2adacb3034013de1f5bb9ccc35af34705a03a92b Bump aiohttp from 3.13.4 to 3.14.1 in /python (#​6395)
  • 6e3836698bcb67db5da4f47cd101ef5868efdcdd Bump Anthropic.Foundry from 0.5.0 to 0.6.0 (#​6057)
  • 0d3e3504f0db55b4826f9efb05cd1f4c57009847 Build(deps): Bump mistralai from 2.4.2 to 2.4.9 in /python (#​6393)
  • 2ba97ebcca7f62764ccc03f5d82f0bdc00386119 Bump openai from 2.24.0 to 2.43.0 in /python (#​6394)
  • 2d0555c5375ba42eb92fb8d783669ffe4bba4b14 Python: re-role trailing assistant message to user for Anthropic compatibility (fixes #​5008) (#​6207) [ #​5934 ]
  • 5145d50be803830e5710592b0e3879a88b264cc7 Python: Fix AG-UI tool history replay sanitization  (#​6581)
  • 7f7c88bfa5b45fd9039837e205d79e08917a3b23 Build(deps): Bump python-multipart from 0.0.26 to 0.0.32 in /python (#​6406)
  • bcef77af6a5e811380d77db731989256b2940cdb .NET: (Durable): Scope workflow status/respond endpoints to route workflow name (#​6608)
  • 54a30571aa62a3c87b1a4ed924796d5d6e553b9c Dotnet - Add support for Foundry Adaptive evals (#​6267) [ #​6101 ]
  • dc445592ed4f4776b98e0e04cff3712dceb02746 Python: [BREAKING] Port FileMemoryProvider and integrate FileMemoryProvider & FileAccess into the harness agent (#​6547)
  • 92823e9e61e6233d049fce925cf4d075f504a0cf .NET: [BREAKING] Require approval for FileAccessProvider tools with auto-approval rules (#​6521)
  • 7a491f8e766a508fef37f3189bbc0a79ff4be3aa Python: Add hosting channel ADRs and spec (#​6578)
  • 015e3bcd3b05f998b9a6a1fe5eb81ed42c2a4c2e .NET: Enabling sequential orchestration to pass entire conversation or only previous output. (#​6554)
  • 6e95517659c34623f6249a52feaf615955a0826b Python: Split type checkers by target (pyright source, 5 checkers on tests/samples) (#​6443) [ #​6275 ]
  • 97bb1d588a074437e5b264a9e98779220ebbc906 Migrate to using issue type bug instead of label bug. (#​6595)
    ... (truncated)

Commits viewable in compare view.

Updated Microsoft.Identity.Client.Extensions.Msal from 4.85.0 to 4.85.2.

Release notes

Sourced from Microsoft.Identity.Client.Extensions.Msal's releases.

4.85.2

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-dotnet@4.85.1...4.85.2

4.85.1

What's Changed

Full Changelog: AzureAD/microsoft-authentication-library-for-dotnet@4.85.0...4.85.1

Commits viewable in compare view.

Updated OpenTelemetry from 1.15.3 to 1.16.0.

Release notes

Sourced from OpenTelemetry's releases.

1.16.0

For highlights and announcements pertaining to this release see: Release Notes > 1.16.0.

The following changes are from the previous release 1.16.0-rc.1.

... (truncated)

1.16.0-rc.1

The following changes are from the previous release 1.15.3.

  • NuGet: OpenTelemetry v1.16.0-rc.1

    • Stop validating View-provided metric stream Name against the instrument
      name syntax, per
      spec clarification.
      (#​7300)

    • Fix incorrect validation of OTEL_BSP_* and OTEL_BLRP_* environment
      variables.
      (#​7187)

    • Fix observable instrument callbacks running once per reader instead of
      once per collection cycle.
      (#​7188)

    • Added exception safety for user-supplied ExemplarReservoir im...

_Descrip...

Description has been truncated

Bumps Azure.Monitor.OpenTelemetry.Exporter from 1.7.0 to 1.8.2
Bumps GitHub.Copilot.SDK from 1.0.0-beta.3 to 1.0.5
Bumps Microsoft.Agents.AI from 1.10.0 to 1.12.0
Bumps Microsoft.Identity.Client.Extensions.Msal from 4.85.0 to 4.85.2
Bumps OpenTelemetry from 1.15.3 to 1.16.0
Bumps OpenTelemetry.Exporter.Console from 1.15.1 to 1.16.0
Bumps OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.15.3 to 1.16.0
Bumps OpenTelemetry.Extensions.Hosting to 1.15.3, 1.16.0
Bumps OpenTelemetry.Instrumentation.AspNetCore to 1.16.0
Bumps OpenTelemetry.Instrumentation.Http from 1.15.1 to 1.16.0

---
updated-dependencies:
- dependency-name: Microsoft.Agents.AI
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: GitHub.Copilot.SDK
  dependency-version: 1.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-all
- dependency-name: Microsoft.Identity.Client.Extensions.Msal
  dependency-version: 4.85.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-all
- dependency-name: Azure.Monitor.OpenTelemetry.Exporter
  dependency-version: 1.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-all
- dependency-name: OpenTelemetry
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Exporter.Console
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Exporter.OpenTelemetryProtocol
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Extensions.Hosting
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-all
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-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 Jul 1, 2026
@github-actions github-actions Bot added the Samples Changes to Samples label Jul 1, 2026
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 Samples Changes to Samples

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants