Skip to content

Commit 451dff9

Browse files
authored
feat(replay): Update replay setup docs (#6082)
1 parent 7f6feb9 commit 451dff9

File tree

14 files changed

+14
-78
lines changed

14 files changed

+14
-78
lines changed

src/platforms/javascript/common/session-replay/index.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ By default, it'll mask all fields, so no personally identifiable information (PI
3131

3232
## Pre-requisites
3333

34-
For the sentry-replay integration to work, you must have the [Sentry browser SDK package](https://www.npmjs.com/package/@sentry/browser), or an equivalent framework SDK (for example, [@sentry/react](https://www.npmjs.com/package/@sentry/react)) installed. The minimum version required for the SDK is `7.24.0`.
34+
For the sentry-replay integration to work, you must have the [Sentry browser SDK package](https://www.npmjs.com/package/@sentry/browser), or an equivalent framework SDK (for example, [@sentry/react](https://www.npmjs.com/package/@sentry/react)) installed. The minimum version required for the SDK is `7.27.0`.
3535

36-
Make sure to use the exact same version of `@sentry/replay` as your other Sentry package(s), such as `@sentry/browser` or `@sentry/react`.
37-
38-
`@sentry/replay` requires Node 12+, and browsers newer than IE11.
36+
Session Replay requires Node 12+, and browsers newer than IE11.
3937

4038
## Install
4139

src/wizard/javascript/replay-onboarding/angular/1.install.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash
13-
# Using yarn
14-
yarn add @sentry/angular
15-
16-
# Using npm
17-
npm install --save @sentry/angular
18-
```
10+
You need a minimum version 7.27.0 of `@sentry/angular` in order to use Session Replay. You don't need to install any additional packages.

src/wizard/javascript/replay-onboarding/ember/1.install.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash {tabTitle:ember-cli}
13-
ember install @sentry/ember
14-
```
10+
You need a minimum version 7.27.0 of `@sentry/ember` in order to use Session Replay. You don't need to install any additional packages.

src/wizard/javascript/replay-onboarding/ember/2.configure.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Add the following to your SDK config. There are several privacy and sampling opt
1111

1212
```javascript
1313
import * as Sentry from "@sentry/ember";
14-
import { Replay } from "@sentry/replay";
1514

1615
Sentry.init({
1716
dsn: "___PUBLIC_DSN___",

src/wizard/javascript/replay-onboarding/gatsby/1.install.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash
13-
# Using yarn
14-
yarn add @sentry/gatsby
15-
16-
# Using npm
17-
npm install --save @sentry/gatsby
18-
```
10+
You need a minimum version 7.27.0 of `@sentry/gatsby` in order to use Session Replay. You don't need to install any additional packages.

src/wizard/javascript/replay-onboarding/javascript/1.install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
10+
For the Session Replay to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.27.0.
1111

1212
```bash
1313
# Using yarn

src/wizard/javascript/replay-onboarding/nextjs/1.install.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash
13-
# Using yarn
14-
yarn add @sentry/nextjs
15-
16-
# Using npm
17-
npm install --save @sentry/nextjs
18-
```
10+
You need a minimum version 7.27.0 of `@sentry/nextjs` in order to use Session Replay. You don't need to install any additional packages.

src/wizard/javascript/replay-onboarding/nextjs/2.configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Sentry.init({
2626
});
2727
```
2828

29-
Note: The `@sentry/replay` integration only needs to be added to your `sentry.client.config.js` file. It will not run if it is added into `sentry.server.config.js`.
29+
Note: The Replay integration only needs to be added to your `sentry.client.config.js` file. It will not run if it is added into `sentry.server.config.js`.

src/wizard/javascript/replay-onboarding/react/1.install.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash
13-
# Using yarn
14-
yarn add @sentry/react
15-
16-
# Using npm
17-
npm install --save @sentry/react
18-
```
10+
You need a minimum version 7.27.0 of `@sentry/react` in order to use Session Replay. You don't need to install any additional packages.

src/wizard/javascript/replay-onboarding/remix/1.install.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,4 @@ type: language
77

88
#### Install
99

10-
For the `@sentry/replay` integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. @sentry/react) installed, minimum version 7.x.
11-
12-
```bash
13-
# Using yarn
14-
yarn add @sentry/remix
15-
16-
# Using npm
17-
npm install --save @sentry/remix
18-
```
10+
You need a minimum version 7.27.0 of `@sentry/remix` in order to use Session Replay. You don't need to install any additional packages.

0 commit comments

Comments
 (0)