Rename ReplayManager to Replay#1373
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR renames the ReplayManager class to Replay to align with component naming conventions and create a more concise class name. The change is purely a refactoring effort that improves code consistency.
Key Changes:
- Renamed
ReplayManagerclass toReplaythroughout the codebase - Updated all variable names from
replayManagertoreplay - Updated documentation and comments to reflect the new name
Reviewed Changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/browser/replay/replay.js | Renamed class from ReplayManager to Replay, updated error messages and JSDoc comments |
| src/browser/core.js | Updated component references from replayManager to replay |
| src/rollbar.js | Updated parameter name from replayManager to replay |
| src/queue.js | Updated property and parameter names from replayManager to replay |
| src/browser/rollbar.js | Updated import and component registration from ReplayManager to Replay |
| src/browser/replay/scheduledStreamCapture.js | Updated comment reference from ReplayManager to Replay |
| CLAUDE.md | Updated documentation references from ReplayManager to Replay |
| test/replay/unit/replayPredicates.test.js | Updated test suite name from ReplayManager to Replay |
| test/replay/unit/replay.test.js | Updated test suite, variable names, and mock class from ReplayManager/replayManager to Replay/replay |
| test/replay/unit/queue.replay.test.js | Updated test suite, variable names, and mock class references |
| test/replay/integration/* | Updated all integration test files with new class and variable names |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
282e7be to
47cf78e
Compare
waltjones
approved these changes
Oct 14, 2025
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.
Description of the change
Renames
ReplayManagertoReplayto align with component naming convention and shorten the class name.Type of change