Skip to content

Commit 712d668

Browse files
authored
Merge pull request #220 from gianlucam76/prep
(chore) Prepare for release v1.12.0
2 parents 7b1b3f5 + 56831d8 commit 712d668

19 files changed

Lines changed: 246 additions & 214 deletions

.github/workflows/main.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
17+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1818
- name: Set up Go
19-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
19+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
2020
with:
2121
go-version: 1.26.4
2222
- name: Build
@@ -33,9 +33,9 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: checkout
36-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
36+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3737
- name: Set up Go
38-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
38+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
3939
with:
4040
go-version: 1.26.4
4141
- name: ut
@@ -46,9 +46,9 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: checkout
49-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
49+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5050
- name: Set up Go
51-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
51+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
5252
with:
5353
go-version: 1.26.4
5454
- name: fv
@@ -59,9 +59,9 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: checkout
62-
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
62+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
6363
- name: Set up Go
64-
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
64+
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
6565
with:
6666
go-version: 1.26.4
6767
- name: fv

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.11.0
39+
TAG ?= main
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.12.1"
53-
CLUSTERCTL_VERSION := v1.13.2
52+
GOLANGCI_LINT_VERSION := "v2.12.2"
53+
CLUSTERCTL_VERSION := v1.13.3
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.11.0
11+
- image: docker.io/projectsveltos/shard-controller:main
1212
name: manager

go.mod

Lines changed: 38 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ go 1.26.4
44

55
require (
66
github.com/TwiN/go-color v1.4.1
7-
github.com/fluxcd/source-controller/api v1.8.2
7+
github.com/fluxcd/source-controller/api v1.9.1
88
github.com/go-logr/logr v1.4.3
9-
github.com/onsi/ginkgo/v2 v2.29.0
10-
github.com/onsi/gomega v1.41.0
9+
github.com/onsi/ginkgo/v2 v2.32.0
10+
github.com/onsi/gomega v1.42.1
1111
github.com/pkg/errors v0.9.1
12-
github.com/projectsveltos/libsveltos v1.10.1-0.20260521153750-a1f348424b3f
12+
github.com/projectsveltos/libsveltos v1.11.2-0.20260630062346-87fc6de07e4a
1313
github.com/spf13/pflag v1.0.10
14-
golang.org/x/text v0.37.0
15-
k8s.io/api v0.36.1
16-
k8s.io/apiextensions-apiserver v0.36.1
17-
k8s.io/apimachinery v0.36.1
18-
k8s.io/client-go v0.36.1
19-
k8s.io/component-base v0.36.1
14+
golang.org/x/text v0.38.0
15+
k8s.io/api v0.36.2
16+
k8s.io/apiextensions-apiserver v0.36.2
17+
k8s.io/apimachinery v0.36.2
18+
k8s.io/client-go v0.36.2
19+
k8s.io/component-base v0.36.2
2020
k8s.io/klog/v2 v2.140.0
21-
k8s.io/utils v0.0.0-20260507154919-ff6756f316d2
22-
sigs.k8s.io/cluster-api v1.13.2
21+
k8s.io/utils v0.0.0-20260626114624-be93311217bd
22+
sigs.k8s.io/cluster-api v1.13.3
2323
sigs.k8s.io/controller-runtime v0.24.1
2424
sigs.k8s.io/yaml v1.6.0
2525
)
2626

