EventStore-Client-Go icon indicating copy to clipboard operation
EventStore-Client-Go copied to clipboard

Go Client for Event Store version 20 and above.

Results 10 EventStore-Client-Go issues
Sort by recently updated
recently updated
newest added

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.21.0 to 0.23.0. Commits c48da13 http2: fix TestServerContinuationFlood flakes 762b58d http2: fix tipos in comment ba87210 http2: close connections when receiving too many headers ebc8168 all: fix...

dependencies

I make the following function call in my codebase ``` _, err = e.client.AppendToStream( ctx, streamID, appendOptions, esdbEvents..., ) ``` When esdbEvents contains more than one event, anything I put...

Changed: Support different runtime environments out-of-the-box. Changed: Remove expectation oriented tests. For the `dispatch` action you can provide the environment you want to test so if you chose `staging`, GHA...

Normally you would expect ok to be true, if a type assertion is correct, see e.g.: https://go.dev/tour/methods/15 However for the FromError method the return value is false, when the underlying...

``` // PersistentAllSubscriptionOptions options for most of the persistent subscription requests. type PersistentAllSubscriptionOptions struct { ... // Requires the request to be performed by the leader of the cluster. RequiresLeader...

Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.7.12 to 1.7.27. Release notes Sourced from github.com/containerd/containerd's releases. containerd 1.7.27 Welcome to the v1.7.27 release of containerd! The twenty-seventh patch release for containerd 1.7 contains various...

dependencies
go

Bumps [golang.org/x/net](https://github.com/golang/net) from 0.30.0 to 0.36.0. Commits 85d1d54 go.mod: update golang.org/x dependencies cde1dda proxy, http/httpproxy: do not mismatch IPv6 zone ids against hosts fe7f039 publicsuffix: spruce up code gen and...

dependencies
go

Looks like the following: ``` eventData := esdb.EventData{ ContentType: esdb.ContentTypeJson, EventType: "TestEvent", Data: data, } ``` in https://github.com/EventStore/EventStore-Client-Go/blob/c29aa7d3ce9c0aadc7d2bfa3dd060f2865efb227/samples/quickstart.go#L42C21-L42C36 is incorrect , does it have to be `int` as in below?...