Skip to content

Commit 25828c9

Browse files
authored
Go 1.24.9 (#461)
1 parent 2b254d6 commit 25828c9

File tree

7 files changed

+89
-232
lines changed

7 files changed

+89
-232
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
parameters:
44
goImage:
55
type: string
6-
default: "gcr.io/gcr-for-testing/golang:1.23.12"
6+
default: "gcr.io/gcr-for-testing/golang:1.24.9"
77
arangodbImage:
88
type: string
99
default: "gcr.io/gcr-for-testing/arangodb/enterprise:latest"
@@ -17,7 +17,7 @@ parameters:
1717
executors:
1818
golang-executor:
1919
docker:
20-
- image: gcr.io/gcr-for-testing/golang:1.23.12
20+
- image: gcr.io/gcr-for-testing/golang:1.24.9
2121
machine-executor:
2222
machine:
2323
image: ubuntu-2204:current

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# ArangoDB Starter Changelog
22

33
## [master](https://github.com/arangodb-helper/arangodb/tree/master) (N/A)
4+
- Bump Go version (1.24.9) and dependencies for CVE fixes
45

56
## [v0.19.13](https://github.com/arangodb-helper/arangodb/tree/0.19.13) (2025-08-12)
67
- Bump Go version (1.23.12) and dependencies for CVE fixes

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ REPOPATH := $(ORGPATH)/$(REPONAME)
4040
ALPINE_IMAGE ?= alpine:3.21
4141

4242
GOPATH := $(GOBUILDDIR)
43-
GOVERSION := 1.23.12
43+
GOVERSION := 1.24.9
4444
GOIMAGE ?= golang:$(GOVERSION)-alpine3.21
4545

4646
GOOS ?= linux
@@ -280,7 +280,7 @@ vendor:
280280
init: vendor tools
281281

282282
.PHONY: check
283-
check: license-verify fmt-verify linter run-unit-tests
283+
check: license-verify fmt-verify run-unit-tests
284284

285285
local-release:
286286
@mkdir

go.mod

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
11
module github.com/arangodb-helper/arangodb
22

3-
go 1.23.8
3+
go 1.24.0
4+
5+
toolchain go1.24.9
46

57
require (
68
github.com/arangodb-helper/go-certificates v0.0.0-20180821055445-9fca24fc2680
79
github.com/arangodb-helper/go-helper v0.4.2
8-
github.com/arangodb/go-driver v1.6.6
10+
github.com/arangodb/go-driver v1.6.7
911
github.com/arangodb/go-upgrade-rules v0.0.0-20200605091205-439fb1ee86e7
1012
github.com/cenkalti/backoff v2.2.1+incompatible
1113
github.com/coreos/go-semver v0.3.1
1214
github.com/dchest/uniuri v1.2.0
1315
github.com/fatih/color v1.9.0
14-
github.com/fsouza/go-dockerclient v1.9.7
15-
github.com/golang-jwt/jwt/v5 v5.2.2
16+
github.com/fsouza/go-dockerclient v1.12.2
17+
github.com/golang-jwt/jwt/v5 v5.3.0
1618
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
1719
github.com/mitchellh/go-homedir v1.1.0
18-
github.com/opencontainers/runc v1.1.14
20+
github.com/opencontainers/cgroups v0.0.6
1921
github.com/pkg/errors v0.9.1
2022
github.com/rs/zerolog v1.33.0
2123
github.com/ryanuber/columnize v2.1.0+incompatible
22-
github.com/spf13/cobra v1.0.0
24+
github.com/spf13/cobra v1.5.0
2325
github.com/spf13/pflag v1.0.5
24-
github.com/stretchr/testify v1.9.0
25-
golang.org/x/crypto v0.35.0
26+
github.com/stretchr/testify v1.11.1
27+
golang.org/x/crypto v0.43.0
2628
gopkg.in/ini.v1 v1.66.6
2729
)
2830

2931
require (
30-
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
32+
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
3133
github.com/Microsoft/go-winio v0.6.2 // indirect
3234
github.com/arangodb/go-velocypack v0.0.0-20200318135517-5af53c29c67e // indirect
33-
github.com/containerd/containerd v1.7.27 // indirect
3435
github.com/containerd/log v0.1.0 // indirect
35-
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
36-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
36+
github.com/coreos/go-systemd/v22 v22.6.0 // indirect
37+
github.com/cyphar/filepath-securejoin v0.6.0 // indirect
3738
github.com/davecgh/go-spew v1.1.1 // indirect
38-
github.com/docker/docker v25.0.6+incompatible // indirect
39-
github.com/docker/go-connections v0.4.0 // indirect
39+
github.com/docker/docker v28.5.1+incompatible // indirect
40+
github.com/docker/go-connections v0.6.0 // indirect
4041
github.com/docker/go-units v0.5.0 // indirect
4142
github.com/godbus/dbus/v5 v5.1.0 // indirect
42-
github.com/gogo/protobuf v1.3.2 // indirect
4343
github.com/inconshreveable/mousetrap v1.0.0 // indirect
44-
github.com/klauspost/compress v1.16.7 // indirect
44+
github.com/klauspost/compress v1.18.1 // indirect
4545
github.com/kr/text v0.2.0 // indirect
4646
github.com/mattn/go-colorable v0.1.13 // indirect
4747
github.com/mattn/go-isatty v0.0.20 // indirect
48-
github.com/moby/patternmatcher v0.5.0 // indirect
49-
github.com/moby/sys/mountinfo v0.6.2 // indirect
50-
github.com/moby/sys/sequential v0.5.0 // indirect
51-
github.com/moby/sys/user v0.3.0 // indirect
48+
github.com/moby/docker-image-spec v1.3.1 // indirect
49+
github.com/moby/go-archive v0.1.0 // indirect
50+
github.com/moby/patternmatcher v0.6.0 // indirect
51+
github.com/moby/sys/mountinfo v0.7.2 // indirect
52+
github.com/moby/sys/sequential v0.6.0 // indirect
53+
github.com/moby/sys/user v0.4.0 // indirect
5254
github.com/moby/sys/userns v0.1.0 // indirect
53-
github.com/moby/term v0.5.0 // indirect
55+
github.com/moby/term v0.5.2 // indirect
5456
github.com/morikuni/aec v1.0.0 // indirect
5557
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
5658
github.com/opencontainers/go-digest v1.0.0 // indirect
57-
github.com/opencontainers/image-spec v1.1.0 // indirect
58-
github.com/opencontainers/runtime-spec v1.1.0 // indirect
59+
github.com/opencontainers/image-spec v1.1.1 // indirect
5960
github.com/pavel-v-chernykh/keystore-go v2.1.0+incompatible // indirect
6061
github.com/pmezard/go-difflib v1.0.0 // indirect
6162
github.com/sirupsen/logrus v1.9.3 // indirect
62-
golang.org/x/sys v0.31.0 // indirect
63-
golang.org/x/term v0.30.0 // indirect
63+
golang.org/x/sys v0.37.0 // indirect
64+
golang.org/x/term v0.36.0 // indirect
6465
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
6566
gopkg.in/yaml.v3 v3.0.1 // indirect
66-
gotest.tools/v3 v3.4.0 // indirect
6767
)

0 commit comments

Comments
 (0)