Removing all references of hz_tracing V2 from the codebase - #54062
Closed
jamezmoran wants to merge 1 commit into
Closed
Removing all references of hz_tracing V2 from the codebase#54062jamezmoran wants to merge 1 commit into
jamezmoran wants to merge 1 commit into
Conversation
|
@jamezmoran has exported this pull request. If you are a Meta employee, you can view the originating Diff in D83808657. |
jamezmoran
force-pushed
the
export-D83808657
branch
from
October 4, 2025 18:36
695ff0f to
b6513a0
Compare
Summary: Pull Request resolved: react#54062 Renaming every V2 tracing macro so that it no longer has `_V2` suffixed. This diff completes the migration of the hz_tracing V1->V2 API. This is a very large diff but is comprised of mostly mechanical changes. Most of these files were edited using `find` and `sed`, specifically: `find . -type f \( -name "*.h" -o -name "*.cpp" \) -exec sed -i 's/HZT_\(.*\)_V2/HZT_\1/g' {} +`. Since this is just a rename, no difference in functionality is expected. Differential Revision: D83808657
jamezmoran
force-pushed
the
export-D83808657
branch
from
October 6, 2025 08:40
b6513a0 to
a66d7b2
Compare
|
This pull request has been merged in c24e67f. |
Collaborator
|
This pull request was successfully merged by James Moran in c24e67f When will my fix make it into a release? | How to file a pick request? |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary:
Renaming every V2 tracing macro so that it no longer has
_V2suffixed. This diff completes the migration of the hz_tracing V1->V2 API.This is a very large diff but is comprised of mostly mechanical changes. Most of these files were edited using
findandsed, specifically:find . -type f \( -name "*.h" -o -name "*.cpp" \) -exec sed -i 's/HZT_\(.*\)_V2/HZT_\1/g' {} +.Since this is just a rename, no difference in functionality is expected.
Differential Revision: D83808657