Skip to content

Commit 5704d5a

Browse files
fix(deps): update all non-major dependencies (#194)
* fix(deps): update all non-major dependencies * Deprecate NewGenericReconciler function Mark NewGenericReconciler as deprecated and suggest using NewReconcilerWith instead. --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adrian Muraru <[email protected]>
1 parent 7d1bb9b commit 5704d5a

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

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 --platform=${BUILDPLATFORM:-linux/amd64} golang:1.25@sha256:1c91b4f4391774a73d6489576878ad3ff3161ebc8c78466ec26e83474855bfcf AS builder
2+
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.25@sha256:6bac879c5b77e0fc9c556a5ed8920e89dab1709bd510a854903509c828f67f96 AS builder
33

44
ARG BUILDPLATFORM
55
ARG TARGETPLATFORM

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RELEASE_MSG ?= "koperator release"
1818
REL_TAG = $(shell ./scripts/increment_version.sh -${RELEASE_TYPE} ${TAG})
1919

2020
# Version constants
21-
GOLANGCI_VERSION = 2.5.0 # renovate: datasource=github-releases depName=golangci/golangci-lint
21+
GOLANGCI_VERSION = 2.6.0 # renovate: datasource=github-releases depName=golangci/golangci-lint
2222
LICENSEI_VERSION = 0.9.0 # renovate: datasource=github-releases depName=goph/licensei
2323
CONTROLLER_GEN_VERSION = v0.19.0 # renovate: datasource=github-releases depName=kubernetes-sigs/controller-tools
2424
ENVTEST_K8S_VERSION = 1.34.1 # renovate: datasource=github-releases depName=kubernetes/kubernetes

docker/kafka/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN rm -r kafka_$scala_version-$kafka_version/bin/windows
2323

2424

2525
# backported from https://github.com/docker-library/openjdk/blob/master/18/jdk/slim-bullseye/Dockerfile
26-
FROM debian:bullseye-slim@sha256:f807f4b16002c623115b0247dca6a55711c6b1ae821dc64fb8a2339e4ce2115d
26+
FROM debian:bullseye-slim@sha256:52927eff8153b563244f98cdc802ba97918afcdf67f9e4867cbf1f7afb3d147b
2727

2828
ARG scala_version=2.13
2929
ARG kafka_version=3.9.1

docs/examples/springboot-kafka-avro/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.6</version>
8+
<version>3.5.7</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>io.banzaicloud.blog</groupId>
@@ -46,17 +46,17 @@
4646
<dependency>
4747
<groupId>io.confluent</groupId>
4848
<artifactId>kafka-schema-registry-client</artifactId> <!-- <1> -->
49-
<version>8.0.1</version>
49+
<version>8.1.0</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.avro</groupId>
5353
<artifactId>avro</artifactId> <!-- <2> -->
54-
<version>1.12.0</version>
54+
<version>1.12.1</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>io.confluent</groupId>
5858
<artifactId>kafka-avro-serializer</artifactId> <!-- <3> -->
59-
<version>8.0.1</version>
59+
<version>8.1.0</version>
6060
</dependency>
6161
</dependencies>
6262

@@ -70,7 +70,7 @@
7070
<plugin>
7171
<groupId>org.apache.avro</groupId>
7272
<artifactId>avro-maven-plugin</artifactId>
73-
<version>1.12.0</version>
73+
<version>1.12.1</version>
7474
<executions>
7575
<execution>
7676
<phase>generate-sources</phase>

hack/kafka-test-pod/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25@sha256:1c91b4f4391774a73d6489576878ad3ff3161ebc8c78466ec26e83474855bfcf as builder
1+
FROM golang:1.25@sha256:6bac879c5b77e0fc9c556a5ed8920e89dab1709bd510a854903509c828f67f96 as builder
22

33
WORKDIR /workspace
44

third_party/github.com/banzaicloud/operator-tools/pkg/reconciler/resource.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,9 @@ func MatchImmutableErrorMessages(errorMessage string) bool {
191191
return false
192192
}
193193

194-
// NewGenericReconciler returns GenericResourceReconciler
195194
// Deprecated: use NewReconcilerWith
195+
196+
// NewGenericReconciler returns GenericResourceReconciler
196197
func NewGenericReconciler(c client.Client, log logr.Logger, opts ReconcilerOpts) *GenericResourceReconciler {
197198
if opts.Scheme == nil {
198199
opts.Scheme = runtime.NewScheme()

0 commit comments

Comments
 (0)