Skip to content

chore(deps): bump the go-dependencies group across 1 directory with 5 updates - #12

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-79cef81a14
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-79cef81a14

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 13, 2026 •

Copy link
Copy Markdown

Bumps the go-dependencies group with 4 updates in the / directory: github.com/charmbracelet/x/ansi, github.com/cloudapp3/tgbot, github.com/modelcontextprotocol/go-sdk and golang.org/x/crypto.

Updates github.com/charmbracelet/x/ansi from 0.11.6 to 0.11.8

Commits
  • 00c6608 fix(wcwidth): measure wcwidth per codepoint (#933)
  • 240ce7b chore: lint cellbuf (#944)
  • c2cf573 chore(ansi): lint (#943)
  • 3755eba chore(deps): bump github.com/charmbracelet/x/xpty (#932)
  • 75eb341 chore(deps): bump github.com/mattn/go-runewidth (#925)
  • 7e2d3e6 fix(xpty): report context cancellation in WaitProcess
  • 41c9e6b chore(deps): bump github.com/mattn/go-runewidth (#924)
  • 482a565 chore(powernap): update lsp configs from nvim-lspconfig
  • 3eef36e chore(deps): bump github.com/bits-and-blooms/bitset (#914)
  • 872754a chore(deps): bump golang.org/x/sys (#909)
  • Additional commits viewable in compare view

Updates github.com/cloudapp3/tgbot from 0.1.0 to 0.2.0

Release notes

Sourced from github.com/cloudapp3/tgbot's releases.

v0.2.0

tgbot v0.2.0

This release updates the generated SDK to Telegram Bot API 10.2 and fixes several public result types that did not match Telegram's JSON responses. It also hardens long polling, request deadlines, multipart uploads, webhook examples, and generated-code verification while keeping the runtime dependency set at standard library only.

Breaking changes

Batch method results

The following methods now return slices, matching the official API:

  • CopyMessages: []MessageId instead of MessageId
  • ForwardMessages: []MessageId instead of MessageId
  • SendMediaGroup: []Message instead of Message
  • GetUserPersonalChatMessages: []Message instead of Message

Callers must iterate the returned values or select the element they need.

Message or Boolean results

Methods documented by Telegram as returning Message or True now return MessageOrBool instead of any:

  • EditMessageCaption
  • EditMessageLiveLocation
  • EditMessageMedia
  • EditMessageReplyMarkup
  • EditMessageText
  • SetGameScore
  • StopMessageLiveLocation

Use AsMessage() or AsBool() to inspect the active result variant.

Upload-capable generated fields

Upload-capable fields inside generated Input* structs now use InputFile instead of string. This includes media, thumbnails, covers, profile photos, story content, and stickers. Existing file IDs and URLs should be migrated to FileFromID(...) and FileFromURL(...); local paths and readers can use FileFromPath(...) and FileFromReader(...).

Public struct literals

APIError adds a trailing Parameters *ResponseParameters field, and ext.Context adds private propagation state. External unkeyed literals for either type no longer compile. Use keyed literals such as APIError{StatusCode: code} and ext.Context{Bot: bot, Update: update}; keyed literals remain source-compatible with these changes.

Polling behavior

  • The root UpdatePoller.Updates() stream is opt-in and is enabled on its first call.
  • A poller with no root stream and no subscriptions waits without issuing getUpdates requests.
  • Registering a subscription wakes a running poller, and subscription-only use no longer depends on draining the root stream.
  • An update returned by an in-flight request is retained if the last sink disappears before local dispatch; the offset advances only after the update is processed by an active sink.
  • Unsubscribe() interrupts a blocked delivery and closes the subscription channel before returning.
  • Subscription filters execute outside the poller's global lock.

For startup without a fetch window, create the poller with NewUpdatePoller, register subscriptions, then call Start.

... (truncated)

Changelog

Sourced from github.com/cloudapp3/tgbot's changelog.

[0.2.0] - 2026-07-19

See docs/releases/v0.2.0.md for the full notes.

Changed

  • Generated SDK aligned with Telegram Bot API 10.2.
  • Batch methods (SendMediaGroup, ForwardMessages, CopyMessages, GetUserPersonalChatMessages) return slices, matching the official API.
  • Methods documented as returning Message | True now return MessageOrBool instead of any; inspect with AsMessage() / AsBool().
  • Upload-capable fields in generated Input* structs use InputFile.
  • Long polling waits without issuing getUpdates until a sink exists, keeps offset semantics conservative, and closes subscription channels on Unsubscribe().
  • Default request deadlines: 30s ordinary calls, getUpdates.timeout + 5s long polling, 10m multipart uploads; caller deadlines are preserved.
  • Multipart bodies stream through io.Pipe; interrupted uploads abort without waiting on a blocked source reader.
  • Added retry governance (WithRetryPolicy, request observers), safe telemetry redaction, and tgbottest fake API server improvements.

Breaking

  • The changes above are source-incompatible for v0.1.0 callers where noted; see the release notes for migration guidance.
Commits
  • 920e9c5 fix: interrupt stalled fake server requests
  • 5c8c441 chore: add API and release governance
  • 8cbef30 feat: harden requests and update dispatch
  • 4790df3 feat: align SDK with Telegram Bot API 10.2
  • 84e955f docs(readme): refresh multilingual README copy and badges
  • See full diff in compare view

Updates github.com/modelcontextprotocol/go-sdk from 1.6.1 to 1.7.0

Release notes

Sourced from github.com/modelcontextprotocol/go-sdk's releases.

v1.7.0

This release brings full support for protocol version 2026-07-28. The wire protocol is largely rewritten: a stateless model with per-request _meta, a new server/discover RPC replacing the initialize handshake, multi-round-trip requests (MRTR) replacing server-initiated calls, a unified subscriptions/listen stream replacing free-floating change notifications, standardised HTTP headers, and the formal deprecation of the roots, sampling, and logging features.

The streamable HTTP transport accepts requests at protocol version 2026-07-28 only when StreamableHTTPOptions.Stateless = true. If you want to expose the new protocol over HTTP, set Stateless = true; if you want to keep stateful sessions, your clients will negotiate down to 2025-11-25.

Backward compatibility with 2025-11-25 and earlier is preserved on every endpoint. The SDK negotiates the highest mutually-supported version at connect time. The new protocol is enabled by default for new clients; existing legacy clients and servers continue to work unchanged.

This release consolidates everything shipped in v1.7.0-pre.1, v1.7.0-pre.2, and v1.7.0-pre.3. Thank you to everyone who exercised the pre-releases and filed feedback.

v1.7.0-pre.3 is already successfully used by GitHub, serving more than half a million users.

Make MCP Stateless (SEP-2575) & Sessionless (SEP-2567)

The initialize/notifications/initialized handshake is removed in 2026-07-28. Each request now carries _meta.io.modelcontextprotocol/{protocolVersion,clientInfo,clientCapabilities} so the server can validate the peer without state. A new server/discover RPC lets clients learn the server's supported versions and capabilities up front; the SDK falls back to legacy initialize if discover fails. Resumability (Last-Event-ID, standalone GET) is removed; ping, logging/setLevel, resources/subscribe, and resources/unsubscribe are also removed on this revision and rejected with MethodNotFound.

Subscriptions listen (SEP-2575)

The legacy tools/list_changed, prompts/list_changed, resources/list_changed, and resources/updated notifications are replaced by a single long-lived subscriptions/listen request whose response stream multiplexes every change notification the client opted into, each tagged with io.modelcontextprotocol/subscriptionId. The SDK opens this stream automatically on Client.Connect when the corresponding list-changed handler is set; servers route notifications only to subscribed sessions.

Multi Round-Trip Requests (SEP-2322)

Server-to-client requests for elicitation, sampling, and roots are no longer issued as fresh JSON-RPC requests. Instead a tool/prompt/resource handler returns an InputRequiredResult whose inputRequests field carries the requests; the client fulfils each and retries the original call with inputResponses populated. The SDK ships client- and server-side middleware that handles this transparently in both directions, including a server-side compatibility shim that lets MRTR handlers also work against legacy clients.

Cacheable list results (SEP-2549)

tools/list, prompts/list, resources/list, resources/templates/list, resources/read, and server/discover results now carry ttlMs and cacheScope fields. Clients honour them as freshness hints to reduce polling; shared intermediaries use cacheScope to decide whether responses may be cached.

HTTP standardization (SEP-2243)

The streamable HTTP transport now mirrors selected fields from the JSON-RPC body into HTTP headers (Mcp-Method, Mcp-Name, Mcp-Protocol-Version, Mcp-Param-*) so network intermediaries can route and observe MCP traffic without deep packet inspection. Tools can declare per-parameter passthrough via x-mcp-header annotations on their input schema. Body↔header mismatches return -32020 HeaderMismatch.

... (truncated)

Commits

Updates golang.org/x/crypto from 0.54.0 to 0.57.0

Commits
  • 3f62bf1 go.mod: update golang.org/x dependencies
  • 86efde5 ssh: reject unexpected message types on established channels
  • a6cdac6 ssh: drop traffic on undecided channels
  • 39dc44e ssh: don't skip the source-address critical option in CheckCert
  • afebf4c x509roots/fallback/bundle: make subjectsEqual stricter on Go 1.27+
  • 89f4e9b x509roots/fallback: update bundle
  • 71488c4 ssh/knownhosts: compare only public key portions for revocation
  • 82adefa ssh: synchronize unexpected response test
  • c757c98 all: upgrade go directive to at least 1.26.0 [generated]
  • 593c81a ssh: correctly ignore pre-banner lines
  • Additional commits viewable in compare view

Updates golang.org/x/sys from 0.47.0 to 0.48.0

Commits
  • 613e257 cpu: add riscv64 hwprobe drift test
  • 6f7b10f unix: add MLOCK_ONFAULT constant
  • 663e7c8 cpu: add basic support for GOARCH=sparc64
  • de5f12f cpu: add ppc64le POWER10 detection
  • 80e8acf unix: run go fix
  • 1e3c182 unix: add IPMI interface
  • d429e20 unix: stop generating sparc termbits from the generic header
  • bd3bddf unix: add missing HWTSTAMP_* constants
  • e812f53 windows: add SO_SNDTIMEO constant for socket options
  • f6989c5 unix: align Ifreq so its union accessors cannot fault
  • 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

… updates

Bumps the go-dependencies group with 4 updates in the / directory: [github.com/charmbracelet/x/ansi](https://github.com/charmbracelet/x), [github.com/cloudapp3/tgbot](https://github.com/cloudapp3/tgbot), [github.com/modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk) and [golang.org/x/crypto](https://github.com/golang/crypto).


Updates `github.com/charmbracelet/x/ansi` from 0.11.6 to 0.11.8
- [Commits](charmbracelet/x@ansi/v0.11.6...ansi/v0.11.8)

Updates `github.com/cloudapp3/tgbot` from 0.1.0 to 0.2.0
- [Release notes](https://github.com/cloudapp3/tgbot/releases)
- [Changelog](https://github.com/cloudapp3/tgbot/blob/master/CHANGELOG.md)
- [Commits](cloudapp3/tgbot@v0.1.0...v0.2.0)

Updates `github.com/modelcontextprotocol/go-sdk` from 1.6.1 to 1.7.0
- [Release notes](https://github.com/modelcontextprotocol/go-sdk/releases)
- [Commits](modelcontextprotocol/go-sdk@v1.6.1...v1.7.0)

Updates `golang.org/x/crypto` from 0.54.0 to 0.57.0
- [Commits](golang/crypto@v0.54.0...v0.57.0)

Updates `golang.org/x/sys` from 0.47.0 to 0.48.0
- [Commits](golang/sys@v0.47.0...v0.48.0)

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/x/ansi
  dependency-version: 0.11.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/cloudapp3/tgbot
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/modelcontextprotocol/go-sdk
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/crypto
  dependency-version: 0.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Sep 13, 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 go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants