Skip to content

chore(deps-dev): bump the python-minor-patch group with 2 updates - #72

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-minor-patch-996afbeac1
Closed

chore(deps-dev): bump the python-minor-patch group with 2 updates#72
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-minor-patch-996afbeac1

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the python-minor-patch group with 2 updates: anthropic and github-copilot-sdk.

Updates anthropic from 0.112.0 to 0.116.0

Release notes

Sourced from anthropic's releases.

v0.116.0

0.116.0 (2026-07-02)

Full Changelog: v0.115.1...v0.116.0

Features

  • api: add agent-memory-2026-07-22 beta header (e181d5c)

v0.115.1

0.115.1 (2026-07-01)

Full Changelog: v0.115.0...v0.115.1

Chores

  • api: remove some nonfunctional types from the SDKs (5e7c431)

v0.115.0

0.115.0 (2026-06-30)

Full Changelog: v0.114.0...v0.115.0

Features

  • api: add support for Managed Agents event delta streaming, agent overrides, reverse pagination, vault credential injection scoping, and agent and deployment webhook events (8c23f7e)

v0.114.0

0.114.0 (2026-06-30)

Full Changelog: v0.113.0...v0.114.0

Features

  • api: add support for claude-sonnet-5 (b893033)

Bug Fixes

  • agent_toolset: allow absolute paths that resolve inside workdir (#121) (0105529)

v0.113.0

0.113.0 (2026-06-29)

Full Changelog: v0.112.0...v0.113.0

Features

  • api: add support for 20260318 web fetch and support tools (88dbfb1)

... (truncated)

Changelog

Sourced from anthropic's changelog.

0.116.0 (2026-07-02)

Full Changelog: v0.115.1...v0.116.0

Features

  • api: add agent-memory-2026-07-22 beta header (e181d5c)

0.115.1 (2026-07-01)

Full Changelog: v0.115.0...v0.115.1

Chores

  • api: remove some nonfunctional types from the SDKs (5e7c431)

0.115.0 (2026-06-30)

Full Changelog: v0.114.0...v0.115.0

Features

  • api: add support for Managed Agents event delta streaming, agent overrides, reverse pagination, vault credential injection scoping, and agent and deployment webhook events (8c23f7e)

0.114.0 (2026-06-30)

Full Changelog: v0.113.0...v0.114.0

Features

  • api: add support for claude-sonnet-5 (b893033)

Bug Fixes

  • agent_toolset: allow absolute paths that resolve inside workdir (#121) (0105529)

0.113.0 (2026-06-29)

Full Changelog: v0.112.0...v0.113.0

Features

  • api: add support for 20260318 web fetch and support tools (88dbfb1)

Bug Fixes

  • async count_tokens missing output_format/output_config merge block (#162) (122c958)

... (truncated)

Commits
  • d2f6543 release: 0.116.0
  • 4253c06 feat(api): add agent-memory-2026-07-22 beta header
  • 5e98d72 release: 0.115.1
  • 5385af6 chore(api): remove some nonfunctional types from the SDKs
  • e4283c3 release: 0.115.0
  • d1a933e feat(api): add support for Managed Agents event delta streaming, agent overri...
  • 53582ad codegen metadata
  • 6e9f197 release: 0.114.0
  • ab10964 feat(api): add support for claude-sonnet-5
  • 8a004a2 fix(agent_toolset): allow absolute paths that resolve inside workdir (#121)
  • Additional commits viewable in compare view

Updates github-copilot-sdk from 1.0.4 to 1.0.5

Release notes

Sourced from github-copilot-sdk's releases.

rust/v1.0.5

What's Changed

New Contributors

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

v1.0.5

Feature: MCP OAuth host token handlers

SDK applications can now handle OAuth challenges from MCP servers that require host-provided authentication. Register an onMcpAuthRequest callback on the session config and the SDK will invoke it whenever an MCP server responds with a 401 WWW-Authenticate challenge; return an access token (or cancel the request). Supports initial auth, refresh, reauth, and upscope flows across all SDKs. (#1669)

const session = await client.createSession({
    onMcpAuthRequest: async (request) => ({
        accessToken: await myIdentityProvider.getToken(request.serverUrl),
    }),
});
var session = await client.CreateSessionAsync(new SessionConfig
{
    OnMcpAuthRequest = async ctx =>
        McpAuthResult.FromToken(new McpAuthToken
        {
            AccessToken = await myIdentityProvider.GetTokenAsync(ctx.ServerUrl)
        }),
});

Feature: session options for citations, excluded agents, and spending limits

Three additional session configuration options are now available across all SDKs. (#1865)

const session = await client.createSession({
    enableCitations: true,
    excludedBuiltinAgents: ["github-search"],
    sessionLimits: { maxAiCredits: 10 },
});

... (truncated)

Changelog

Sourced from github-copilot-sdk's changelog.

v1.0.5 (2026-07-01)

Feature: MCP OAuth host token handlers

SDK applications can now handle OAuth challenges from MCP servers that require host-provided authentication. Register an onMcpAuthRequest callback on the session config and the SDK will invoke it whenever an MCP server responds with a 401 WWW-Authenticate challenge; return an access token (or cancel the request). Supports initial auth, refresh, reauth, and upscope flows across all SDKs. (#1669)

const session = await client.createSession({
    onMcpAuthRequest: async (request) => ({
        accessToken: await myIdentityProvider.getToken(request.serverUrl),
    }),
});
var session = await client.CreateSessionAsync(new SessionConfig
{
    OnMcpAuthRequest = async ctx =>
        McpAuthResult.FromToken(new McpAuthToken
        {
            AccessToken = await myIdentityProvider.GetTokenAsync(ctx.ServerUrl)
        }),
});

Feature: session options for citations, excluded agents, and spending limits

Three additional session configuration options are now available across all SDKs. (#1865)

const session = await client.createSession({
    enableCitations: true,
    excludedBuiltinAgents: ["github-search"],
    sessionLimits: { maxAiCredits: 10 },
});
var session = await client.CreateSessionAsync(new SessionConfig
{
    EnableCitations = true,
    ExcludedBuiltInAgents = ["github-search"],
    SessionLimits = new SessionLimitsConfig { MaxAiCredits = 10 },
});

Other changes

  • improvement: [All SDKs] rename BYOK callback field getBearerTokenbearerTokenProvider; add sessionId to ProviderTokenArgs for per-session token scoping (#1796)
  • bugfix: [Node] fix MCP OAuth registerInterest sent before session.resume, causing "Session not found" errors when resuming a session with onMcpAuthRequest (#1861)

... (truncated)

Commits
  • 62ffcfe docs: add session limits guidance (#1856)
  • 1047dfb docs: update billing information for GitHub Copilot SDK usage (#1854)
  • cbc3026 Fix MCP OAuth resume order in Node.js SDK (#1861)
  • 64dcd25 Expose new session options across SDKs (#1865)
  • b168366 Update @​github/copilot to 1.0.67 (#1860)
  • cc66206 Update @​github/copilot to 1.0.66 (#1859)
  • 6189f84 [maven-release-plugin] prepare for next development iteration
  • 5657aab [maven-release-plugin] prepare release java/v1.0.5
  • d98a6c5 docs: update version references to 1.0.5
  • 91eaa4b Add MCP OAuth lifecycle SDK support (#1669)
  • Additional 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 the python-minor-patch group with 2 updates: [anthropic](https://github.com/anthropics/anthropic-sdk-python) and [github-copilot-sdk](https://github.com/github/copilot-sdk).


Updates `anthropic` from 0.112.0 to 0.116.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-python@v0.112.0...v0.116.0)

Updates `github-copilot-sdk` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/github/copilot-sdk/releases)
- [Changelog](https://github.com/github/copilot-sdk/blob/main/CHANGELOG.md)
- [Commits](github/copilot-sdk@v1.0.4...v1.0.5)

---
updated-dependencies:
- dependency-name: anthropic
  dependency-version: 0.116.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-minor-patch
- dependency-name: github-copilot-sdk
  dependency-version: 1.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 19, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jul 19, 2026
@dependabot
dependabot Bot deleted the dependabot/uv/python-minor-patch-996afbeac1 branch July 19, 2026 16:34
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 python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants