Skip to content

Commit 55ff268

Browse files
authored
Merge pull request #195 from gianlucam76/prep
(chore) prepare for release v1.5.0
2 parents 5b695f8 + 0f5f065 commit 55ff268

19 files changed

Lines changed: 155 additions & 148 deletions

.github/workflows/main.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
- name: Set up Go
19-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
19+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2020
with:
21-
go-version: 1.25.5
21+
go-version: 1.25.6
2222
- name: Build
2323
run: make build
2424
- name: FMT
@@ -33,11 +33,11 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: checkout
36-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
36+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737
- name: Set up Go
38-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
38+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
3939
with:
40-
go-version: 1.25.5
40+
go-version: 1.25.6
4141
- name: ut
4242
run: make test
4343
env:
@@ -46,11 +46,11 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: checkout
49-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
49+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5050
- name: Set up Go
51-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
51+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
5252
with:
53-
go-version: 1.25.5
53+
go-version: 1.25.6
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.5 AS builder
2+
FROM golang:1.25.6 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.4.0
39+
TAG ?= v1.5.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.7.2"
53-
CLUSTERCTL_VERSION := v1.12.1
52+
GOLANGCI_LINT_VERSION := "v2.8.0"
53+
CLUSTERCTL_VERSION := v1.12.2
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.4.0
11+
- image: docker.io/projectsveltos/shard-controller:v1.5.0
1212
name: manager

go.mod

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

3-
go 1.25.5
3+
go 1.25.6
44

55
require (
66
github.com/TwiN/go-color v1.4.1
77
github.com/fluxcd/source-controller/api v1.7.4
88
github.com/go-logr/logr v1.4.3
9-
github.com/onsi/ginkgo/v2 v2.27.4
10-
github.com/onsi/gomega v1.39.0
9+
github.com/onsi/ginkgo/v2 v2.28.1
10+
github.com/onsi/gomega v1.39.1
1111
github.com/pkg/errors v0.9.1
12-
github.com/projectsveltos/libsveltos v1.4.0
12+
github.com/projectsveltos/libsveltos v1.5.0
1313
github.com/spf13/pflag v1.0.10
14-
golang.org/x/text v0.33.0
15-
k8s.io/api v0.35.0
16-
k8s.io/apiextensions-apiserver v0.35.0
17-
k8s.io/apimachinery v0.35.0
18-
k8s.io/client-go v0.35.0
19-
k8s.io/component-base v0.35.0
14+
golang.org/x/text v0.34.0
15+
k8s.io/api v0.35.1
16+
k8s.io/apiextensions-apiserver v0.35.1
17+
k8s.io/apimachinery v0.35.1
18+
k8s.io/client-go v0.35.1
19+
k8s.io/component-base v0.35.1
2020
k8s.io/klog/v2 v2.130.1
21-
k8s.io/utils v0.0.0-20260108192941-914a6e750570
22-
sigs.k8s.io/cluster-api v1.12.1
23-
sigs.k8s.io/controller-runtime v0.22.4
21+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
22+
sigs.k8s.io/cluster-api v1.12.2
23+
sigs.k8s.io/controller-runtime v0.23.1
2424
)
2525

2626
require (
@@ -45,10 +45,10 @@ require (
4545
github.com/go-openapi/swag v0.23.0 // indirect
4646
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4747
github.com/google/btree v1.1.3 // indirect
48-
github.com/google/cel-go v0.26.1 // indirect
48+
github.com/google/cel-go v0.27.0 // indirect
4949
github.com/google/gnostic-models v0.7.0 // indirect
5050
github.com/google/go-cmp v0.7.0 // indirect
51-
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
51+
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
5252
github.com/google/uuid v1.6.0 // indirect
5353
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
5454
github.com/inconshreveable/mousetrap v1.1.0 // indirect
@@ -64,7 +64,6 @@ require (
6464
github.com/prometheus/common v0.66.1 // indirect
6565
github.com/prometheus/procfs v0.16.1 // indirect
6666
github.com/spf13/cobra v1.10.1 // indirect
67-
github.com/stoewer/go-strcase v1.3.0 // indirect
6867
github.com/x448/float16 v0.8.4 // indirect
6968
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
7069
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
@@ -78,14 +77,14 @@ require (
7877
go.yaml.in/yaml/v2 v2.4.3 // indirect
7978
go.yaml.in/yaml/v3 v3.0.4 // indirect
8079
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
81-
golang.org/x/mod v0.31.0 // indirect
82-
golang.org/x/net v0.48.0 // indirect
80+
golang.org/x/mod v0.32.0 // indirect
81+
golang.org/x/net v0.49.0 // indirect
8382
golang.org/x/oauth2 v0.33.0 // indirect
8483
golang.org/x/sync v0.19.0 // indirect
85-
golang.org/x/sys v0.39.0 // indirect
86-
golang.org/x/term v0.38.0 // indirect
84+
golang.org/x/sys v0.40.0 // indirect
85+
golang.org/x/term v0.39.0 // indirect
8786
golang.org/x/time v0.9.0 // indirect
88-
golang.org/x/tools v0.40.0 // indirect
87+
golang.org/x/tools v0.41.0 // indirect
8988
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
9089
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
9190
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
@@ -94,11 +93,11 @@ require (
9493
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
9594
gopkg.in/inf.v0 v0.9.1 // indirect
9695
gopkg.in/yaml.v3 v3.0.1 // indirect
97-
k8s.io/apiserver v0.35.0 // indirect
96+
k8s.io/apiserver v0.35.1 // indirect
9897
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
9998
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
10099
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
101100
sigs.k8s.io/randfill v1.0.0 // indirect
102-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
101+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
103102
sigs.k8s.io/yaml v1.6.0 // indirect
104103
)

0 commit comments

Comments
 (0)