-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump all Node SDK versions + fix automated bump scripts (#165)
* Make sure we correctly bump the TS sdk version where needed Signed-off-by: slinkydeveloper <[email protected]> * Add script to bump restate version for npm artifacts. Signed-off-by: slinkydeveloper <[email protected]> * Do all the bumps Signed-off-by: slinkydeveloper <[email protected]> --------- Signed-off-by: slinkydeveloper <[email protected]>
- Loading branch information
1 parent
b159456
commit 259e0b7
Showing
21 changed files
with
103 additions
and
45 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env bash | ||
|
||
NEW_VERSION=$1 | ||
SELF_PATH=${BASH_SOURCE[0]:-"$(command -v -- "$0")"} | ||
PROJECT_ROOT="$(dirname "$SELF_PATH")/.." | ||
|
||
function bump_npm_restate() { | ||
npm --prefix $1 install @restatedev/restate@^$NEW_VERSION | ||
} | ||
|
||
function bump_npm_restate_cli() { | ||
npm --prefix $1 install @restatedev/restate-server@^$NEW_VERSION | ||
} | ||
|
||
bump_npm_restate $PROJECT_ROOT/basics/basics-typescript | ||
bump_npm_restate_cli $PROJECT_ROOT/basics/basics-typescript | ||
|
||
bump_npm_restate $PROJECT_ROOT/patterns-use-cases/async-signals-payment/async-signals-payment-typescript | ||
bump_npm_restate_cli $PROJECT_ROOT/patterns-use-cases/async-signals-payment/async-signals-payment-typescript | ||
|
||
bump_npm_restate $PROJECT_ROOT/patterns-use-cases/durable-promises/durable-promises-typescript | ||
bump_npm_restate_cli $PROJECT_ROOT/patterns-use-cases/durable-promises/durable-promises-typescript | ||
|
||
bump_npm_restate $PROJECT_ROOT/patterns-use-cases/state-machines/state-machines-typescript | ||
bump_npm_restate_cli $PROJECT_ROOT/patterns-use-cases/state-machines/state-machines-typescript | ||
|
||
bump_npm_restate $PROJECT_ROOT/patterns-use-cases/ticket-reservation/ticket-reservation-typescript | ||
bump_npm_restate_cli $PROJECT_ROOT/patterns-use-cases/ticket-reservation/ticket-reservation-typescript |
This file contains 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
This file contains 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
16 changes: 8 additions & 8 deletions
16
end-to-end-applications/typescript/food-ordering/app/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
33 changes: 26 additions & 7 deletions
33
end-to-end-applications/typescript/food-ordering/webui/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
"author": "Restate Developers", | ||
"email": "[email protected]", | ||
"dependencies": { | ||
"@restatedev/restate-sdk": "^1.1.0", | ||
"@restatedev/restate-sdk": "^1.1.1", | ||
"uuid": "^9.0.0" | ||
}, | ||
"devDependencies": { | ||
|