Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 54f47259ff2f7f1548edb30c3ce959391f589eaa
https://github.com/WebKit/WebKit/commit/54f47259ff2f7f1548edb30c3ce959391f589eaa
Author: Yury Semikhatsky <[email protected]>
Date: 2026-08-06 (Thu, 06 Aug 2026)
Changed paths:
M Source/WebKit/WebKit.xcodeproj/project.pbxproj
Log Message:
-----------
sort-Xcode-project-file emits "uninitialized value" warnings:
WebKit.xcodeproj contains object IDs shorter than 24 characters
https://bugs.webkit.org/show_bug.cgi?id=321192
Reviewed by Devin Rousso.
Commit 74bc5de83633 added pbxproj entries for InspectorStorageAgent and
InspectorCookieStoreHelpers with hand-written 10-character object
identifiers AA10570001-AA10570006. sort-Xcode-project-file parses entry
names with regexes that require exactly 24 uppercase hex characters, so
these entries produce "Use of uninitialized value" warnings on every
commit that stages this project file via the pre-commit hook, and the
sorter places them at arbitrary positions instead of alphabetical order.
Rename the identifiers to 24-character ones padded with zeros, matching
the style of existing hand-written IDs (e.g. E0E1E2E3E4E5E6E700000001),
* Source/WebKit/WebKit.xcodeproj/project.pbxproj:
Canonical link: https://commits.webkit.org/318737@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications