Skip to content

Releases: coinbase/mesh-sdk-go

Update docs to mesh, add header forwarder

18 Oct 18:32
bad12fa
Compare
Choose a tag to compare

Docs update

We publicly renamed Rosetta to Mesh, this release contains all the docs updates for that rename

Header Forwarding

Why

In order to support some common use cases, Mesh servers need the ability to pass request headers through to the native nodes, and to return headers from native node requests back to the caller.

Use cases:

  • passing a client ID header to the nodes — this client ID shouldn't originate with the Mesh server since it may have many different callers, so it should be passed through to the native node requests
  • sticky session cookies — to support sticky sessions on native nodes, AWS uses cookies. Cookies are managed by the Cookie and Set-Cookie headers, which will need to be passed from the caller to the native node, and returned from the native node ALB to the caller

Solution

The HeaderForwarder type extracts headers from potentially many native node requests and adds them to a Mesh response. HeaderForwarder can be injected into native node network requests as an http.RoundTripper, and can be applied to Mesh servers as middleware

A few key features:

  • opt-in — users of this library can choose to use or not use this feature
  • implements http.RoundTripper so that it can be used to create an http.Client or other client
  • implements a common middleware pattern: func(http.Handler) http.Handler
  • assigns every request a unique ID (which is used to associate headers from native node responses back to Mesh request/responses)
  • allows forwarding only specific headers

Changelog

Full changelog: v0.8.5...v0.8.6

Add the ability to create new generic asserter

10 Apr 21:07
14fc343
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.4...v0.8.5

New Generic Rosetta Client

21 Feb 19:46
fa62d03
Compare
Choose a tag to compare

Add a new asserter client with ignoring rosetta spec validation.

Generic improvements

01 Feb 18:54
294474a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.2...v0.8.3

Generic improvements

02 Dec 20:35
255864d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.1...v0.8.2

Refactor of error handling and badger db in-memory mode

20 Sep 21:06
1cc6016
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.0...v0.8.1

Error Handling Optimization

09 Sep 15:56
7712c7d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.11...v0.8.0

Update Account parser logic and library upgrades

08 Jun 20:52
e2d4265
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.9...v0.7.10

upgrade to resolve ambiguous dependency issues

29 Apr 17:51
8fa4542
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.8...v0.7.9

Validation changes and dependency management

13 Apr 20:02
d1ff359
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.6...v0.7.8