cloudevents/sdk-go

NATS Jetstream protocol binding - support new jetstream package

g41797 opened this issue · 4 comments

According to go.mod sdk uses old version of nats package:

github.com/nats-io/nats.go v1.13.1-0.20220308171302-2f2f6968e98d

Current version:

github.com/nats-io/nats.go v1.30.0

it's important to note, that new jetstream package was added to nats.go

If you need this improvement - please assign this issue to me

@g41797
BTW, I tried to update the nats.go packages during my PR: #929
There is a requirement to be backwards compatible with go 1.17 (which is pretty old at this point)
It looks like nats.go can be safely upgraded to v1.22.0 if I am reading the history correctly:
nats-io/nats.go@ba8a129
which went into nats.go v1.23.0

Also, you will need to update all of the packages that use nats.go, as some of the packages cross boundaries like the tests.

  • latest nats.go/jetstream requires go 1.20
  • nats.go v1.23 does not contain jetstream package

regarding tests - i implemented some tests for jetstream based code
nats allows embedding mode useful during test - looks this mode is not used in ce sdk-go
i'd like to contribute
any ideas

this was the comment on my PR:

@stephen-totty-hpe we are not using Go 1.18 w/ Generics yet. Can you please revert the mod related changes to dependencies not using Generics? Might have to use an older version of Go (1.17) to do that. Reason being that we state 1.17 as supported version/compatibility in this SDK for users.

i am pretty sure that generics are not used in nats
let's leave jetstream aside
did you think about another improvement/feature?