Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 163c9f5

Browse files
authored
update to bbolt v1.4.3 (#141)
1 parent 224ffb0 commit 163c9f5

File tree

13 files changed

+212
-192
lines changed

13 files changed

+212
-192
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ on:
1616
env:
1717
VAULT_ADDR: https://vault.eng.aserto.com/
1818
PRE_RELEASE: ${{ github.ref == 'refs/heads/main' && 'development' || '' }}
19-
GO_VERSION: "1.24"
19+
GO_VERSION: "1.25"
2020
GO_RELEASER_VERSION: "v2.8.2"
21-
GO_LANGCI_LINT_VERSION: "v2.0.2"
22-
GO_TESTSUM_VERSION: "1.12.1"
21+
GO_LANGCI_LINT_VERSION: "v2.4.0"
22+
GO_TESTSUM_VERSION: "1.12.3"
2323

2424
jobs:
2525
test:
2626
runs-on: ubuntu-latest
2727
steps:
2828
-
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232
-
@@ -36,7 +36,7 @@ jobs:
3636
go-version: ${{ env.GO_VERSION }}
3737
-
3838
name: Lint
39-
uses: golangci/golangci-lint-action@v7
39+
uses: golangci/golangci-lint-action@v8
4040
with:
4141
version: ${{ env.GO_LANGCI_LINT_VERSION }}
4242
args: --timeout=30m

.github/workflows/gitleaks-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
with:
1111
fetch-depth: 0
1212
- name: gitleaks-check

.golangci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ linters:
2121
- gochecknoglobals # no configuration options
2222
- nilnil
2323
- nlreturn # redundant with wsl
24+
- noinlineerr
2425
- paralleltest
2526
- revive
2627
- tagalign
2728
- thelper
2829
- varnamelen
2930
- wrapcheck
31+
- wsl
3032

3133
exclusions:
3234
generated: lax
@@ -148,6 +150,11 @@ linters:
148150
json: snake
149151
yaml: snake
150152

153+
wsl_v5:
154+
allow-first-in-block: true
155+
allow-whole-block: false
156+
branch-max-lines: 2
157+
151158
formatters:
152159
enable:
153160
- gofmt

go.mod

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/aserto-dev/go-edge-ds
22

3-
go 1.24
3+
go 1.24.0
44

5-
toolchain go1.24.5
5+
toolchain go1.25.0
66

77
require (
88
github.com/Masterminds/semver/v3 v3.4.0
@@ -15,30 +15,30 @@ require (
1515
github.com/gonvenience/ytbx v1.4.7
1616
github.com/google/uuid v1.6.0
1717
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
18-
github.com/homeport/dyff v1.10.1
18+
github.com/homeport/dyff v1.10.2
1919
github.com/panmari/cuckoofilter v1.0.6
2020
github.com/pkg/errors v0.9.1
2121
github.com/rs/zerolog v1.34.0
2222
github.com/samber/lo v1.51.0
23-
github.com/stretchr/testify v1.10.0
24-
go.etcd.io/bbolt v1.4.2
23+
github.com/stretchr/testify v1.11.1
24+
go.etcd.io/bbolt v1.4.3
2525
golang.org/x/sync v0.16.0
26-
google.golang.org/grpc v1.74.2
27-
google.golang.org/protobuf v1.36.6
26+
google.golang.org/grpc v1.75.0
27+
google.golang.org/protobuf v1.36.8
2828
)
2929

3030
require (
31-
github.com/BurntSushi/toml v1.4.0 // indirect
31+
github.com/BurntSushi/toml v1.5.0 // indirect
3232
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
3333
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3434
github.com/deckarep/golang-set/v2 v2.8.0 // indirect
3535
github.com/dgryski/go-metro v0.0.0-20250106013310-edb8663e5e33 // indirect
36-
github.com/gonvenience/bunt v1.4.0 // indirect
37-
github.com/gonvenience/idem v0.0.1 // indirect
38-
github.com/gonvenience/neat v1.3.15 // indirect
39-
github.com/gonvenience/term v1.0.3 // indirect
40-
github.com/gonvenience/text v1.0.8 // indirect
41-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
36+
github.com/gonvenience/bunt v1.4.2 // indirect
37+
github.com/gonvenience/idem v0.0.2 // indirect
38+
github.com/gonvenience/neat v1.3.16 // indirect
39+
github.com/gonvenience/term v1.0.4 // indirect
40+
github.com/gonvenience/text v1.0.9 // indirect
41+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
4242
github.com/hashicorp/errwrap v1.1.0 // indirect
4343
github.com/hashicorp/go-multierror v1.1.1 // indirect
4444
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
@@ -50,16 +50,16 @@ require (
5050
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
5151
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
5252
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
53-
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
53+
github.com/sergi/go-diff v1.4.0 // indirect
5454
github.com/texttheater/golang-levenshtein v1.0.1 // indirect
5555
github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect
56-
golang.org/x/exp v0.0.0-20250718183923-645b1fa84792 // indirect
57-
golang.org/x/net v0.42.0 // indirect
58-
golang.org/x/sys v0.34.0 // indirect
59-
golang.org/x/term v0.33.0 // indirect
60-
golang.org/x/text v0.27.0 // indirect
61-
google.golang.org/genproto/googleapis/api v0.0.0-20250728155136-f173205681a0 // indirect
62-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect
56+
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
57+
golang.org/x/net v0.43.0 // indirect
58+
golang.org/x/sys v0.35.0 // indirect
59+
golang.org/x/term v0.34.0 // indirect
60+
golang.org/x/text v0.28.0 // indirect
61+
google.golang.org/genproto/googleapis/api v0.0.0-20250826171959-ef028d996bc1 // indirect
62+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect
6363
gopkg.in/yaml.v2 v2.4.0 // indirect
6464
gopkg.in/yaml.v3 v3.0.1 // indirect
6565
)

0 commit comments

Comments
 (0)