Releases: rollkit/go-da
Releases · rollkit/go-da
v0.9.0
v0.8.0
v0.7.0
v0.6.1
What's Changed
- proto: rename GetIDs to GetIds by @pepyakin in #51
- chore: add module retraction for accidental v0.6.0 tag by @tzdybal in #97
- feat: add SubmitWithOptions method to the API by @tzdybal in #95
- build(deps): bump google.golang.org/grpc from 1.66.0 to 1.66.2 by @dependabot in #102
- chore: update dependabot.yml by @MSevey in #104
- feat: return timestamp from
GetIDs
by @tzdybal in #103 - chore: update all goversion to goversionfile by @MSevey in #105
Full Changelog: v0.5.2...v0.6.1
v0.5.2
What's Changed
- update ci to use a single GO_VERSION setting in ci_release.yml by @ramin in #19
- build(deps): bump google.golang.org/grpc from 1.60.1 to 1.66.0 by @dependabot in #91
- fix: take care of the case where the requested height is above the head of latest da block height by @yarikbratashchuk in #90
New Contributors
Full Changelog: v0.5.1...v0.5.2
v0.5.0
What's Changed
- docs: update DA.GetProofs doc by @pepyakin in #45
- build(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 by @dependabot in #53
- build(deps): bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 by @dependabot in #43
- da: add jsonrpc proxy by @tuxcanfly in #54
Breaking Changes
proxy
pkgNewClient() *Client
->NewClient(uri, token string) (da.DA, error)
NewClient
now accepts a url e.g.grpc://localhost:26650
and auth token
- Added support for jsonrpc transport pkg
jsonrpc
- Moved grpc transport to pkg
grpc
- Modified pkg
proxy
to handlegrpc
,https
,http
transports
New Contributors
Full Changelog: v0.4.0...v0.5.0
v0.4.0
What's Changed
- feat!: adding Namespace to remaining endpoints by @distractedm1nd in #35
- feat!: GetProofs introduction by @distractedm1nd in #38
Full Changelog: v0.3.0...v0.4.0
v0.3.0
What's Changed
- doc: add readme by @tuxcanfly in #32
- feat: adding SubmitOptions to Submit by @distractedm1nd in #34
New Contributors
- @distractedm1nd made their first contribution in #34
Breaking changes:
- DA interface:
Submit(... gasPrice float64)
->Submit(... opts *SubmitOptions)
- gasPrice replaced with SubmitOptions which includes namespace.
- protobuf:
SubmitRequest {... Namespace namespace = 3; }
- added param namespace
message Namespace { bytes value = 1; }
- added param namespace
Full Changelog: v0.2.0...v0.3.0
Release v0.2.0
0.2.0 (2024-01-12)
What's Changed
- da: add client context by @tuxcanfly in #28
Full Changelog: v0.1.0...v0.2.0
v0.1.0
What's Changed
- da: replace submit options with gas price by @tuxcanfly in #31
Breaking changes
Submit
now accepts afloat64 gasPrice
as the second parameter in place of*SubmitOptions
. See #30
Full Changelog: v0.0.1...v0.1.0