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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"dependencies": {
"@azure/storage-blob": "^12.29.1",
"@azure/storage-blob": "^12.31.0",
"axios": "^1.13.5",
"react": "^19.2.1",
"react-dom": "^19.2.1",
Expand All @@ -18,7 +18,7 @@
"preview": "vite preview"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.5.1",
"@vitejs/plugin-react": "^5.1.4",
"vite": "^7.3.1"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Aspire.Hosting.Azure.Functions" Version="13.0.2-preview.1.25603.5" />
<PackageReference Include="Aspire.Hosting.Azure.Storage" Version="13.0.2" />
<PackageReference Include="Aspire.Hosting.Azure.Functions" Version="13.1.1" />
<PackageReference Include="Aspire.Hosting.Azure.Storage" Version="13.1.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.23.0" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="3.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.50.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="2.50.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.10.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.23.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.2.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.3.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.4" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.2.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.3.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.14.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask.AzureManaged" Version="0.4.2-alpha" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.4" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
<PackageReference Include="Contrib.Grpc.Core.M1" Version="2.41.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.70.0" />
<PackageReference Include="Microsoft.DurableTask.Client" Version="1.10.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
<PackageReference Include="Microsoft.DurableTask.Client" Version="1.20.1" />
<PackageReference Include="Azure.Identity" Version="1.17.0" />
</ItemGroup>
<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions samples/durable-functions/java/HelloCities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<azure.functions.maven.plugin.version>1.34.0</azure.functions.maven.plugin.version>
<azure.functions.java.library.version>3.1.0</azure.functions.java.library.version>
<durabletask.azure.functions.version>1.1.0</durabletask.azure.functions.version>
<azure.functions.maven.plugin.version>1.40.0</azure.functions.maven.plugin.version>
<azure.functions.java.library.version>3.2.3</azure.functions.java.library.version>
<durabletask.azure.functions.version>1.7.0</durabletask.azure.functions.version>
</properties>

<dependencies>
Expand All @@ -35,7 +35,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.15.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src

# Copy csproj and restore dependencies
Expand All @@ -10,7 +10,7 @@ COPY . .
RUN dotnet publish -c Release -o /app/publish

# Build runtime image
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS final
FROM mcr.microsoft.com/dotnet/runtime:10.0 AS final
WORKDIR /app
COPY --from=build /app/publish .

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src

# Copy csproj and restore dependencies
Expand All @@ -10,7 +10,7 @@ COPY . .
RUN dotnet publish -c Release -o /app/publish

# Build runtime image
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS final
FROM mcr.microsoft.com/dotnet/runtime:10.0 AS final
WORKDIR /app
COPY --from=build /app/publish .

Expand Down
12 changes: 6 additions & 6 deletions samples/durable-task-sdks/java/async-http-api/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.5.10'
id 'org.springframework.boot' version '4.0.2'
id 'java'
id 'application'
}
Expand All @@ -11,7 +11,7 @@ java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
def grpcVersion = '1.78.0'
def grpcVersion = '1.79.0'
base { archivesName = 'durabletask-samples' }

repositories {
Expand All @@ -25,10 +25,10 @@ task runWebApi(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.6.3")
implementation("com.microsoft:durabletask-azuremanaged:1.6.3")
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")

implementation platform("org.springframework.boot:spring-boot-dependencies:3.5.10")
implementation platform("org.springframework.boot:spring-boot-dependencies:4.0.2")
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'

Expand All @@ -40,7 +40,7 @@ dependencies {
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.18.1'
implementation 'com.azure:azure-identity:1.18.2'

// install lombok
annotationProcessor 'org.projectlombok:lombok:1.18.42'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ task runEternalOrchestration(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.6.3")
implementation("com.microsoft:durabletask-azuremanaged:1.6.3")
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.28'
Expand All @@ -36,5 +36,5 @@ dependencies {
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.18.1'
implementation 'com.azure:azure-identity:1.18.2'
}
6 changes: 3 additions & 3 deletions samples/durable-task-sdks/java/fan-out-fan-in/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ task runFanOutFanInPattern(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.6.3")
implementation("com.microsoft:durabletask-azuremanaged:1.6.3")
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.28'
Expand All @@ -36,5 +36,5 @@ dependencies {
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.18.1'
implementation 'com.azure:azure-identity:1.18.2'
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:17-jdk
FROM eclipse-temurin:25-jdk

# Install dos2unix to fix line endings
RUN apt-get update && apt-get install -y dos2unix && rm -rf /var/lib/apt/lists/*
Expand Down
6 changes: 3 additions & 3 deletions samples/durable-task-sdks/java/function-chaining/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ task runChainingPattern(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.6.3")
implementation("com.microsoft:durabletask-azuremanaged:1.6.3")
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.28'
Expand All @@ -36,7 +36,7 @@ dependencies {
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.17.0'
implementation 'com.azure:azure-identity:1.18.2'
}

task runMinTest(type: JavaExec) {
Expand Down
6 changes: 3 additions & 3 deletions samples/durable-task-sdks/java/human-interaction/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ task runHumanInteraction(type: JavaExec) {
}

dependencies {
implementation("com.microsoft:durabletask-client:1.6.3")
implementation("com.microsoft:durabletask-azuremanaged:1.6.3")
implementation("com.microsoft:durabletask-client:1.7.0")
implementation("com.microsoft:durabletask-azuremanaged:1.7.0")

// Logging dependencies
implementation 'ch.qos.logback:logback-classic:1.5.28'
Expand All @@ -37,5 +37,5 @@ dependencies {
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
runtimeOnly "io.grpc:grpc-netty-shaded:${grpcVersion}"
implementation 'com.azure:azure-identity:1.18.1'
implementation 'com.azure:azure-identity:1.18.2'
}
Loading
Loading