Skip to content

Commit 86f534f

Browse files
authored
Merge pull request #151 from gianlucam76/prep
(chore) prepare for release v1.5.0
2 parents 7c12acf + 2be0028 commit 86f534f

File tree

9 files changed

+145
-148
lines changed

9 files changed

+145
-148
lines changed

.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
@@ -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 @@ CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
6767
KIND := $(TOOLS_BIN_DIR)/kind
6868
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
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: projectsveltos/ui-backend:v1.4.0
11+
- image: projectsveltos/ui-backend:v1.5.0
1212
name: manager

go.mod

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
module github.com/projectsveltos/ui-backend
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/gin-gonic/gin v1.11.0
99
github.com/go-logr/logr v1.4.3
10-
github.com/modelcontextprotocol/go-sdk v1.2.0
11-
github.com/onsi/ginkgo/v2 v2.27.4
12-
github.com/onsi/gomega v1.39.0
10+
github.com/modelcontextprotocol/go-sdk v1.3.0
11+
github.com/onsi/ginkgo/v2 v2.28.1
12+
github.com/onsi/gomega v1.39.1
1313
github.com/pkg/errors v0.9.1
14-
github.com/projectsveltos/addon-controller v1.4.0
15-
github.com/projectsveltos/event-manager v1.4.0
16-
github.com/projectsveltos/libsveltos v1.4.0
14+
github.com/projectsveltos/addon-controller v1.5.0
15+
github.com/projectsveltos/event-manager v1.5.0
16+
github.com/projectsveltos/libsveltos v1.5.0
1717
github.com/spf13/pflag v1.0.10
18-
k8s.io/api v0.35.0
19-
k8s.io/apiextensions-apiserver v0.35.0
20-
k8s.io/apimachinery v0.35.0
21-
k8s.io/client-go v0.35.0
22-
k8s.io/component-base v0.35.0
18+
k8s.io/api v0.35.1
19+
k8s.io/apiextensions-apiserver v0.35.1
20+
k8s.io/apimachinery v0.35.1
21+
k8s.io/client-go v0.35.1
22+
k8s.io/component-base v0.35.1
2323
k8s.io/klog/v2 v2.130.1
24-
k8s.io/utils v0.0.0-20260108192941-914a6e750570
25-
sigs.k8s.io/cluster-api v1.12.1
26-
sigs.k8s.io/controller-runtime v0.22.4
24+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2
25+
sigs.k8s.io/cluster-api v1.12.2
26+
sigs.k8s.io/controller-runtime v0.23.1
2727
)
2828

2929
require (
@@ -45,7 +45,7 @@ require (
4545
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4646
github.com/felixge/httpsnoop v1.0.4 // indirect
4747
github.com/fluxcd/pkg/apis/acl v0.9.0 // indirect
48-
github.com/fluxcd/pkg/apis/meta v1.24.0 // indirect
48+
github.com/fluxcd/pkg/apis/meta v1.25.0 // indirect
4949
github.com/fsnotify/fsnotify v1.9.0 // indirect
5050
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
5151
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
@@ -62,11 +62,11 @@ require (
6262
github.com/goccy/go-json v0.10.3 // indirect
6363
github.com/goccy/go-yaml v1.18.0 // indirect
6464
github.com/google/btree v1.1.3 // indirect
65-
github.com/google/cel-go v0.26.1 // indirect
65+
github.com/google/cel-go v0.27.0 // indirect
6666
github.com/google/gnostic-models v0.7.0 // indirect
6767
github.com/google/go-cmp v0.7.0 // indirect
68-
github.com/google/jsonschema-go v0.3.0 // indirect
69-
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 // indirect
68+
github.com/google/jsonschema-go v0.4.2 // indirect
69+
github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
7070
github.com/google/uuid v1.6.0 // indirect
7171
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
7272
github.com/huandu/xstrings v1.5.0 // indirect
@@ -96,8 +96,7 @@ require (
9696
github.com/quic-go/quic-go v0.57.1 // indirect
9797
github.com/shopspring/decimal v1.4.0 // indirect
9898
github.com/spf13/cast v1.10.0 // indirect
99-
github.com/spf13/cobra v1.10.1 // indirect
100-
github.com/stoewer/go-strcase v1.3.0 // indirect
99+
github.com/spf13/cobra v1.10.2 // indirect
101100
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
102101
github.com/ugorji/go/codec v1.3.0 // indirect
103102
github.com/x448/float16 v0.8.4 // indirect
@@ -115,17 +114,17 @@ require (
115114
go.yaml.in/yaml/v2 v2.4.3 // indirect
116115
go.yaml.in/yaml/v3 v3.0.4 // indirect
117116
golang.org/x/arch v0.20.0 // indirect
118-
golang.org/x/crypto v0.46.0 // indirect
117+
golang.org/x/crypto v0.47.0 // indirect
119118
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
120-
golang.org/x/mod v0.30.0 // indirect
121-
golang.org/x/net v0.47.0 // indirect
119+
golang.org/x/mod v0.32.0 // indirect
120+
golang.org/x/net v0.49.0 // indirect
122121
golang.org/x/oauth2 v0.33.0 // indirect
123122
golang.org/x/sync v0.19.0 // indirect
124-
golang.org/x/sys v0.39.0 // indirect
125-
golang.org/x/term v0.38.0 // indirect
126-
golang.org/x/text v0.32.0 // indirect
123+
golang.org/x/sys v0.40.0 // indirect
124+
golang.org/x/term v0.39.0 // indirect
125+
golang.org/x/text v0.34.0 // indirect
127126
golang.org/x/time v0.12.0 // indirect
128-
golang.org/x/tools v0.39.0 // indirect
127+
golang.org/x/tools v0.41.0 // indirect
129128
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
130129
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
131130
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
@@ -134,13 +133,13 @@ require (
134133
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
135134
gopkg.in/inf.v0 v0.9.1 // indirect
136135
gopkg.in/yaml.v3 v3.0.1 // indirect
137-
k8s.io/apiserver v0.35.0 // indirect
136+
k8s.io/apiserver v0.35.1 // indirect
138137
k8s.io/cluster-bootstrap v0.34.2 // indirect
139138
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
140139
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
141140
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
142141
sigs.k8s.io/randfill v1.0.0 // indirect
143-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
142+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
144143
sigs.k8s.io/yaml v1.6.0 // indirect
145144
)
146145

0 commit comments

Comments
 (0)