Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(dependencies): update runtime default to 3.15.2 #6063

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@
apiVersion: camel.apache.org/v1
kind: CamelCatalog
metadata:
name: camel-catalog-3.15.0
name: camel-catalog-3.15.2
labels:
app: camel-k
camel.apache.org/catalog.loader.version: 4.8.0
camel.apache.org/catalog.version: 4.8.0
camel.apache.org/runtime.version: 3.15.0
camel.apache.org/catalog.loader.version: 4.8.3
camel.apache.org/catalog.version: 4.8.3
camel.apache.org/runtime.version: 3.15.2
spec:
runtime:
version: 3.15.0
version: 3.15.2
provider: quarkus
applicationClass: io.quarkus.bootstrap.runner.QuarkusEntryPoint
metadata:
camel-quarkus.version: 3.15.0
camel.version: 4.8.0
camel-quarkus.version: 3.15.2
camel.version: 4.8.3
jib.layer-filter-extension-maven.version: 0.3.0
jib.maven-plugin.version: 3.4.3
quarkus.native-builder-image: quay.io/quarkus/ubi-quarkus-mandrel-builder-image:jdk-21
quarkus.version: 3.15.1
quarkus.version: 3.15.3
dependencies:
- groupId: org.apache.camel.k
artifactId: camel-k-runtime
Expand Down Expand Up @@ -839,7 +839,7 @@ spec:
http: false
passive: false
javaTypes:
- org.apache.camel.component.debezium.DebeziumMongodbComponent
- org.apache.camel.component.debezium.mongodb.DebeziumMongodbComponent
camel-quarkus-debezium-mysql:
groupId: org.apache.camel.quarkus
artifactId: camel-quarkus-debezium-mysql
Expand All @@ -848,7 +848,7 @@ spec:
http: false
passive: false
javaTypes:
- org.apache.camel.component.debezium.DebeziumMySqlComponent
- org.apache.camel.component.debezium.mysql.DebeziumMySqlComponent
camel-quarkus-debezium-postgres:
groupId: org.apache.camel.quarkus
artifactId: camel-quarkus-debezium-postgres
Expand All @@ -857,7 +857,7 @@ spec:
http: false
passive: false
javaTypes:
- org.apache.camel.component.debezium.DebeziumPostgresComponent
- org.apache.camel.component.debezium.postgres.DebeziumPostgresComponent
camel-quarkus-debezium-sqlserver:
groupId: org.apache.camel.quarkus
artifactId: camel-quarkus-debezium-sqlserver
Expand All @@ -866,7 +866,7 @@ spec:
http: false
passive: false
javaTypes:
- org.apache.camel.component.debezium.DebeziumSqlserverComponent
- org.apache.camel.component.debezium.sqlserver.DebeziumSqlserverComponent
camel-quarkus-debug:
groupId: org.apache.camel.quarkus
artifactId: camel-quarkus-debug
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (
Version = "2.6.0-SNAPSHOT"

// DefaultRuntimeVersion --
DefaultRuntimeVersion = "3.15.0"
DefaultRuntimeVersion = "3.15.2"

// baseImage --
baseImage = "eclipse-temurin:17-jdk"
Expand Down
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ VERSIONFILE := pkg/util/defaults/defaults.go
VERSION ?= 2.6.0-SNAPSHOT
LAST_RELEASED_IMAGE_NAME := camel-k-operator
LAST_RELEASED_VERSION ?= 2.5.0
DEFAULT_RUNTIME_VERSION := 3.15.0
DEFAULT_RUNTIME_VERSION := 3.15.2
# Kubernetes tooling
CONTROLLER_GEN_VERSION := v0.15.0
CONTROLLER_GEN=$(GOBIN)/controller-gen
Expand Down