Skip to content
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
2 changes: 1 addition & 1 deletion java/basics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Kafka
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
implementation("dev.restate:sdk-java-http:$restateVersion")
Expand Down
2 changes: 1 addition & 1 deletion java/end-to-end-applications/workflow-interpreter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<java.version>25</java.version>
<!-- Override Netty version to make sure we bring in the latest with MadeYourReset CVE fix-->
<netty.version>4.1.124.Final</netty.version>
<restate.version>2.9.1</restate.version>
<restate.version>2.9.2</restate.version>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
6 changes: 3 additions & 3 deletions java/integrations/java-spring/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
java
application
id("org.springframework.boot") version "3.3.1"
id("io.spring.dependency-management") version "1.1.5"
id("org.springframework.boot") version "3.5.16"
id("io.spring.dependency-management") version "1.1.7"
id("com.diffplug.spotless") version "8.8.0"
}

Expand All @@ -13,7 +13,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
implementation("org.springframework.boot:spring-boot-starter")
Expand Down
2 changes: 1 addition & 1 deletion java/patterns-use-cases/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
2 changes: 1 addition & 1 deletion java/templates/java-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
2 changes: 1 addition & 1 deletion java/templates/java-maven-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<quarkus.platform.version>3.15.1</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.3.1</surefire-plugin.version>
<restate.version>2.9.1</restate.version>
<restate.version>2.9.2</restate.version>
</properties>


Expand Down
4 changes: 2 additions & 2 deletions java/templates/java-maven-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.6</version>
<version>3.5.16</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand All @@ -28,7 +28,7 @@
</scm>
<properties>
<java.version>25</java.version>
<restate.version>2.9.1</restate.version>
<restate.version>2.9.2</restate.version>
</properties>


Expand Down
2 changes: 1 addition & 1 deletion java/templates/java-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>25</maven.compiler.release>
<restate.version>2.9.1</restate.version>
<restate.version>2.9.2</restate.version>
</properties>


Expand Down
2 changes: 1 addition & 1 deletion java/tutorials/tour-of-orchestration-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
2 changes: 1 addition & 1 deletion java/tutorials/tour-of-workflows-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
2 changes: 1 addition & 1 deletion kotlin/basics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Kafka
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
group = "dev.restate.examples.noteapp"
version = "1.0.0"

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

kotlin {
jvmToolchain(25)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

// Restate proxy clients require non-final annotated classes
allOpen {
Expand Down
2 changes: 1 addition & 1 deletion kotlin/patterns-use-cases/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
4 changes: 2 additions & 2 deletions kotlin/templates/kotlin-gradle-spring-boot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
kotlin("plugin.spring") version "2.4.0"
kotlin("plugin.serialization") version "2.4.0"

id("org.springframework.boot") version "3.5.6"
id("org.springframework.boot") version "3.5.16"
id("io.spring.dependency-management") version "1.1.7"
}

Expand All @@ -20,7 +20,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK (the Spring Boot Kotlin starter also applies the all-open plugin for Restate annotations)
Expand Down
2 changes: 1 addition & 1 deletion kotlin/templates/kotlin-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
mavenCentral()
}

val restateVersion = "2.9.1"
val restateVersion = "2.9.2"

dependencies {
// Restate SDK
Expand Down
Loading