Skip to content

Commit ba50c4c

Browse files
fix(deps): update patch digest dependencies
1 parent f9fac8f commit ba50c4c

File tree

35 files changed

+804
-1560
lines changed

35 files changed

+804
-1560
lines changed

go.mod

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
module github.com/longhorn/backing-image-manager
22

3-
go 1.21
3+
go 1.22
4+
5+
toolchain go1.22.3
46

57
require (
68
github.com/RoaringBitmap/roaring v1.9.3
79
github.com/golang/protobuf v1.5.4
810
github.com/gorilla/mux v1.8.1
9-
github.com/longhorn/backupstore v0.0.0-20240427164602-c8721e8ea31a
11+
github.com/longhorn/backupstore v0.0.0-20240509144945-3bce6e69af15
1012
github.com/longhorn/longhorn-engine v1.6.0-dev-20231217.0.20240418025706-519598108463
11-
github.com/longhorn/sparse-tools v0.0.0-20240427164751-a7b9f1b2c8a8
12-
github.com/longhorn/types v0.0.0-20240427164854-38dbed8528d3
13+
github.com/longhorn/sparse-tools v0.0.0-20240511075628-b5a2774264ca
14+
github.com/longhorn/types v0.0.0-20240510221052-ab949bbedea3
1315
github.com/pkg/errors v0.9.1
1416
github.com/rancher/go-fibmap v0.0.0-20160418233256-5fc9f8c1ed47
1517
github.com/sirupsen/logrus v1.9.3
1618
github.com/urfave/cli v1.22.15
1719
golang.org/x/net v0.25.0
1820
google.golang.org/grpc v1.63.2
19-
google.golang.org/protobuf v1.34.0
21+
google.golang.org/protobuf v1.34.1
2022
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
2123
)
2224

@@ -49,7 +51,6 @@ require (
4951
github.com/rogpeppe/go-internal v1.10.0 // indirect
5052
github.com/russross/blackfriday/v2 v2.1.0 // indirect
5153
github.com/slok/goresilience v0.2.0 // indirect
52-
go.uber.org/multierr v1.11.0 // indirect
5354
golang.org/x/sys v0.20.0 // indirect
5455
golang.org/x/text v0.15.0 // indirect
5556
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect

go.sum

+8-10
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
5555
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
5656
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
5757
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
58-
github.com/longhorn/backupstore v0.0.0-20240427164602-c8721e8ea31a h1:cwHDzWi0zkgg/SHtvEhWIYLvZHJvCp5twS8qBOUt/Nc=
59-
github.com/longhorn/backupstore v0.0.0-20240427164602-c8721e8ea31a/go.mod h1:NlOHCyQiGjn9TS1HUfQlBESttDPzi9x1Vs38geRV9SU=
58+
github.com/longhorn/backupstore v0.0.0-20240509144945-3bce6e69af15 h1:D838/RWPKmP9ozjOM2Al8s11NbTGLC2m+ZKT3JAogfY=
59+
github.com/longhorn/backupstore v0.0.0-20240509144945-3bce6e69af15/go.mod h1:n210xpMUVrSn/W4Za/9BZhyXLCTVfAOq5lNdLrRSyz8=
6060
github.com/longhorn/longhorn-engine v1.6.0-dev-20231217.0.20240418025706-519598108463 h1:KxddgUYC9InOhe8MxfbxzOL5v9q7f5DyThxQGGKvqVw=
6161
github.com/longhorn/longhorn-engine v1.6.0-dev-20231217.0.20240418025706-519598108463/go.mod h1:WNiZl2l51I36/c8dewxkyWd0yBA5Anznzki0knKO88U=
62-
github.com/longhorn/sparse-tools v0.0.0-20240427164751-a7b9f1b2c8a8 h1:lwtmZEomiv8uchwo9JIyoo+lK8J3cLCm7/qzpn6wmzo=
63-
github.com/longhorn/sparse-tools v0.0.0-20240427164751-a7b9f1b2c8a8/go.mod h1:pvlUkVwRGojXhcTkkzksOe4i7GVk59P2PbJjHIB2Yj0=
64-
github.com/longhorn/types v0.0.0-20240427164854-38dbed8528d3 h1:7YDGJTwro/kCcMmnCWM1UIL4JgervR6MT++71PvcbGY=
65-
github.com/longhorn/types v0.0.0-20240427164854-38dbed8528d3/go.mod h1:pqT+7B8T+nkyUZYe8tL3CwPDCHjkbe3mHUDY5ntJFyQ=
62+
github.com/longhorn/sparse-tools v0.0.0-20240511075628-b5a2774264ca h1:ZqNq7cOYETCDn1KQXuvNt7ZDjtEDiD+E29kuISQuO2E=
63+
github.com/longhorn/sparse-tools v0.0.0-20240511075628-b5a2774264ca/go.mod h1:vFvENahNfkr2VAyROaGHnZrLWuXwZJ0DHj8mBIh2miI=
64+
github.com/longhorn/types v0.0.0-20240510221052-ab949bbedea3 h1:yCn2uYikI3xW3i1HHpKytitJ2lc7S5obDMKIa7ZIuc8=
65+
github.com/longhorn/types v0.0.0-20240510221052-ab949bbedea3/go.mod h1:1oEh1cnDDqNSuFh/dH/lvJ3Ssq83SOweTAAPLRY4PMI=
6666
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
6767
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
6868
github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
@@ -120,8 +120,6 @@ github.com/urfave/cli v1.22.15 h1:nuqt+pdC/KqswQKhETJjo7pvn/k4xMUxgW6liI7XpnM=
120120
github.com/urfave/cli v1.22.15/go.mod h1:wSan1hmo5zeyLGBjRJbzRTNk8gwoYa2B9n4q9dmRIc0=
121121
go.uber.org/goleak v1.1.12 h1:gZAh5/EyT/HQwlpkCy6wTpqfH9H8Lz8zbm3dZh+OyzA=
122122
go.uber.org/goleak v1.1.12/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ=
123-
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
124-
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
125123
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
126124
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
127125
golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -155,8 +153,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de h1:
155153
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de/go.mod h1:H4O17MA/PE9BsGx3w+a+W2VOLLD1Qf7oJneAoU6WktY=
156154
google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM=
157155
google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA=
158-
google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4=
159-
google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
156+
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
157+
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
160158
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
161159
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
162160
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

vendor/github.com/longhorn/backupstore/.drone.yml

-28
This file was deleted.

vendor/github.com/longhorn/backupstore/Dockerfile.dapper

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/backupstore/backupbackingimage/backupbackingimage.go

+1-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/backupstore/deltablock.go

+2-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/backupstore/util.go

+57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/backupstore/util/util.go

-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/client.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/file.go

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/rest/handlers.go

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/rest/router.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/rest/server.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/sfold.go

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/longhorn/sparse-tools/sparse/sprune.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)