Skip to content

chore: bump everything for 1.18 release#1328

Merged
alicejgibbons merged 3 commits into
dapr:release-1.18from
sicoyle:chore/release-1.18
Jun 11, 2026
Merged

chore: bump everything for 1.18 release#1328
alicejgibbons merged 3 commits into
dapr:release-1.18from
sicoyle:chore/release-1.18

Conversation

@sicoyle

@sicoyle sicoyle commented Jun 10, 2026

Copy link
Copy Markdown
Contributor

Description

queuing this up and it is currently BLOCKED by the cli PR for the 1.18 release the SDK releases.

This PR bumps python, dotnet, java, python, and go. It does not bump js. We can do that one later on.

Issue reference

We strive to have all PRs being opened based on an issue, where the problem or feature have been discussed prior to implementation.

Please reference the issue this PR will close: #[issue number]

Checklist

Please make sure you've completed the relevant tasks for this PR, out of the following list:

  • The quickstart code compiles correctly
  • You've tested new builds of the quickstart if you changed quickstart code
  • You've updated the quickstart's README if necessary
  • If you have changed the steps for a quickstart be sure that you have updated the automated validation accordingly. All of our quickstarts have annotations that allow them to be executed automatically as code. For more information see mechanical-markdown. For user guide with examples see Examples.

Signed-off-by: Samantha Coyle <sam@diagrid.io>
Copilot AI review requested due to automatic review settings June 10, 2026 20:51
@sicoyle sicoyle requested review from a team as code owners June 10, 2026 20:51
@sicoyle sicoyle changed the title chore: bumpe everything for 1.18 release [BLOCKED ON CLI PR] chore: bump everything for 1.18 release Jun 10, 2026
@sicoyle sicoyle added the do-not-merge Do not merge the PR label Jun 10, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR prepares the quickstarts/tutorials repo for the Dapr 1.18 release by updating pinned Dapr dependency versions across Python, Java, and .NET samples, and by bumping the CI/runtime versions used in GitHub Actions.

Changes:

  • Bump Python requirements pins from 1.18.0rc0 to 1.18.0 for Dapr SDK-related packages.
  • Bump Java BOM versions from 1.18.0-rc-1 to 1.18.0 across multiple samples.
  • Bump .NET NuGet package references from 1.18.0-rc01 to 1.18.0, and update CI env to DAPR_*_VERSION: 1.18.0.

Reviewed changes

Copilot reviewed 74 out of 74 changed files in this pull request and generated no comments.

