Skip to content

[GithubActions] Update documentation falseSDK-Typescript 1.6.0, falsefalsefalsefalse #611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 20, 2025
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
6 changes: 6 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ jobs:
- name: Upgrade TS Restate SDK Clients
if: github.event.inputs.sdkTypescriptVersion != ''
run: npm --prefix code_snippets/ts install @restatedev/restate-sdk-clients@^${{ inputs.sdkTypescriptVersion }}
- name: Upgrade TS Restate SDK ZOD
if: github.event.inputs.sdkTypescriptVersion != ''
run: npm --prefix code_snippets/ts install @restatedev/restate-sdk-zod@^${{ inputs.sdkTypescriptVersion }}
- name: Upgrade TS Restate SDK Testcontainers
if: github.event.inputs.sdkTypescriptVersion != ''
run: npm --prefix code_snippets/ts install @restatedev/restate-sdk-testcontainers@^${{ inputs.sdkTypescriptVersion }}

# Test if TS code snippets compile and build
- name: Compile TypeScript code snippets
Expand Down
8 changes: 4 additions & 4 deletions code_snippets/rust/Cargo.lock

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

46 changes: 23 additions & 23 deletions code_snippets/ts/package-lock.json

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

8 changes: 4 additions & 4 deletions code_snippets/ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
},
"dependencies": {
"@restatedev/restate-cdk": "^1.0.1",
"@restatedev/restate-sdk": "^1.5.4",
"@restatedev/restate-sdk-clients": "^1.5.4",
"@restatedev/restate-sdk-testcontainers": "=1.5.4",
"@restatedev/restate-sdk-zod": "=1.5.4",
"@restatedev/restate-sdk": "^1.6.0",
"@restatedev/restate-sdk-clients": "^1.6.0",
"@restatedev/restate-sdk-testcontainers": "^1.6.0",
"@restatedev/restate-sdk-zod": "^1.6.0",
"express": "^4.19.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion restate.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"RESTATE_VERSION": "1.3",
"TYPESCRIPT_SDK_VERSION": "1.5.4",
"TYPESCRIPT_SDK_VERSION": "1.6.0",
"JAVA_SDK_VERSION": "2.1.0",
"GO_SDK_VERSION": "0.17.0",
"PYTHON_SDK_VERSION": "0.7.0",
Expand Down
Loading