-
Notifications
You must be signed in to change notification settings - Fork 5k
Upgrade WebKit to 2603e9eb41f0 #34373
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
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
afb8033
Upgrade WebKit to c8b6308aaa69
robobun acdc329
test: Temporal global enabled by default after WebKit c8b6308aaa69
robobun 23f04d8
[autofix.ci] apply automated fixes
autofix-ci[bot] 0918139
Bump WEBKIT_VERSION to autobuild-preview-pr-300-ddece060
robobun 410a8dc
Bump WEBKIT_VERSION to a67975c4; cover ALS across for-await
robobun 4d813a1
Merge origin/main; adopt AsyncContextSwapScope and JSCTaskScheduler s…
robobun 9c5638d
Bump WEBKIT_VERSION to autobuild-preview-pr-300-67898ceb
robobun c596ca8
ci: retrigger (WebKit preview release autobuild-preview-pr-300-67898c…
robobun 61078f5
Bump WEBKIT_VERSION to 4c5f4e80; drop the isDetachable transfer gate
robobun 7bb9b46
test: pinned ArrayBuffer copies (not throws) on structuredClone transfer
robobun 7f0d445
test: await the pin deflate in finally; use module-scope import
robobun 7176808
ci: retrigger (preview release assets now fully uploaded)
robobun 7bb2ba1
test: assert the caught error is the generator's 'boom'
robobun f386a31
Merge upstream 2603e9eb41f0; disable Temporal by default; reject Wasm…
robobun 5ffbb1a
test: unset BUN_JSC_useTemporal for the default-off assertion
robobun 2c12d3d
ci: retrigger (preview release autobuild-preview-pr-300-4559ebe7 publ…
robobun baba43f
Fix nested ThrowScope in Wasm memory transfer gate
robobun 1b198e1
Bump WEBKIT_VERSION to autobuild-a0e65bf298 (oven-sh/WebKit#300 merged)
robobun f6a634c
Merge origin/main into claude/webkit-upgrade-c8b6308aaa69
robobun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,25 @@ | ||
| import { expect, test } from "bun:test"; | ||
| import { bunEnv, bunExe } from "harness"; | ||
|
|
||
| // Upstream WebKit enabled Temporal by default; Bun overrides useTemporal to | ||
| // false in ZigGlobalObject.cpp until the remaining integration work lands. | ||
| // BUN_JSC_useTemporal=1 re-enables it for opt-in testing. | ||
| test("Temporal is not exposed by default", async () => { | ||
| await using proc = Bun.spawn({ | ||
| cmd: [bunExe(), "-e", `process.stdout.write(typeof Temporal)`], | ||
| env: { ...bunEnv, BUN_JSC_useTemporal: undefined }, | ||
| stderr: "pipe", | ||
| }); | ||
|
robobun marked this conversation as resolved.
|
||
| const [stdout, stderr, exitCode] = await Promise.all([proc.stdout.text(), proc.stderr.text(), proc.exited]); | ||
| expect({ stdout, stderr, exitCode }).toEqual({ stdout: "undefined", stderr: expect.any(String), exitCode: 0 }); | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
| }); | ||
|
|
||
| test("Temporal is exposed when BUN_JSC_useTemporal=1", async () => { | ||
| await using proc = Bun.spawn({ | ||
| cmd: [bunExe(), "-e", `process.stdout.write(typeof Temporal + " " + typeof Temporal.Now.instant)`], | ||
| env: { ...bunEnv, BUN_JSC_useTemporal: "1" }, | ||
| stderr: "pipe", | ||
| }); | ||
| const [stdout, stderr, exitCode] = await Promise.all([proc.stdout.text(), proc.stderr.text(), proc.exited]); | ||
| expect({ stdout, stderr, exitCode }).toEqual({ stdout: "object function", stderr: expect.any(String), exitCode: 0 }); | ||
| }); | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.