Skip to content

Commit 53fd19e

Browse files
authored
Merge pull request #199 from gianlucam76/prep
(chore) prepare for release v1.7.0
2 parents 3311bf0 + 48c199f commit 53fd19e

18 files changed

Lines changed: 149 additions & 129 deletions

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
2020
with:
21-
go-version: 1.25.6
21+
go-version: 1.26.1
2222
- name: Build
2323
run: make build
2424
- name: FMT
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Go
3838
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
3939
with:
40-
go-version: 1.25.6
40+
go-version: 1.26.1
4141
- name: ut
4242
run: make test
4343
env:
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Go
5151
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5252
with:
53-
go-version: 1.25.6
53+
go-version: 1.26.1
5454
- name: fv
5555
run: make create-cluster fv
5656
env:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.25.6 AS builder
2+
FROM golang:1.26.1 AS builder
33

44
ARG BUILDOS
55
ARG TARGETARCH

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ARCH ?= amd64
3636
OS ?= $(shell uname -s | tr A-Z a-z)
3737
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
3838
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
39-
TAG ?= v1.6.0
39+
TAG ?= v1.7.0
4040

4141
## Tool Binaries
4242
CONTROLLER_GEN := $(TOOLS_BIN_DIR)/controller-gen
@@ -49,8 +49,8 @@ KIND := $(TOOLS_BIN_DIR)/kind
4949
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
5050
CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
5151

52-
GOLANGCI_LINT_VERSION := "v2.8.0"
53-
CLUSTERCTL_VERSION := v1.12.2
52+
GOLANGCI_LINT_VERSION := "v2.11.3"
53+
CLUSTERCTL_VERSION := v1.12.4
5454

5555
KUSTOMIZE_VER := v5.8.0
5656
KUSTOMIZE_BIN := kustomize

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: docker.io/projectsveltos/shard-controller:v1.6.0
11+
- image: docker.io/projectsveltos/shard-controller:v1.7.0
1212
name: manager

go.mod

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/projectsveltos/shard-controller
22

3-
go 1.25.6
3+
go 1.26.1
44

55
require (
66
github.com/TwiN/go-color v1.4.1
@@ -9,17 +9,17 @@ require (
99
github.com/onsi/ginkgo/v2 v2.28.1
1010
github.com/onsi/gomega v1.39.1
1111
github.com/pkg/errors v0.9.1
12-
github.com/projectsveltos/libsveltos v1.6.0
12+
github.com/projectsveltos/libsveltos v1.7.0
1313
github.com/spf13/pflag v1.0.10
14-
golang.org/x/text v0.34.0
15-
k8s.io/api v0.35.2
16-
k8s.io/apiextensions-apiserver v0.35.2
17-
k8s.io/apimachinery v0.35.2
18-
k8s.io/client-go v0.35.2
19-
k8s.io/component-base v0.35.2
14+
golang.org/x/text v0.35.0
15+
k8s.io/api v0.35.3
16+
k8s.io/apiextensions-apiserver v0.35.3
17+
k8s.io/apimachinery v0.35.3
18+
k8s.io/client-go v0.35.3
19+
k8s.io/component-base v0.35.3
2020
k8s.io/klog/v2 v2.140.0
21-
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
22-
sigs.k8s.io/cluster-api v1.12.3
21+
k8s.io/utils v0.0.0-20260319190234-28399d86e0b5
22+
sigs.k8s.io/cluster-api v1.12.4
2323
sigs.k8s.io/controller-runtime v0.23.3
2424
)
2525

@@ -29,7 +29,7 @@ require (
2929
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
3030
github.com/beorn7/perks v1.0.1 // indirect
3131
github.com/blang/semver/v4 v4.0.0 // indirect
32-
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
32+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
3333
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3434
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3535
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
@@ -50,7 +50,7 @@ require (
5050
github.com/google/go-cmp v0.7.0 // indirect
5151
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
5252
github.com/google/uuid v1.6.0 // indirect
53-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
53+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
5454
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5555
github.com/josharian/intern v1.0.0 // indirect
5656
github.com/json-iterator/go v1.1.12 // indirect
@@ -65,35 +65,35 @@ require (
6565
github.com/prometheus/procfs v0.16.1 // indirect
6666
github.com/spf13/cobra v1.10.1 // indirect
6767
github.com/x448/float16 v0.8.4 // indirect
68-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
69-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
70-
go.opentelemetry.io/otel v1.36.0 // indirect
71-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
72-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
73-
go.opentelemetry.io/otel/metric v1.36.0 // indirect
74-
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
75-
go.opentelemetry.io/otel/trace v1.36.0 // indirect
76-
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
68+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
69+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
70+
go.opentelemetry.io/otel v1.40.0 // indirect
71+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 // indirect
72+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.40.0 // indirect
73+
go.opentelemetry.io/otel/metric v1.40.0 // indirect
74+
go.opentelemetry.io/otel/sdk v1.40.0 // indirect
75+
go.opentelemetry.io/otel/trace v1.40.0 // indirect
76+
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
7777
go.yaml.in/yaml/v2 v2.4.3 // indirect
7878
go.yaml.in/yaml/v3 v3.0.4 // indirect
7979
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
80-
golang.org/x/mod v0.32.0 // indirect
81-
golang.org/x/net v0.49.0 // indirect
82-
golang.org/x/oauth2 v0.33.0 // indirect
83-
golang.org/x/sync v0.19.0 // indirect
84-
golang.org/x/sys v0.40.0 // indirect
85-
golang.org/x/term v0.39.0 // indirect
80+
golang.org/x/mod v0.33.0 // indirect
81+
golang.org/x/net v0.50.0 // indirect
82+
golang.org/x/oauth2 v0.34.0 // indirect
83+
golang.org/x/sync v0.20.0 // indirect
84+
golang.org/x/sys v0.41.0 // indirect
85+
golang.org/x/term v0.40.0 // indirect
8686
golang.org/x/time v0.9.0 // indirect
87-
golang.org/x/tools v0.41.0 // indirect
87+
golang.org/x/tools v0.42.0 // indirect
8888
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
89-
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
90-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
91-
google.golang.org/grpc v1.72.3 // indirect
92-
google.golang.org/protobuf v1.36.10 // indirect
89+
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 // indirect
90+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 // indirect
91+
google.golang.org/grpc v1.78.0 // indirect
92+
google.golang.org/protobuf v1.36.11 // indirect
9393
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
9494
gopkg.in/inf.v0 v0.9.1 // indirect
9595
gopkg.in/yaml.v3 v3.0.1 // indirect
96-
k8s.io/apiserver v0.35.2 // indirect
96+
k8s.io/apiserver v0.35.3 // indirect
9797
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
9898
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
9999
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect

0 commit comments

Comments
 (0)