chore: publish Quickstarts for SDK version 5.1.0 - #310
Merged
Conversation
Ditto SDK Releases (ditto-sdk-releases)
requested a review
from a team
as a code owner
August 20, 2026 20:50
Ditto SDK Releases (ditto-sdk-releases)
requested review from
Daniel Henry-Mantilla (danielhenrymantilla)
and removed request for
a team
August 20, 2026 20:50
Contributor
There was a problem hiding this comment.
Pull request overview
Publishes updated Quickstart applications by bumping Ditto SDK dependency versions across multiple language/tooling targets to 5.1.0, plus a small documentation correction for environment setup.
Changes:
- Update Ditto SDK/package versions to 5.1.0 across Swift, Rust, Java/Kotlin/Gradle, Java/Maven, JavaScript (web/TUI/Electron/React Native), Flutter, C++, and .NET samples.
- Fix JS web README
.envcopy command to reference.env.sample. - Update .NET WinForms integration test to require
DITTO_SERVER_URLfrom.env(but current parsing/validation needs adjustment).
Reviewed changes
Copilot reviewed 24 out of 24 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| swift/Tasks.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved | Updates resolved Swift package version to 5.1.0. |
| swift/Tasks.xcodeproj/project.pbxproj | Bumps Swift package minimum version to 5.1.0. |
| rust-tui/Cargo.toml | Pins Rust Ditto crate to 5.1.0. |
| react-native/package.json | Bumps RN Ditto dependency to 5.1.0. |
| react-native-expo/package.json | Bumps Expo Ditto dependency to 5.1.0. |
| kotlin-multiplatform/composeApp/build.gradle.kts | Updates Kotlin Ditto artifacts/binaries to 5.1.0. |
| javascript-web/README.md | Fixes .env.sample copy instruction (and needs a small wording tweak). |
| javascript-web/package.json | Bumps web Ditto dependency to 5.1.0. |
| javascript-tui/package.json | Bumps JS TUI Ditto dependency to 5.1.0. |
| java-server/java-spring-maven/pom.xml | Updates Maven Ditto dependencies to 5.1.0. |
| java-server/build.gradle.kts | Updates Gradle Ditto dependencies to 5.1.0. |
| flutter_app/pubspec.yaml | Bumps Flutter Ditto package to 5.1.0. |
| electron/package.json | Bumps Electron Ditto dependency to 5.1.0. |
| dotnet-winforms/TasksApp/DittoTasksApp.csproj | Updates .NET WinForms Ditto package reference to 5.1.0. |
| dotnet-winforms/IntegrationTest/Program.cs | Changes integration test env handling for DITTO_SERVER_URL (parsing/validation bug identified). |
| dotnet-winforms/IntegrationTest/IntegrationTest.csproj | Updates integration test Ditto package to 5.1.0. |
| dotnet-winforms-net48/Taskapp.WinForms.Net48.csproj | Updates net48 hint paths for Ditto 5.1.0 assemblies. |
| dotnet-winforms-net48/packages.config | Updates net48 NuGet package versions to 5.1.0. |
| dotnet-tui/DittoDotNetTasksConsole/DittoDotNetTasksConsole.csproj | Updates .NET TUI Ditto package to 5.1.0. |
| dotnet-tui/DittoDotNetTasksConsole.Tests/DittoDotNetTasksConsole.Tests.csproj | Updates .NET TUI test Ditto package to 5.1.0. |
| dotnet-maui/DittoMauiTasksApp/DittoMauiTasksApp.csproj | Updates .NET MAUI Ditto package to 5.1.0. |
| cpp-tui/taskscpp/Makefile | Updates C++ TUI Ditto SDK version variable to 5.1.0. |
| android-kotlin/QuickStartTasks/gradle/libs.versions.toml | Bumps Android Kotlin Ditto version to 5.1.0. |
| android-java/gradle/libs.versions.toml | Bumps Android Java Ditto version to 5.1.0. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+62
to
+66
| if (!envVars.TryGetValue("DITTO_SERVER_URL", out var serverUrl) || string.IsNullOrEmpty(serverUrl)) | ||
| { | ||
| Console.WriteLine("❌ Missing DITTO_SERVER_URL in .env file"); | ||
| return 1; | ||
| } |
Alyssa Evans (alycda)
approved these changes
Aug 20, 2026
Copilot started reviewing on behalf of
Ditto SDK Releases (ditto-sdk-releases)
August 20, 2026 23:27
View session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Publishes the Quickstart apps for SDK version 5.1.0. Opened automatically by the Quickstart Publish workflow.