Zeebe github repo is now Camunda (Zeebe Go Client Affected)

Hello Community Folk

Wise men once said “Istanbul is Constantinople” following in those footsteps I can happily report that Zeebe is Camunda! Specifically with regard to how it’s github repo is named.

So if you’re looking forgithub.com/camunda/zeebe it’s now in github.com/camunda/camunda

If you’d like to read more about this change we have this blog post, containing lots of details.

This mostly affects the users of the Zeebe Go Client because you’ll need to change how the module is imported:

Something like this:

module example.com/mymodule

require (

github.com/camunda/zeebe/clients/go/v8 v8.x.y

...

)

Should be changed to this

module example.com/mymodule

require (

 github.com/camunda/camunda/clients/go/v8

...

)

If you’re struggling or have any questions, just post your questions here.

This topic was automatically closed after 90 days. New replies are no longer allowed.