Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 42dccd2

Browse files
committedOct 14, 2023
Go 1.21.3; dependencies
1 parent ca2cdaf commit 42dccd2

File tree

7 files changed

+81
-34
lines changed

7 files changed

+81
-34
lines changed
 

‎.drone.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
memory: 100MiB
2222

2323
- name: test
24-
image: golang:1.21.1
24+
image: golang:1.21.3
2525
volumes:
2626
- name: go
2727
path: /go
@@ -32,7 +32,7 @@ steps:
3232
- go build ./...
3333

3434
- name: goreleaser
35-
image: golang:1.21.1
35+
image: golang:1.21.3
3636
resources:
3737
requests:
3838
cpu: 6000
@@ -81,6 +81,6 @@ volumes:
8181

8282
---
8383
kind: signature
84-
hmac: 05204fffeb72719d541b368c2950e2830ceeb0a344e10b0db526ddd4eeb695f0
84+
hmac: ad52df0920ec958bfc10c9716eed78888605ff0f5eab718212ac4f42d597773c
8585

8686
...

‎go.mod

Lines changed: 25 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
11
module go.ntppool.org/data-api
22

3-
go 1.21
4-
5-
toolchain go1.21.1
3+
go 1.21.3
64

75
require (
8-
github.com/ClickHouse/clickhouse-go/v2 v2.14.1
6+
github.com/ClickHouse/clickhouse-go/v2 v2.14.3
97
github.com/go-sql-driver/mysql v1.7.1
10-
github.com/labstack/echo/v4 v4.11.1
8+
github.com/labstack/echo/v4 v4.11.2
119
github.com/spf13/cobra v1.7.0
12-
go.ntppool.org/common v0.2.1
13-
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.44.0
14-
go.opentelemetry.io/otel v1.18.0
10+
go.ntppool.org/common v0.2.2
11+
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.45.0
12+
go.opentelemetry.io/otel v1.19.0
1513
go.opentelemetry.io/otel/exporters/jaeger v1.17.0
16-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.18.0
17-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.18.0
18-
go.opentelemetry.io/otel/sdk v1.18.0
19-
go.opentelemetry.io/otel/trace v1.18.0
14+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0
15+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0
16+
go.opentelemetry.io/otel/sdk v1.19.0
17+
go.opentelemetry.io/otel/trace v1.19.0
2018
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
21-
golang.org/x/sync v0.3.0
19+
golang.org/x/sync v0.4.0
2220
gopkg.in/yaml.v3 v3.0.1
2321
)
2422

2523
require (
2624
github.com/ClickHouse/ch-go v0.58.2 // indirect
27-
github.com/andybalholm/brotli v1.0.5 // indirect
25+
github.com/andybalholm/brotli v1.0.6 // indirect
2826
github.com/beorn7/perks v1.0.1 // indirect
2927
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
3028
github.com/cespare/xxhash/v2 v2.2.0 // indirect
@@ -37,7 +35,7 @@ require (
3735
github.com/google/uuid v1.3.1 // indirect
3836
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
3937
github.com/inconshreveable/mousetrap v1.1.0 // indirect
40-
github.com/klauspost/compress v1.16.7 // indirect
38+
github.com/klauspost/compress v1.17.1 // indirect
4139
github.com/kr/text v0.2.0 // indirect
4240
github.com/labstack/gommon v0.4.0 // indirect
4341
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -46,27 +44,27 @@ require (
4644
github.com/paulmach/orb v0.10.0 // indirect
4745
github.com/pierrec/lz4/v4 v4.1.18 // indirect
4846
github.com/pkg/errors v0.9.1 // indirect
49-
github.com/prometheus/client_golang v1.16.0 // indirect
50-
github.com/prometheus/client_model v0.4.0 // indirect
47+
github.com/prometheus/client_golang v1.17.0 // indirect
48+
github.com/prometheus/client_model v0.5.0 // indirect
5149
github.com/prometheus/common v0.44.0 // indirect
52-
github.com/prometheus/procfs v0.11.1 // indirect
50+
github.com/prometheus/procfs v0.12.0 // indirect
5351
github.com/segmentio/asm v1.2.0 // indirect
5452
github.com/shopspring/decimal v1.3.1 // indirect
5553
github.com/spf13/pflag v1.0.5 // indirect
5654
github.com/valyala/bytebufferpool v1.0.0 // indirect
5755
github.com/valyala/fasttemplate v1.2.2 // indirect
5856
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.17.0 // indirect
59-
go.opentelemetry.io/otel/metric v1.18.0 // indirect
57+
go.opentelemetry.io/otel/metric v1.19.0 // indirect
6058
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
61-
golang.org/x/crypto v0.13.0 // indirect
62-
golang.org/x/mod v0.12.0 // indirect
63-
golang.org/x/net v0.15.0 // indirect
64-
golang.org/x/sys v0.12.0 // indirect
59+
golang.org/x/crypto v0.14.0 // indirect
60+
golang.org/x/mod v0.13.0 // indirect
61+
golang.org/x/net v0.17.0 // indirect
62+
golang.org/x/sys v0.13.0 // indirect
6563
golang.org/x/text v0.13.0 // indirect
6664
golang.org/x/time v0.3.0 // indirect
67-
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
68-
google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230913181813-007df8e322eb // indirect
70-
google.golang.org/grpc v1.58.1 // indirect
65+
google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect
66+
google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a // indirect
68+
google.golang.org/grpc v1.58.3 // indirect
7169
google.golang.org/protobuf v1.31.0 // indirect
7270
)

0 commit comments

Comments
 (0)
Please sign in to comment.