Skip to content

Tags: dominic1988-lgtm/go-sdk

Tags

v1.5.0

Toggle v1.5.0's commit message

Verified

This tag was signed with the committer’s verified signature.
maciej-kisiel Maciej Kisiel
Release v1.5.0

v1.5.0-pre.1

Toggle v1.5.0-pre.1's commit message

Verified

This tag was signed with the committer’s verified signature.
maciej-kisiel Maciej Kisiel
Release v1.5.0-pre.1.

v1.4.1

Toggle v1.4.1's commit message

Verified

This tag was signed with the committer’s verified signature.
maciej-kisiel Maciej Kisiel
Patch release v1.4.1

v1.4.0

Toggle v1.4.0's commit message

Verified

This tag was signed with the committer’s verified signature.
maciej-kisiel Maciej Kisiel
Release v1.4.0.

v1.3.1

Toggle v1.3.1's commit message

Verified

This tag was signed with the committer’s verified signature.
maciej-kisiel Maciej Kisiel
Patch release v.1.3.1

v1.3.0

Toggle v1.3.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
mcp: fix a race condition in logging

Reading the buffer outside of a critical section can lead to data corruption.

v1.3.0-pre.1

Toggle v1.3.0-pre.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
mcp: fix a race condition in logging

Reading the buffer outside of a critical section can lead to data corruption.

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
mcp: switch icon theme to named string type (modelcontextprotocol#733)

To be consistent with logging level, use a named string type for icon
themes. This improves readability / discoverability, and is more
consistent.

Updates modelcontextprotocol#552
For modelcontextprotocol#725

v1.2.0-pre.2

Toggle v1.2.0-pre.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
mcp: switch icon theme to named string type (modelcontextprotocol#733)

To be consistent with logging level, use a named string type for icon
themes. This improves readability / discoverability, and is more
consistent.

Updates modelcontextprotocol#552
For modelcontextprotocol#725

v1.2.0-pre.1

Toggle v1.2.0-pre.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
mcp: don't break the streamable client connection for transient errors (

modelcontextprotocol#723)

When POST requests in the streamableClientConn return a transient error,
return this error to the caller rather than permanently breaking the
connection.

This is achieved by using the special sentinel ErrRejected error to the
jsonrpc2 layer. In doing so, the change revealed a pre-existing bug:
ErrRejected had the same code as ErrConnectionClosing, and
jsonrpc2.WireError implements errors.Is, so the two sentinel values
could be conflated. This is fixed by using a new internal code.

There's more to do for modelcontextprotocol#683: we should also retry transient errors in
handleSSE.

For modelcontextprotocol#683