diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 3a00da65..842f39cc 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -13,7 +13,7 @@ inputs: zig-v8: description: 'zig v8 version to install' required: false - default: 'v0.2.3' + default: 'v0.2.4' v8: description: 'v8 version to install' required: false diff --git a/Dockerfile b/Dockerfile index aee4842e..e683674a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:stable-slim ARG MINISIG=0.12 ARG ZIG_MINISIG=RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U ARG V8=14.0.365.4 -ARG ZIG_V8=v0.2.3 +ARG ZIG_V8=v0.2.4 ARG TARGETPLATFORM RUN apt-get update -yq && \ diff --git a/build.zig.zon b/build.zig.zon index 2f7c8400..191e1f0c 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -6,8 +6,8 @@ .minimum_zig_version = "0.15.2", .dependencies = .{ .v8 = .{ - .url = "https://github.com/lightpanda-io/zig-v8-fork/archive/global_equality.tar.gz", - .hash = "v8-0.0.0-xddH6-oqBACWs5PNjtmkdEgS4zzEU3XqGKUoLvudBpFW", + .url = "https://github.com/lightpanda-io/zig-v8-fork/archive/v0.2.4.tar.gz", + .hash = "v8-0.0.0-xddH66YvBAD0YI9xr6F0Xgnw9wN30FdZ10FLyuoV3e66", }, // .v8 = .{ .path = "../zig-v8-fork" }, .@"boringssl-zig" = .{ diff --git a/src/browser/webapi/Performance.zig b/src/browser/webapi/Performance.zig index 8f2a1bde..add39942 100644 --- a/src/browser/webapi/Performance.zig +++ b/src/browser/webapi/Performance.zig @@ -344,7 +344,6 @@ pub const Mark = struct { return m; } - pub fn getDetail(self: *const Mark) ?js.Value.Global { return self._detail; }