Skip to content

Commit 13bb702

Browse files
authored
Merge pull request #46 from embik/backport-init-fixes
[release-0.2] Backport initializingworkspaces fix and multicluster-runtime 0.21.0
2 parents 524bc8b + 65c9767 commit 13bb702

File tree

6 files changed

+105
-98
lines changed

6 files changed

+105
-98
lines changed

.prow.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ presubmits:
2121
preset-goproxy: "true"
2222
spec:
2323
containers:
24-
- image: ghcr.io/kcp-dev/infra/build:1.23.10-1
24+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
2525
command:
2626
- make
2727
- verify
@@ -38,7 +38,7 @@ presubmits:
3838
preset-goproxy: "true"
3939
spec:
4040
containers:
41-
- image: ghcr.io/kcp-dev/infra/build:1.23.10-1
41+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
4242
command:
4343
- make
4444
- lint
@@ -55,13 +55,13 @@ presubmits:
5555
preset-goproxy: "true"
5656
spec:
5757
containers:
58-
- image: ghcr.io/kcp-dev/infra/build:1.23.10-1
58+
- image: ghcr.io/kcp-dev/infra/build:1.24.8-3
5959
command:
6060
- make
6161
- test
6262
env:
6363
- name: USE_GOTESTSUM
64-
value: '1'
64+
value: "1"
6565
resources:
6666
requests:
6767
memory: 4Gi

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $(YQ):
7373
yq_*
7474

7575
KCP = _tools/kcp
76-
KCP_VERSION = 0.28.0
76+
KCP_VERSION = 0.28.1
7777

7878
.PHONY: $(KCP)
7979
$(KCP):

go.mod

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
module github.com/kcp-dev/multicluster-provider
22

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
github.com/go-logr/logr v1.4.2
77
github.com/hashicorp/golang-lru/v2 v2.0.7
8-
github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250512171935-ebb573a40077
9-
github.com/kcp-dev/kcp/sdk v0.28.0
8+
github.com/kcp-dev/apimachinery/v2 v2.0.1-0.20250728122101-adbf20db3e51
9+
github.com/kcp-dev/kcp/sdk v0.28.1
1010
github.com/kcp-dev/logicalcluster/v3 v3.0.5
1111
github.com/martinlindhe/base36 v1.1.1
1212
github.com/onsi/ginkgo/v2 v2.22.1
1313
github.com/onsi/gomega v1.36.2
1414
github.com/spf13/pflag v1.0.6
1515
github.com/stretchr/testify v1.10.0
1616
go.uber.org/zap v1.27.0
17-
golang.org/x/sync v0.13.0
18-
golang.org/x/sys v0.32.0
19-
k8s.io/api v0.32.3
20-
k8s.io/apiextensions-apiserver v0.32.3
21-
k8s.io/apimachinery v0.32.3
22-
k8s.io/client-go v0.32.3
17+
golang.org/x/sync v0.14.0
18+
golang.org/x/sys v0.33.0
19+
k8s.io/api v0.33.3
20+
k8s.io/apiextensions-apiserver v0.33.3
21+
k8s.io/apimachinery v0.33.3
22+
k8s.io/client-go v0.33.3
2323
k8s.io/klog/v2 v2.130.1
24-
k8s.io/utils v0.0.0-20241210054802-24370beab758
25-
sigs.k8s.io/controller-runtime v0.20.4
26-
sigs.k8s.io/multicluster-runtime v0.20.4-alpha.7
24+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
25+
sigs.k8s.io/controller-runtime v0.21.0
26+
sigs.k8s.io/multicluster-runtime v0.21.0-alpha.8
2727
sigs.k8s.io/yaml v1.4.0
2828
)
2929

@@ -32,6 +32,7 @@ require (
3232
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3333
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3434
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
35+
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
3536
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
3637
github.com/fsnotify/fsnotify v1.7.0 // indirect
3738
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
@@ -41,40 +42,39 @@ require (
4142
github.com/go-openapi/swag v0.23.0 // indirect
4243
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4344
github.com/gogo/protobuf v1.3.2 // indirect
44-
github.com/golang/protobuf v1.5.4 // indirect
4545
github.com/google/btree v1.1.3 // indirect
4646
github.com/google/gnostic-models v0.6.9 // indirect
4747
github.com/google/go-cmp v0.7.0 // indirect
48-
github.com/google/gofuzz v1.2.0 // indirect
4948
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
5049
github.com/google/uuid v1.6.0 // indirect
5150
github.com/josharian/intern v1.0.0 // indirect
5251
github.com/json-iterator/go v1.1.12 // indirect
53-
github.com/klauspost/compress v1.17.11 // indirect
5452
github.com/mailru/easyjson v0.9.0 // indirect
5553
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5654
github.com/modern-go/reflect2 v1.0.2 // indirect
5755
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5856
github.com/pkg/errors v0.9.1 // indirect
5957
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
60-
github.com/prometheus/client_golang v1.20.5 // indirect
58+
github.com/prometheus/client_golang v1.22.0 // indirect
6159
github.com/prometheus/client_model v0.6.1 // indirect
62-
github.com/prometheus/common v0.61.0 // indirect
60+
github.com/prometheus/common v0.62.0 // indirect
6361
github.com/prometheus/procfs v0.15.1 // indirect
6462
github.com/x448/float16 v0.8.4 // indirect
63+
go.uber.org/goleak v1.3.1-0.20241121203838-4ff5fa6529ee // indirect
6564
go.uber.org/multierr v1.11.0 // indirect
66-
golang.org/x/net v0.39.0 // indirect
65+
golang.org/x/net v0.40.0 // indirect
6766
golang.org/x/oauth2 v0.29.0 // indirect
68-
golang.org/x/term v0.31.0 // indirect
69-
golang.org/x/text v0.24.0 // indirect
67+
golang.org/x/term v0.32.0 // indirect
68+
golang.org/x/text v0.25.0 // indirect
7069
golang.org/x/time v0.11.0 // indirect
71-
golang.org/x/tools v0.32.0 // indirect
70+
golang.org/x/tools v0.33.0 // indirect
7271
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
73-
google.golang.org/protobuf v1.36.2 // indirect
72+
google.golang.org/protobuf v1.36.5 // indirect
7473
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7574
gopkg.in/inf.v0 v0.9.1 // indirect
7675
gopkg.in/yaml.v3 v3.0.1 // indirect
77-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
76+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
7877
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
79-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
78+
sigs.k8s.io/randfill v1.0.0 // indirect
79+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
8080
)

0 commit comments

Comments
 (0)