Skip to content

Commit

Permalink
bump: Runtime 1.2.0 and support new json type url (#2240)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Francisco Lopez-Sancho <[email protected]>
  • Loading branch information
johanandren and franciscolopezsancho authored Nov 8, 2024
1 parent f46439c commit 709c310
Show file tree
Hide file tree
Showing 79 changed files with 119 additions and 104 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: ]]#${artifactId}#[[
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: ]]#${artifactId}#[[
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: ]]#${artifactId}#[[
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: ]]#${artifactId}#[[
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ object Dependencies {
val RuntimeVersion = System.getProperty(
"kalix-runtime.version",
// temporarily accept the old system property name
System.getProperty("kalix-proxy.version", "1.1.46"))
System.getProperty("kalix-proxy.version", "1.2.0"))
}

// changing the Scala version of the Java SDK affects end users
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-customer-registry-kafka-quickstart
# uncomment volumes when persistence is enabled
# volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-customer-registry-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-customer-registry-views-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-counter
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-customer-registry-subscriber
depends_on:
- kalix-runtime-customer-registry
Expand All @@ -21,7 +21,7 @@ services:
USER_SERVICE_PORT: "8081"

kalix-runtime-customer-registry:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-customer-registry
ports:
- "9000:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
# on the same local machine as the java-protobuf-eventsourced-customer-registry
#tag::customer-registry-subscriber[]
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-customer-registry-subscriber
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-customer-registry
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-eventsourced-shopping-cart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-fibonacci-action/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-fibonacci-action
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-first-service/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-first-service
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-reliable-timers/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-reliable-timers
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-replicatedentity-examples
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-replicatedentity-shopping-cart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-shopping-cart-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-tracing/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: tracing
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-transfer-workflow-compensation
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-transfer-workflow/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-transfer-workflow
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-valueentity-counter
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-valueentity-customer-registry
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-valueentity-shopping-cart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-view-store/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-view-store
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-protobuf-web-resources/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-protobuf-web-resources
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-choreography-saga-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-customer-registry-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-customer-registry-views-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-doc-snippets/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
# uncomment volumes when persistence is enabled
volumes: # <1>
- ./target/kalix:/var/kalix
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-counter
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-customer-registry-subscriber
depends_on:
- kalix-runtime-customer-registry
Expand All @@ -22,7 +22,7 @@ services:
USER_SERVICE_PORT: "8081"

kalix-runtime-customer-registry:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-customer-registry
ports:
- "9000:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-customer-registry-subscriber
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-customer-registry
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-eventsourced-shopping-cart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-fibonacci-action/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-fibonacci-action
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-reliable-timers/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-reliable-timers
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-shopping-cart-quickstart
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-tracing/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: tracing
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-transfer-workflow-compensation
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-transfer-workflow/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: "3"
services:
kalix-runtime:
image: gcr.io/kalix-public/kalix-runtime:1.1.46
image: gcr.io/kalix-public/kalix-runtime:1.2.0
container_name: java-spring-transfer-workflow
ports:
- "${ADVERTISED_HTTP_PORT}:9000"
Expand Down
Loading

0 comments on commit 709c310

Please sign in to comment.