Skip to content

Commit cefa7d9

Browse files
committed
Remove CR dependency in API packages
1 parent 8f2d1a2 commit cefa7d9

File tree

124 files changed

+1302
-15558
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+1302
-15558
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ SHELL:=/usr/bin/env bash
2323
#
2424
# Go.
2525
#
26-
GO_VERSION ?= 1.24.7
27-
GO_DIRECTIVE_VERSION ?= 1.24.0
26+
GO_VERSION ?= 1.25.3
27+
GO_DIRECTIVE_VERSION ?= 1.23.0
2828
GO_CONTAINER_IMAGE ?= docker.io/library/golang:$(GO_VERSION)
2929

3030
# Ensure correct toolchain is used
@@ -554,6 +554,7 @@ generate-go-openapi: $(OPENAPI_GEN) ## Generate openapi go code for runtime SDK
554554
.PHONY: generate-modules
555555
generate-modules: ## Run go mod tidy to ensure modules are up to date
556556
go mod tidy
557+
cd ./api/core; go mod tidy
557558
cd $(TOOLS_DIR); go mod tidy
558559
cd $(TEST_DIR); go mod tidy
559560

Tiltfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ def load_provider_tilt_files():
172172

173173
tilt_helper_dockerfile_header = """
174174
# Tilt image
175-
FROM golang:1.24.7 as tilt-helper
175+
FROM golang:1.25.3 as tilt-helper
176176
# Install delve. Note this should be kept in step with the Go release minor version.
177-
RUN go install github.com/go-delve/delve/cmd/dlv@v1.24
177+
RUN go install github.com/go-delve/delve/cmd/dlv@v1.25
178178
# Support live reloading with Tilt
179179
RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/restart.sh && \
180180
wget --output-document /start.sh --quiet https://raw.githubusercontent.com/tilt-dev/rerun-process-wrapper/master/start.sh && \
@@ -183,7 +183,7 @@ RUN wget --output-document /restart.sh --quiet https://raw.githubusercontent.com
183183
"""
184184

185185
tilt_dockerfile_header = """
186-
FROM golang:1.24.7 as tilt
186+
FROM golang:1.25.3 as tilt
187187
WORKDIR /
188188
COPY --from=tilt-helper /process.txt .
189189
COPY --from=tilt-helper /start.sh .

api/addons/v1beta1/conversion.go

Lines changed: 0 additions & 154 deletions
This file was deleted.

api/addons/v1beta1/conversion_test.go

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)