mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
https://github.com/facebook/react/pull/29236 caused issues for internal syncs at Meta, because we were computing version numbers using file hashes (to eliminate "no-op" internal sync commits). The problem is that since version numbers may not be consistent across synced files (e.g. if some files have not changed in recent commits), the newly introduced version mismatch check fails. There's some more work that needs to be done here to restore the benefits of file-specific hashing, but for now this simply reverts the content hash changes from the following PRs: - https://github.com/facebook/react/pull/28633 (95319ab5af) - https://github.com/facebook/react/pull/28590 (37676aba76) - https://github.com/facebook/react/pull/28582 (cb076b593c) - https://github.com/facebook/react/pull/26734 (5dd90c5623) - https://github.com/facebook/react/pull/26331 (3cad3a54ed)