2727
require (
2828
cel.dev/expr v0.25.1 // indirect
29-
github.com/Masterminds/semver/v3 v3.4.0 // indirect
29+
github.com/Masterminds/semver/v3 v3.5.0 // indirect
3030
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
3131
github.com/beorn7/perks v1.0.1 // indirect
3232
github.com/blang/semver/v4 v4.0.0 // indirect
@@ -36,15 +36,26 @@ require (
3636
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
3737
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
3838
github.com/felixge/httpsnoop v1.0.4 // indirect
39-
github.com/fluxcd/pkg/apis/acl v0.9.0 // indirect
40-
github.com/fluxcd/pkg/apis/meta v1.25.1 // indirect
39+
github.com/fluxcd/pkg/apis/acl v0.10.0 // indirect
40+
github.com/fluxcd/pkg/apis/meta v1.30.1 // indirect
4141
github.com/fsnotify/fsnotify v1.9.0 // indirect
42-
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
42+
github.com/fxamacker/cbor/v2 v2.9.2 // indirect
4343
github.com/go-errors/errors v1.5.1 // indirect
4444
github.com/go-logr/stdr v1.2.2 // indirect
4545
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4646
github.com/go-openapi/jsonreference v0.21.0 // indirect
47-
github.com/go-openapi/swag v0.23.0 // indirect
47+
github.com/go-openapi/swag v0.25.4 // indirect
48+
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
49+
github.com/go-openapi/swag/conv v0.25.4 // indirect
50+
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
51+
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
52+
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
53+
github.com/go-openapi/swag/loading v0.25.4 // indirect
54+
github.com/go-openapi/swag/mangling v0.25.4 // indirect
55+
github.com/go-openapi/swag/netutils v0.25.4 // indirect
56+
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
57+
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
58+
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
4859
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4960
github.com/google/cel-go v0.28.1 // indirect
5061
github.com/google/gnostic-models v0.7.0 // indirect
@@ -53,9 +64,7 @@ require (
5364
github.com/google/uuid v1.6.0 // indirect
5465
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
5566
github.com/inconshreveable/mousetrap v1.1.0 // indirect
56-
github.com/josharian/intern v1.0.0 // indirect
5767
github.com/json-iterator/go v1.1.12 // indirect
58-
github.com/mailru/easyjson v0.7.7 // indirect
5968
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6069
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
6170
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
@@ -77,28 +86,27 @@ require (
7786
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
7887
go.opentelemetry.io/otel/trace v1.43.0 // indirect
7988
go.opentelemetry.io/proto/otlp v1.10.0 // indirect
80-
go.yaml.in/yaml/v2 v2.4.3 // indirect
89+
go.yaml.in/yaml/v2 v2.4.4 // indirect
8190
go.yaml.in/yaml/v3 v3.0.4 // indirect
8291
golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect
83-
golang.org/x/mod v0.35.0 // indirect
84-
golang.org/x/net v0.53.0 // indirect
92+
golang.org/x/mod v0.36.0 // indirect
93+
golang.org/x/net v0.56.0 // indirect
8594
golang.org/x/oauth2 v0.36.0 // indirect
86-
golang.org/x/sync v0.20.0 // indirect
87-
golang.org/x/sys v0.43.0 // indirect
88-
golang.org/x/term v0.42.0 // indirect
95+
golang.org/x/sync v0.21.0 // indirect
96+
golang.org/x/sys v0.46.0 // indirect
97+
golang.org/x/term v0.44.0 // indirect
8998
golang.org/x/time v0.14.0 // indirect
90-
golang.org/x/tools v0.44.0 // indirect
99+
golang.org/x/tools v0.45.0 // indirect
91100
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
92101
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
93102
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
94103
google.golang.org/grpc v1.80.0 // indirect
95104
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
96105
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
97106
gopkg.in/inf.v0 v0.9.1 // indirect
98-
gopkg.in/yaml.v3 v3.0.1 // indirect
99-
k8s.io/apiserver v0.36.1 // indirect
100-
k8s.io/kube-openapi v0.0.0-20260427204847-8949caaa1199 // indirect
101-
k8s.io/streaming v0.36.1 // indirect
107+
k8s.io/apiserver v0.36.2 // indirect
108+
k8s.io/kube-openapi v0.0.0-20260603220949-865597e52e25 // indirect
109+
k8s.io/streaming v0.36.2 // indirect
102110
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.34.0 // indirect
103111
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
104112
sigs.k8s.io/kustomize/api v0.21.1 // indirect

0 commit comments

Comments
 (0)