Skip to content

Commit 7b312eb

Browse files
feat: Add support for ABS v3.4.0 [KO-460] (#417)
* feat: Add support for ABS v3.4.0 [KO-460] * Bump ABS version SHA to fix restore validation issue
1 parent 0424b66 commit 7b312eb

File tree

16 files changed

+259
-108
lines changed

16 files changed

+259
-108
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ boolean isNightly() {
238238
}
239239

240240
String getVersion() {
241-
def prefix = "4.2.0-dev1"
241+
def prefix = "4.2.0"
242242
def candidateName = ""
243243
if(isNightly()) {
244244
def timestamp = new Date().format("yyyy-MM-dd")

config/samples/aerospikebackupservice.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: aerospikebackupservice-sample
55
namespace: aerospike
66
spec:
7-
image: aerospike/aerospike-backup-service:3.2.0
7+
image: aerospike/aerospike-backup-service:3.4.0
88
config:
99
service:
1010
http:

go.mod

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aerospike/aerospike-kubernetes-operator/v4
33
go 1.24.10
44

55
require (
6-
github.com/aerospike/aerospike-backup-service/v3 v3.2.0
6+
github.com/aerospike/aerospike-backup-service/v3 v3.4.1-0.20251113113955-5523ec8870b1
77
github.com/aerospike/aerospike-client-go/v8 v8.4.1
88
github.com/aerospike/aerospike-management-lib v1.8.1-0.20251114122505-c5d5241d8594
99
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d
@@ -14,9 +14,9 @@ require (
1414
github.com/onsi/gomega v1.36.2
1515
github.com/prometheus/client_golang v1.22.0
1616
github.com/sirupsen/logrus v1.9.3
17-
github.com/stretchr/testify v1.10.0
18-
golang.org/x/crypto v0.39.0
19-
golang.org/x/net v0.41.0
17+
github.com/stretchr/testify v1.11.1
18+
golang.org/x/crypto v0.41.0
19+
golang.org/x/net v0.43.0
2020
k8s.io/api v0.33.0
2121
k8s.io/apimachinery v0.33.0
2222
k8s.io/client-go v0.33.0
@@ -27,11 +27,11 @@ require (
2727
)
2828

2929
require (
30-
cel.dev/expr v0.23.0 // indirect
30+
cel.dev/expr v0.24.0 // indirect
3131
github.com/KyleBanks/depth v1.2.1 // indirect
32-
github.com/aerospike/backup-go v0.5.1 // indirect
32+
github.com/aerospike/backup-go v0.8.0 // indirect
3333
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
34-
github.com/aws/smithy-go v1.22.4 // indirect
34+
github.com/aws/smithy-go v1.23.1 // indirect
3535
github.com/beorn7/perks v1.0.1 // indirect
3636
github.com/blang/semver/v4 v4.0.0 // indirect
3737
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
@@ -61,7 +61,7 @@ require (
6161
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6262
github.com/josharian/intern v1.0.0 // indirect
6363
github.com/json-iterator/go v1.1.12 // indirect
64-
github.com/klauspost/compress v1.18.0 // indirect
64+
github.com/klauspost/compress v1.18.1 // indirect
6565
github.com/mailru/easyjson v0.9.0 // indirect
6666
github.com/moby/spdystream v0.5.0 // indirect
6767
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
@@ -73,12 +73,12 @@ require (
7373
github.com/prometheus/client_model v0.6.1 // indirect
7474
github.com/prometheus/common v0.63.0 // indirect
7575
github.com/prometheus/procfs v0.16.0 // indirect
76-
github.com/reugn/go-quartz v0.14.0 // indirect
77-
github.com/segmentio/asm v1.2.0 // indirect
78-
github.com/spf13/cobra v1.9.1 // indirect
79-
github.com/spf13/pflag v1.0.6 // indirect
76+
github.com/reugn/go-quartz v0.15.2 // indirect
77+
github.com/segmentio/asm v1.2.1 // indirect
78+
github.com/spf13/cobra v1.10.1 // indirect
79+
github.com/spf13/pflag v1.0.9 // indirect
8080
github.com/stoewer/go-strcase v1.3.0 // indirect
81-
github.com/swaggo/swag v1.16.4 // indirect
81+
github.com/swaggo/swag v1.16.6 // indirect
8282
github.com/wadey/gocovmerge v0.0.0-20160331181800-b5bfa59ec0ad // indirect
8383
github.com/x448/float16 v0.8.4 // indirect
8484
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
@@ -98,18 +98,19 @@ require (
9898
go.uber.org/multierr v1.11.0 // indirect
9999
go.uber.org/zap v1.27.0 // indirect
100100
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
101+
golang.org/x/mod v0.27.0 // indirect
101102
golang.org/x/oauth2 v0.30.0 // indirect
102-
golang.org/x/sync v0.15.0 // indirect
103-
golang.org/x/sys v0.33.0 // indirect
104-
golang.org/x/term v0.32.0 // indirect
105-
golang.org/x/text v0.26.0 // indirect
103+
golang.org/x/sync v0.16.0 // indirect
104+
golang.org/x/sys v0.35.0 // indirect
105+
golang.org/x/term v0.34.0 // indirect
106+
golang.org/x/text v0.28.0 // indirect
106107
golang.org/x/time v0.12.0 // indirect
107-
golang.org/x/tools v0.33.0 // indirect
108+
golang.org/x/tools v0.36.0 // indirect
108109
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
109-
google.golang.org/genproto/googleapis/api v0.0.0-20250512202823-5a2f75b736a9 // indirect
110-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
111-
google.golang.org/grpc v1.73.0 // indirect
112-
google.golang.org/protobuf v1.36.6 // indirect
110+
google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect
111+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
112+
google.golang.org/grpc v1.74.2 // indirect
113+
google.golang.org/protobuf v1.36.7 // indirect
113114
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
114115
gopkg.in/inf.v0 v0.9.1 // indirect
115116
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)