Skip to content

Commit 0c592d5

Browse files
authored
Merge pull request #51 from tidepool-org/tide-v1
[BACK-2490] Add clinic API which returns TIDE dashboard categories
2 parents df00db4 + 2e38ce6 commit 0c592d5

File tree

908 files changed

+213107
-78396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

908 files changed

+213107
-78396
lines changed

clients/summary/client.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clients/summary/types.go

Lines changed: 154 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 63 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,71 @@
11
module github.com/tidepool-org/go-common
22

3-
go 1.14
3+
go 1.21
44

55
require (
6-
github.com/Shopify/sarama v1.27.0
6+
github.com/Shopify/sarama v1.38.1
77
github.com/avast/retry-go v3.0.0+incompatible
8-
github.com/cloudevents/sdk-go/protocol/kafka_sarama/v2 v2.2.0
9-
github.com/cloudevents/sdk-go/v2 v2.2.0
10-
github.com/deepmap/oapi-codegen v1.13.0
8+
github.com/cloudevents/sdk-go/protocol/kafka_sarama/v2 v2.14.0
9+
github.com/cloudevents/sdk-go/v2 v2.14.0
10+
github.com/deepmap/oapi-codegen v1.13.4
1111
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
12-
github.com/golang/protobuf v1.5.2 // indirect
1312
github.com/kelseyhightower/envconfig v1.4.0
14-
github.com/kr/pretty v0.3.0 // indirect
15-
github.com/rogpeppe/go-internal v1.8.0 // indirect
16-
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c
17-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
13+
github.com/xdg/scram v1.0.5
14+
)
15+
16+
require (
17+
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
18+
github.com/bytedance/sonic v1.10.0 // indirect
19+
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
20+
github.com/chenzhuoyu/iasm v0.9.0 // indirect
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/eapache/go-resiliency v1.4.0 // indirect
23+
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect
24+
github.com/eapache/queue v1.1.0 // indirect
25+
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
26+
github.com/gin-contrib/sse v0.1.0 // indirect
27+
github.com/gin-gonic/gin v1.9.1 // indirect
28+
github.com/go-playground/locales v0.14.1 // indirect
29+
github.com/go-playground/universal-translator v0.18.1 // indirect
30+
github.com/go-playground/validator/v10 v10.15.1 // indirect
31+
github.com/goccy/go-json v0.10.2 // indirect
32+
github.com/golang/snappy v0.0.4 // indirect
33+
github.com/google/go-cmp v0.5.9 // indirect
34+
github.com/google/uuid v1.3.0 // indirect
35+
github.com/hashicorp/errwrap v1.1.0 // indirect
36+
github.com/hashicorp/go-multierror v1.1.1 // indirect
37+
github.com/hashicorp/go-uuid v1.0.3 // indirect
38+
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
39+
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
40+
github.com/jcmturner/gofork v1.7.6 // indirect
41+
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
42+
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
43+
github.com/json-iterator/go v1.1.12 // indirect
44+
github.com/klauspost/compress v1.16.7 // indirect
45+
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
46+
github.com/kr/pretty v0.3.1 // indirect
47+
github.com/labstack/echo/v4 v4.11.1 // indirect
48+
github.com/labstack/gommon v0.4.0 // indirect
49+
github.com/leodido/go-urn v1.2.4 // indirect
50+
github.com/mattn/go-colorable v0.1.13 // indirect
51+
github.com/mattn/go-isatty v0.0.19 // indirect
52+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
53+
github.com/modern-go/reflect2 v1.0.2 // indirect
54+
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
55+
github.com/pierrec/lz4/v4 v4.1.18 // indirect
56+
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
57+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
58+
github.com/ugorji/go/codec v1.2.11 // indirect
59+
github.com/valyala/bytebufferpool v1.0.0 // indirect
60+
github.com/valyala/fasttemplate v1.2.2 // indirect
61+
github.com/xdg/stringprep v1.0.3 // indirect
62+
go.uber.org/multierr v1.11.0 // indirect
63+
go.uber.org/zap v1.25.0 // indirect
64+
golang.org/x/arch v0.4.0 // indirect
65+
golang.org/x/crypto v0.12.0 // indirect
66+
golang.org/x/net v0.14.0 // indirect
67+
golang.org/x/sys v0.11.0 // indirect
68+
golang.org/x/text v0.12.0 // indirect
69+
google.golang.org/protobuf v1.31.0 // indirect
70+
gopkg.in/yaml.v3 v3.0.1 // indirect
1871
)

go.sum

Lines changed: 97 additions & 268 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)