Skip to content

Commit aedcb0f

Browse files
authored
Merge pull request #337 from gianlucam76/prep
(chore) prepare for release v1.5.0
2 parents ccadd9b + b945537 commit aedcb0f

9 files changed

Lines changed: 136 additions & 139 deletions

File tree

.github/workflows/main.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
- name: Set up Go
18-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
18+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
1919
with:
20-
go-version: 1.25.5
20+
go-version: 1.25.6
2121
- name: Build
2222
run: make build
2323
- name: FMT
@@ -32,11 +32,11 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: checkout
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
- name: Set up Go
37-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
37+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
3838
with:
39-
go-version: 1.25.5
39+
go-version: 1.25.6
4040
- name: ut
4141
run: make test
4242
env:
@@ -45,11 +45,11 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: checkout
48-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
48+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4949
- name: Set up Go
50-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
50+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
5151
with:
52-
go-version: 1.25.5
52+
go-version: 1.25.6
5353
- name: fv
5454
run: make create-cluster fv
5555
env:
@@ -58,11 +58,11 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: checkout
61-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
61+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6262
- name: Set up Go
63-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
63+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
6464
with:
65-
go-version: 1.25.5
65+
go-version: 1.25.6
6666
- name: fv
6767
run: make create-cluster fv
6868
env:
@@ -71,11 +71,11 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: checkout
74-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
74+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7575
- name: Set up Go
76-
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
76+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
7777
with:
78-
go-version: 1.25.5
78+
go-version: 1.25.6
7979
- name: fv
8080
run: make create-cluster-pullmode fv-pullmode
8181
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
@@ -25,7 +25,7 @@ ARCH ?= amd64
2525
OS ?= $(shell uname -s | tr A-Z a-z)
2626
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
2727
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
28-
TAG ?= v1.4.0
28+
TAG ?= v1.5.0
2929

3030
.PHONY: all
3131
all: build
@@ -67,8 +67,8 @@ KIND := $(TOOLS_BIN_DIR)/kind
6767
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
6868
CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
6969

70-
GOLANGCI_LINT_VERSION := "v2.7.2"
71-
CLUSTERCTL_VERSION := v1.12.1
70+
GOLANGCI_LINT_VERSION := "v2.8.0"
71+
CLUSTERCTL_VERSION := v1.12.2
7272

7373
KUSTOMIZE_VER := v5.8.0
7474
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/access-manager:v1.4.0
11+
- image: docker.io/projectsveltos/access-manager:v1.5.0
1212
name: manager

go.mod

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
module github.com/projectsveltos/access-manager
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/gdexlab/go-render v1.0.1
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/prometheus/client_golang v1.23.2
1414
github.com/spf13/pflag v1.0.10
15-
golang.org/x/text v0.32.0
16-
k8s.io/api v0.35.0
17-
k8s.io/apiextensions-apiserver v0.35.0
18-
k8s.io/apimachinery v0.35.0
19-
k8s.io/client-go v0.35.0
20-
k8s.io/component-base v0.35.0
15+
golang.org/x/text v0.34.0
16+
k8s.io/api v0.35.1
17+
k8s.io/apiextensions-apiserver v0.35.1
18+
k8s.io/apimachinery v0.35.1
19+
k8s.io/client-go v0.35.1
20+
k8s.io/component-base v0.35.1
2121
k8s.io/klog/v2 v2.130.1
22-
k8s.io/utils v0.0.0-20260108192941-914a6e750570
23-
sigs.k8s.io/cluster-api v1.12.1
24-
sigs.k8s.io/controller-runtime v0.22.4
22+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
23+
sigs.k8s.io/cluster-api v1.12.2
24+
sigs.k8s.io/controller-runtime v0.23.1
2525
)
2626

2727
require (
@@ -50,10 +50,10 @@ require (
5050
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5151
github.com/gobuffalo/flect v1.0.3 // indirect
5252
github.com/google/btree v1.1.3 // indirect
53-
github.com/google/cel-go v0.26.1 // indirect
53+
github.com/google/cel-go v0.27.0 // indirect
5454
github.com/google/gnostic-models v0.7.0 // indirect
5555
github.com/google/go-cmp v0.7.0 // indirect
56-
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
56+
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
5757
github.com/google/uuid v1.6.0 // indirect
5858
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
5959
github.com/hexops/gotextdiff v1.0.3 // indirect
@@ -75,7 +75,6 @@ require (
7575
github.com/shopspring/decimal v1.4.0 // indirect
7676
github.com/spf13/cast v1.10.0 // indirect
7777
github.com/spf13/cobra v1.10.1 // indirect
78-
github.com/stoewer/go-strcase v1.3.0 // indirect
7978
github.com/x448/float16 v0.8.4 // indirect
8079
github.com/xlab/treeprint v1.2.0 // indirect
8180
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
@@ -89,16 +88,16 @@ require (
8988
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
9089
go.yaml.in/yaml/v2 v2.4.3 // indirect
9190
go.yaml.in/yaml/v3 v3.0.4 // indirect
92-
golang.org/x/crypto v0.46.0 // indirect
91+
golang.org/x/crypto v0.47.0 // indirect
9392
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
94-
golang.org/x/mod v0.30.0 // indirect
95-
golang.org/x/net v0.47.0 // indirect
93+
golang.org/x/mod v0.32.0 // indirect
94+
golang.org/x/net v0.49.0 // indirect
9695
golang.org/x/oauth2 v0.33.0 // indirect
9796
golang.org/x/sync v0.19.0 // indirect
98-
golang.org/x/sys v0.39.0 // indirect
99-
golang.org/x/term v0.38.0 // indirect
97+
golang.org/x/sys v0.40.0 // indirect
98+
golang.org/x/term v0.39.0 // indirect
10099
golang.org/x/time v0.9.0 // indirect
101-
golang.org/x/tools v0.39.0 // indirect
100+
golang.org/x/tools v0.41.0 // indirect
102101
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
103102
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
104103
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
@@ -107,14 +106,14 @@ require (
107106
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
108107
gopkg.in/inf.v0 v0.9.1 // indirect
109108
gopkg.in/yaml.v3 v3.0.1 // indirect
110-
k8s.io/apiserver v0.35.0 // indirect
109+
k8s.io/apiserver v0.35.1 // indirect
111110
k8s.io/cluster-bootstrap v0.34.2 // indirect
112111
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
113112
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
114113
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
115-
sigs.k8s.io/kustomize/api v0.21.0 // indirect
116-
sigs.k8s.io/kustomize/kyaml v0.21.0 // indirect
114+
sigs.k8s.io/kustomize/api v0.21.1 // indirect
115+
sigs.k8s.io/kustomize/kyaml v0.21.1 // indirect
117116
sigs.k8s.io/randfill v1.0.0 // indirect
118-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
117+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
119118
sigs.k8s.io/yaml v1.6.0 // indirect
120119
)

0 commit comments

Comments
 (0)