Skip to content

Commit

Permalink
chore: update deps (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuiiBz committed Apr 26, 2023
1 parent af3d21f commit 40b8a4f
Show file tree
Hide file tree
Showing 18 changed files with 163 additions and 200 deletions.
6 changes: 6 additions & 0 deletions .changeset/tame-mayflies-raise.md
@@ -0,0 +1,6 @@
---
'@lagon/cli': patch
'@lagon/runtime': patch
---

Update to V8 11.4
20 changes: 10 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ lagon-runtime = { path = "../runtime" }
lagon-runtime-http = { path = "../runtime_http" }
lagon-runtime-isolate = { path = "../runtime_isolate" }
lagon-runtime-utils = { path = "../runtime_utils" }
clap = { version = "4.2.3", features = ["derive"] }
clap = { version = "4.2.4", features = ["derive"] }
dialoguer = "0.10.4"
indicatif = "0.17.3"
colored = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
v8 = "0.68.0"
v8 = "0.70.0"

[dev-dependencies]
tokio = { version = "1", features = ["rt", "time", "macros"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime_crypto/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
v8 = "0.68.0"
v8 = "0.70.0"
anyhow = "1.0.70"
rand = "0.8.5"
uuid = { version = "1.3.1", features = ["v4", "fast-rng"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime_http/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
v8 = "0.68.0"
v8 = "0.70.0"
hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp"] }
anyhow = "1.0.70"
lagon-runtime-v8-utils = { path = "../runtime_v8_utils" }
2 changes: 1 addition & 1 deletion crates/runtime_isolate/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
v8 = "0.68.0"
v8 = "0.70.0"
tokio = { version = "1", features = ["rt-multi-thread"] }
futures = "0.3.28"
hyper = { version = "0.14", features = ["client"] }
Expand Down
Expand Up @@ -11,6 +11,7 @@ pub fn random_values_binding(
if !value.is_typed_array() {
let exception = v8_exception(scope, "Parameter 1 is not of type 'TypedArray'");
scope.throw_exception(exception);
return;
}

let chunk = unsafe { v8::Local::<v8::TypedArray>::cast(value) };
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime_v8_utils/Cargo.toml
Expand Up @@ -4,5 +4,5 @@ version = "0.1.0"
edition = "2021"

[dependencies]
v8 = "0.68.0"
v8 = "0.70.0"
anyhow = "1.0.70"
2 changes: 1 addition & 1 deletion crates/serverless/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
hyper = { version = "0.14", features = ["server", "http1", "runtime", "stream"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time", "macros", "signal"] }
tokio-util = { version = "0.7.7", features = ["rt"] }
tokio-util = { version = "0.7.8", features = ["rt"] }
lagon-runtime = { path = "../runtime" }
lagon-runtime-http = { path = "../runtime_http" }
lagon-runtime-isolate = { path = "../runtime_isolate" }
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Expand Up @@ -5,7 +5,7 @@ FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json

FROM node:19.8.1-bullseye-slim as js-runtime
FROM node:20.0.0-bullseye-slim as js-runtime
WORKDIR /app
COPY ./packages/js-runtime/src/ ./src
COPY ./packages/js-runtime/package.json ./
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"packageManager": "pnpm@8.2.0",
"packageManager": "pnpm@8.3.1",
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/dashboard/package.json
Expand Up @@ -43,7 +43,7 @@
"clickhouse": "^2.6.0",
"final-form": "^4.20.7",
"monaco-editor": "^0.37.0",
"next": "13.3.0",
"next": "13.3.1",
"next-auth": "^4.22.1",
"next-international": "^0.4.1",
"node-fetch": "^3.2.10",
Expand All @@ -54,15 +54,15 @@
"react-final-form": "^6.5.9",
"react-hot-toast": "^2.2.0",
"redis": "^4.6.5",
"stripe": "^11.7.0",
"stripe": "^12.2.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.9",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-next": "13.3.0",
"eslint-config-next": "13.3.1",
"eslint-plugin-storybook": "^0.6.0",
"postcss": "^8.4.22",
"prisma": "^4.13.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/package.json
Expand Up @@ -12,10 +12,10 @@
},
"dependencies": {
"@vercel/analytics": "0.1.11",
"next": "13.3.0",
"next": "13.3.1",
"next-sitemap": "^4.0.5",
"nextra": "2.3.0",
"nextra-theme-docs": "2.3.0",
"nextra": "2.4.2",
"nextra-theme-docs": "2.4.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
Expand All @@ -25,7 +25,7 @@
"@types/react-dom": "^18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-next": "13.3.0",
"eslint-config-next": "13.3.1",
"postcss": "^8.4.22",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/js-runtime/package.json
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"abortcontroller-polyfill": "^1.7.5",
"urlpattern-polyfill": "^6.0.2",
"urlpattern-polyfill": "^8.0.2",
"web-streams-polyfill": "^3.2.1"
}
}
4 changes: 2 additions & 2 deletions packages/ui/package.json
Expand Up @@ -30,7 +30,7 @@
"autoprefixer": "^10.4.7",
"class-variance-authority": "^0.5.1",
"final-form": "^4.20.7",
"next": "13.3.0",
"next": "13.3.1",
"postcss": "^8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand All @@ -46,7 +46,7 @@
"@radix-ui/react-alert-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-tabs": "^1.0.0",
"next": "13.3.0",
"next": "13.3.1",
"react": "18.2.0",
"react-hot-toast": "^2.2.0"
}
Expand Down

4 comments on commit 40b8a4f

@vercel
Copy link

@vercel vercel bot commented on 40b8a4f Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

storybook – ./packages/ui

storybook-lagon.vercel.app
storybook-git-main-lagon.vercel.app
ui.lagon.app
storybook-swart-eight.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 40b8a4f Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./packages/docs

lagon-docs.vercel.app
docs.lagon.app
docs-git-main-lagon.vercel.app
docs-lagon.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 40b8a4f Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

www – ./www

www-lagon.vercel.app
lagon.app
www-git-main-lagon.vercel.app
lagon.dev

@vercel
Copy link

@vercel vercel bot commented on 40b8a4f Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dashboard – ./packages/dashboard

dashboard-git-main-lagon.vercel.app
dashboard-lagon.vercel.app
dash.lagon.app

Please sign in to comment.