-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: add syntax highlighting * docs: replace gitbook references with local site-local links * docs: fix mis-spelled words * docs: fix hyperlinks on home page * docs: guides: fix links in overview section * docs: update how topic name generation works * docs: fix broken links in contribute section * docs: remove duplicate roadmap on sidebar * docs: restructure Data Formatters > Protobuf * docs: restructure Publishing > gRPC * docs: fix missing syntax highlighting * docs: restructure architecture > event distribution * docs: clarify how dynamic kafka client configs work * docs: update code structure guide * wip: quickstart code examples * wip: quickstart code examples * docs: quickstart: add java client example * docs: add deployment instructions for prometheus * docs: update package name (internal) * docs: add instructions for prometheus in guides > monitoring * docs: reference: mention prometheus as a metric exporter * docs: add information about prometheus in architecture > observability * docs: architecture: add information about available producers * docs: arch: abstract out publisher * docs: replace use of `kafka` with `publishers` * docs: config: add separate section for each publisher * docs: update release process * clients: fix broken go client installation due to relocated dependency * clients: go: fix broken tests * docs: quickstart: use anon org name * docs: quickstart: add a self-contained setup for raccoon * docs: metrics: update toc * docs: quickstart: fix typo
- Loading branch information
Showing
34 changed files
with
15,220 additions
and
1,797 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,40 @@ | ||
module github.com/raystack/raccoon/clients/go | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
toolchain go1.22.4 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.8.0 | ||
go.buf.build/raystack/gw/raystack/proton v1.1.131 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 | ||
google.golang.org/grpc v1.49.0 | ||
google.golang.org/protobuf v1.28.1 | ||
google.golang.org/grpc v1.65.0 | ||
google.golang.org/protobuf v1.34.2 | ||
honnef.co/go/tools v0.3.3 | ||
) | ||
|
||
require ( | ||
github.com/gojek/heimdall/v7 v7.0.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/BurntSushi/toml v0.4.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gojek/valkyrie v0.0.0-20180215180059-6aee720afcdf // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect | ||
golang.org/x/mod v0.13.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
require ( | ||
buf.build/gen/go/raystack/proton/grpc/go v1.4.0-20240713100241-5efa7d29c01b.2 | ||
buf.build/gen/go/raystack/proton/protocolbuffers/go v1.34.2-20240713100241-5efa7d29c01b.2 | ||
github.com/gojek/heimdall/v7 v7.0.3 | ||
github.com/google/uuid v1.6.0 | ||
github.com/gorilla/websocket v1.5.0 | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.