Show a summary per file
File Description
workflows/python/sdk/order-processor/requirements.txt Bumps Python workflow SDK pins to 1.18.0
workflows/java/sdk/order-processor/pom.xml Bumps Java Dapr BOM version to 1.18.0
workflows/csharp/sdk/order-processor/WorkflowConsoleApp.csproj Bumps .NET workflow packages to 1.18.0
tutorials/workflow/python/workflow-management/workflow_management/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/versioning/versioning/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/task-chaining/task_chaining/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/resiliency-and-compensation/resiliency_and_compensation/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/monitor-pattern/monitor/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/fundamentals/basic/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/fan-out-fan-in/fan_out_fan_in/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/external-system-interaction/external_events/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/combined-patterns/workflow_app/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/combined-patterns/shipping_app/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/python/child-workflows/child_workflows/requirements.txt Bumps Python workflow tutorial pins to 1.18.0
tutorials/workflow/java/workflow-management/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/versioning/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/task-chaining/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/resiliency-and-compensation/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/monitor-pattern/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/fundamentals/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/fan-out-fan-in/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/external-system-interactions/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/combined-patterns/workflow-app/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/combined-patterns/shipping-app/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/java/child-workflows/pom.xml Bumps Java Spring BOM version to 1.18.0
tutorials/workflow/csharp/workflow-management/WorkflowManagement/WorkflowManagement.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/versioning/Versioning/Versioning.csproj Bumps .NET workflow + versioning packages to 1.18.0
tutorials/workflow/csharp/task-chaining/TaskChaining/TaskChaining.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/resiliency-and-compensation/ResiliencyAndCompensation/ResiliencyAndCompensation.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/monitor-pattern/Monitor/Monitor.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/fundamentals/Basic/Basic.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/fan-out-fan-in/FanOutFanIn/FanOutFanIn.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/external-system-interaction/ExternalEvents/ExternalEvents.csproj Bumps .NET workflow tutorial package to 1.18.0
tutorials/workflow/csharp/combined-patterns/WorkflowApp/WorkflowApp.csproj Bumps .NET combined-patterns packages to 1.18.0
tutorials/workflow/csharp/combined-patterns/ShippingApp/ShippingApp.csproj Bumps .NET combined-patterns package to 1.18.0
tutorials/workflow/csharp/child-workflows/ChildWorkflows/ChildWorkflows.csproj Bumps .NET child-workflows package to 1.18.0
tutorials/pub-sub/csharp-subscriber/csharp-subscriber.csproj Bumps .NET pub-sub tutorial package to 1.18.0
state_management/python/sdk/order-processor/requirements.txt Bumps Python state mgmt SDK pin to 1.18.0
state_management/java/sdk/order-processor/pom.xml Bumps Java Dapr BOM version to 1.18.0
state_management/csharp/sdk/order-processor/Program.csproj Bumps .NET state mgmt package to 1.18.0
service_invocation/python/http/order-processor/requirements.txt Bumps Python service invocation SDK pin to 1.18.0
service_invocation/csharp/http/checkout/checkout.csproj Bumps .NET service invocation package to 1.18.0
secrets_management/python/sdk/order-processor/requirements.txt Bumps Python secrets mgmt SDK pin to 1.18.0
secrets_management/java/sdk/order-processor/pom.xml Bumps Java Dapr BOM version to 1.18.0
secrets_management/csharp/sdk/order-processor/Program.csproj Bumps .NET secrets mgmt package to 1.18.0
pub_sub/python/sdk/order-processor/requirements.txt Bumps Python pub-sub SDK pin to 1.18.0
pub_sub/python/sdk/order-processor-fastapi/requirements.txt Bumps Python FastAPI extension pin to 1.18.0
pub_sub/python/sdk/checkout/requirements.txt Bumps Python pub-sub SDK pin to 1.18.0
pub_sub/java/sdk/order-processor/pom.xml Bumps Java Spring BOM version to 1.18.0
pub_sub/java/sdk/checkout/pom.xml Bumps Java Dapr BOM version to 1.18.0
pub_sub/csharp/sdk/order-processor/order-processor.csproj Bumps .NET pub-sub SDK package to 1.18.0
pub_sub/csharp/sdk/checkout/checkout.csproj Bumps .NET pub-sub SDK package to 1.18.0
jobs/python/sdk/requirements.txt Bumps Python jobs sample Dapr pin to 1.18.0
jobs/java/sdk/job-service/pom.xml Bumps Java Dapr BOM version to 1.18.0
jobs/java/sdk/job-scheduler/pom.xml Bumps Java Dapr BOM version to 1.18.0
jobs/csharp/sdk/job-service/job-service.csproj Bumps .NET jobs package to 1.18.0
jobs/csharp/sdk/job-scheduler/jobs-scheduler.csproj Bumps .NET jobs + client packages to 1.18.0
cryptography/python/sdk/crypto-quickstart/requirements.txt Bumps Python crypto sample Dapr pin to 1.18.0
conversation/python/sdk/conversation/requirements.txt Bumps Python conversation sample Dapr pin to 1.18.0
conversation/java/sdk/conversation/pom.xml Bumps Java Dapr BOM version to 1.18.0
conversation/csharp/sdk/conversation/Program.csproj Bumps .NET AI package to 1.18.0
configuration/python/sdk/order-processor/requirements.txt Bumps Python configuration sample Dapr pin to 1.18.0
configuration/java/sdk/order-processor/pom.xml Bumps Java Dapr BOM version to 1.18.0
configuration/csharp/sdk/order-processor/Program.csproj Bumps .NET configuration sample package to 1.18.0
bindings/python/sdk/batch/requirements.txt Bumps Python bindings sample Dapr pin to 1.18.0
bindings/java/sdk/batch/pom.xml Bumps Java Spring BOM version to 1.18.0
bindings/csharp/sdk/batch/batch.csproj Bumps .NET bindings sample package to 1.18.0
AI/workflows/external_system_interaction/openai/requirements.txt Bumps Python workflow extension pin to 1.18.0
AI/workflows/external_system_interaction/gemini/requirements.txt Bumps Python workflow extension pin to 1.18.0
AI/workflows/external_system_interaction/anthropic/requirements.txt Bumps Python workflow extension pin to 1.18.0
actors/csharp/sdk/service/SmartDevice.Service.csproj Bumps .NET actors service package to 1.18.0
actors/csharp/sdk/interfaces/SmartDevice.Interfaces.csproj Bumps .NET actors interface package to 1.18.0
actors/csharp/sdk/client/SmartDevice.Client.csproj Bumps .NET actors client package to 1.18.0
.github/env/global.env Bumps CI Dapr CLI/runtime versions to 1.18.0

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Signed-off-by: Samantha Coyle <sam@diagrid.io>
@WhitWaldo

Copy link
Copy Markdown
Contributor

@sicoyle Dotnet should be bumped to 1.18.1 as that's the latest published release.

@alicejgibbons alicejgibbons left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks mostly correct except for dotnet sdk needs to be bumped and then target branch needs to be changed to the release-1.18 branch @sicoyle

@sicoyle sicoyle changed the base branch from master to release-1.18 June 11, 2026 12:48
Signed-off-by: Samantha Coyle <sam@diagrid.io>
@sicoyle sicoyle changed the title [BLOCKED ON CLI PR] chore: bump everything for 1.18 release chore: bump everything for 1.18 release Jun 11, 2026
@alicejgibbons alicejgibbons merged commit 97ef03f into dapr:release-1.18 Jun 11, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

do-not-merge Do not merge the PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants