Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: oven-sh/WebKit

Tags

autobuild-preview-pr-140-c365bc11

Toggle autobuild-preview-pr-140-c365bc11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-preview-pr-140-10747e5c

Toggle autobuild-preview-pr-140-10747e5c's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-preview-pr-140-198e55a5

Toggle autobuild-preview-pr-140-198e55a5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-preview-pr-139-db355762

Toggle autobuild-preview-pr-139-db355762's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-preview-pr-139-8260b731

Toggle autobuild-preview-pr-139-8260b731's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-preview-pr-138-a5af1deb

Toggle autobuild-preview-pr-138-a5af1deb's commit message
Fix ThrowScope::clearException() -> TRY_CLEAR_EXCEPTION in rejectedPr…

…omiseWithCaughtException

The upstream WebKit commit 67abaaa removed clearException() from ThrowScope
to prevent accidental clearing of termination exceptions. The new API uses
tryClearException() which fails when there's a termination exception pending.

This fixes the Bun-specific rejectedPromiseWithCaughtException function to use
the TRY_CLEAR_EXCEPTION macro, matching the pattern used in the upstream fix
for the similar rejectWithCaughtException function.

Co-Authored-By: Claude Opus 4.5 <[email protected]>

autobuild-c4efd9c71de62913423911c0a18ff788828daa8c

Toggle autobuild-c4efd9c71de62913423911c0a18ff788828daa8c's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #138 from oven-sh/claude/windows-arm64-support

Add Windows ARM64 support

autobuild-5ae5f07f29059c183a8db2eef2c9aabd474ec73c

Toggle autobuild-5ae5f07f29059c183a8db2eef2c9aabd474ec73c's commit message
Fix ThrowScope::clearException() -> TRY_CLEAR_EXCEPTION in rejectedPr…

…omiseWithCaughtException

The upstream WebKit commit 67abaaa removed clearException() from ThrowScope
to prevent accidental clearing of termination exceptions. The new API uses
tryClearException() which fails when there's a termination exception pending.

This fixes the Bun-specific rejectedPromiseWithCaughtException function to use
the TRY_CLEAR_EXCEPTION macro, matching the pattern used in the upstream fix
for the similar rejectWithCaughtException function.

Co-Authored-By: Claude Opus 4.5 <[email protected]>

autobuild-preview-pr-135-b2edf332

Toggle autobuild-preview-pr-135-b2edf332's commit message
Fix makedata.mak: ignore DLL copy errors for static build

When building ICU data with -m static mode, pkgdata generates sicudt.lib
instead of icudt.dll. However, makedata.mak unconditionally tries to copy
the DLL afterwards, causing the build to fail.

Add '-' prefix to the copy command in makedata.mak, which tells nmake to
ignore the exit code. This allows the build to continue when the DLL
doesn't exist (static mode) while still working normally for DLL builds.

autobuild-c4d4cae03ecef2791f7ad5dd795f722d8be87d41

Toggle autobuild-c4d4cae03ecef2791f7ad5dd795f722d8be87d41's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #135 from oven-sh/claude/fix-async-context-across-…

…await

Fix async context preservation across await for Bun