Skip to content

Commit 281e987

Browse files
authored
Merge pull request #8331 from getsentry/prepare-release/7.55.1
meta(changelog): Update changelog for 7.55.1
2 parents a78ff6a + 010315d commit 281e987

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 7.55.1
8+
9+
- fix(replay): Do not export types from `@sentry-internal/rrweb` (#8329)
10+
711
## 7.55.0
812

913
- feat(replay): Capture slow clicks (GA) (#8298)

packages/replay/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export { Replay } from './integration';
22
export type {
3+
eventWithTime,
34
BreadcrumbFrame,
45
BreadcrumbFrameEvent,
56
OptionFrameEvent,
@@ -8,7 +9,3 @@ export type {
89
SpanFrame,
910
SpanFrameEvent,
1011
} from './types';
11-
export { EventType } from '@sentry-internal/rrweb';
12-
export { NodeType } from '@sentry-internal/rrweb-snapshot';
13-
export type { eventWithTime, fullSnapshotEvent } from '@sentry-internal/rrweb';
14-
export type { serializedNodeWithId } from '@sentry-internal/rrweb-snapshot';

packages/replay/test/integration/beforeAddRecordingEvent.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
import type { EventType } from '@sentry-internal/rrweb';
12
import * as SentryCore from '@sentry/core';
23
import type { Transport } from '@sentry/types';
34
import * as SentryUtils from '@sentry/utils';
45

5-
import type { EventType, Replay } from '../../src';
6+
import type { Replay } from '../../src';
67
import type { ReplayContainer } from '../../src/replay';
78
import { clearSession } from '../../src/session/clearSession';
89
import * as SendReplayRequest from '../../src/util/sendReplayRequest';

0 commit comments

Comments
 (0)