chore: publish Quickstarts for SDK version 5.1.0 - #309
Closed
Alyssa Evans (alycda) wants to merge 2 commits into
Closed
chore: publish Quickstarts for SDK version 5.1.0#309Alyssa Evans (alycda) wants to merge 2 commits into
Alyssa Evans (alycda) wants to merge 2 commits into
Conversation
Alyssa Evans (alycda)
requested review from
John Cunningham (SausCode)
and removed request for
a team
August 20, 2026 20:29
cp .sample.env -> cp .env.sample. Applied directly to this publish branch; source fix tracked in getditto/ditto SDKS-4821 (#25726) for future regens. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Publishes updated Quickstart applications targeting Ditto SDK v5.1.0 by bumping SDK dependency versions across the repo, plus a small update to the .NET WinForms integration test’s configuration handling.
Changes:
- Update Ditto SDK dependency versions from 5.0.x to 5.1.0 across Swift, Rust, JS/TS, React Native, Kotlin/Gradle, Java/Maven, Flutter, C++, and .NET projects.
- Update Swift package resolution and Xcode SwiftPM minimum version to 5.1.0.
- Adjust .NET WinForms integration test to require
DITTO_SERVER_URLfrom.envinstead of falling back to a default.
Reviewed changes
Copilot reviewed 24 out of 24 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| swift/Tasks.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved | Updates SwiftPM resolved DittoSwiftPackage pin to 5.1.0. |
| swift/Tasks.xcodeproj/project.pbxproj | Bumps Xcode Swift package minimumVersion to 5.1.0. |
| rust-tui/Cargo.toml | Pins dittolive-ditto crate to 5.1.0. |
| react-native/package.json | Bumps @dittolive/ditto to 5.1.0. |
| react-native-expo/package.json | Bumps @dittolive/ditto to 5.1.0. |
| kotlin-multiplatform/composeApp/build.gradle.kts | Bumps ditto-kotlin and ditto-binaries to 5.1.0 (incl. commented examples). |
| javascript-web/package.json | Bumps @dittolive/ditto to 5.1.0. |
| javascript-tui/package.json | Bumps @dittolive/ditto to 5.1.0. |
| java-server/java-spring-maven/pom.xml | Bumps ditto-java and ditto-binaries to 5.1.0. |
| java-server/build.gradle.kts | Bumps ditto-java and ditto-binaries to 5.1.0 (incl. commented examples). |
| flutter_app/pubspec.yaml | Bumps ditto_live to 5.1.0. |
| electron/package.json | Bumps @dittolive/ditto to 5.1.0. |
| dotnet-winforms/TasksApp/DittoTasksApp.csproj | Bumps NuGet Ditto dependency to 5.1.0. |
| dotnet-winforms/IntegrationTest/Program.cs | Requires DITTO_SERVER_URL from .env (no default fallback). |
| dotnet-winforms/IntegrationTest/IntegrationTest.csproj | Bumps NuGet Ditto dependency to 5.1.0. |
| dotnet-winforms-net48/Taskapp.WinForms.Net48.csproj | Updates net48 HintPaths for Ditto assemblies to 5.1.0. |
| dotnet-winforms-net48/packages.config | Bumps net48 Ditto packages to 5.1.0. |
| dotnet-tui/DittoDotNetTasksConsole/DittoDotNetTasksConsole.csproj | Bumps NuGet Ditto dependency to 5.1.0. |
| dotnet-tui/DittoDotNetTasksConsole.Tests/DittoDotNetTasksConsole.Tests.csproj | Bumps NuGet Ditto dependency to 5.1.0. |
| dotnet-maui/DittoMauiTasksApp/DittoMauiTasksApp.csproj | Bumps NuGet Ditto dependency to 5.1.0. |
| cpp-tui/taskscpp/Makefile | Bumps DITTO_SDK_VERSION to 5.1.0. |
| android-kotlin/QuickStartTasks/gradle/libs.versions.toml | Bumps Ditto version to 5.1.0. |
| android-java/gradle/libs.versions.toml | Bumps 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; | ||
| } |
Member
Author
|
Closing — this publish PR was opened by a local publish run (authored by Alyssa Evans (@alycda)), which the public mirror's publisher-authorization gate rejects (only ditto-sdk-releases PRs are accepted). Re-running via the quickstart-publish workflow so the release bot opens the PR. |
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.