Skip to content
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

Use 1.15 + cleanup #156

Merged
merged 5 commits into from
Jun 26, 2024
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
86 changes: 38 additions & 48 deletions e-commerce/payment-backend/package-lock.json

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

6 changes: 3 additions & 3 deletions e-commerce/payment-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"lint-fix": "eslint --fix src"
},
"devDependencies": {
"@dbos-inc/dbos-cloud": "^1.13.9",
"@dbos-inc/dbos-openapi": "^1.1.15",
"@dbos-inc/dbos-cloud": "^1.15.9",
"@dbos-inc/dbos-openapi": "^1.15.9",
"@dbos-inc/eslint-plugin": "^0.0.6",
"@types/jest": "^29.5.5",
"@types/koa": "2.15.0",
Expand All @@ -24,7 +24,7 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@dbos-inc/dbos-sdk": "^1.13.9",
"@dbos-inc/dbos-sdk": "^1.15.9",
"@ladjs/koa-views": "^9.0.0",
"ejs": "^3.1.10",
"ts-node": "^10.9.1"
Expand Down
2 changes: 1 addition & 1 deletion e-commerce/payment-backend/src/operations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe("operations", () => {
let testRuntime: TestingRuntime;

beforeAll(async () => {
testRuntime = await createTestingRuntime([PlaidPayments], undefined);
testRuntime = await createTestingRuntime();
testRuntime.setConfig('unittest', true);
await testRuntime.queryUserDB<void>(`delete from items;`);
await testRuntime.queryUserDB<void>(`delete from session;`);
Expand Down
95 changes: 42 additions & 53 deletions e-commerce/shop-backend/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 e-commerce/shop-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"start": "npx dbos start"
},
"dependencies": {
"@dbos-inc/communicator-bcrypt": "^1.13.9",
"@dbos-inc/dbos-sdk": "^1.13.9",
"@dbos-inc/communicator-bcrypt": "^1.15.9",
"@dbos-inc/dbos-sdk": "^1.15.9",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@dbos-inc/dbos-cloud": "^1.13.9",
"@dbos-inc/dbos-openapi": "^1.1.15",
"@dbos-inc/dbos-cloud": "^1.15.9",
"@dbos-inc/dbos-openapi": "^1.15.9",
"@dbos-inc/eslint-plugin": "^0.0.6",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.5",
Expand Down
Loading
Loading