You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/replay/MIGRATION.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
Sentry Replay is now out of Beta. This means that the usual stability guarantees apply.
4
4
5
+
> For further migration changes please refer to the [general SDK migration notes](../../MIGRATION.md).
6
+
5
7
Because of experimentation and rapid iteration, during the Beta period some bugs and problems came up which have since been fixed/improved.
6
8
We **strongly** recommend anyone using Replay in a version before 7.39.0 to update to 7.39.0 or newer, in order to prevent running Replay with known problems that have since been fixed.
| maskAllText | boolean | `true`| Mask _all_ text content. Will pass text content through `maskFn` before sending to server. |
201
-
| maskAllInputs | boolean | `true`| Mask values of `<input>` elements. Passes input values through `maskInputFn` before sending to server. |
202
-
| blockAllMedia | boolean | `true`| Block _all_ media elements (`img, svg, video, object, picture, embed, map, audio`) |
203
-
| maskFn | (text: string) => string | `(text) =>'*'.repeat(text.length)`| Function to customize how text content is masked before sending to server. By default, masks text with `*`. |
204
-
| block | Array<string> | `.sentry-block, [data-sentry-block]`| Redact any elements that match the DOM selectors. See [privacy](#blocking) section for an example. |
205
-
| unblock | Array<string> | `.sentry-unblock, [data-sentry-unblock]`| Do not redact any elements that match the DOM selectors. Useful when using `blockAllMedia`. See [privacy](#blocking) section for an example. |
206
-
| mask | Array<string> | `.sentry-mask, [data-sentry-mask]`| Mask all elements that match the given DOM selectors. See [privacy](#masking) section for an example. |
207
-
| unmask | Array<string> | `.sentry-unmask, [data-sentry-unmask]` | Unmask all elements that match the given DOM selectors. Useful when using `maskAllText`. See [privacy](#masking) section for an example. |
208
-
| ignore | Array<string> | `.sentry-ignore, [data-sentry-ignore]`| Ignores all events on the matching input fields. See [privacy](#ignoring) section for an example. |
| maskAllText | boolean | `true` | Mask _all_ text content. Will pass text content through `maskFn` before sending to server. |
201
+
| maskAllInputs | boolean | `true` | Mask values of `<input>` elements. Passes input values through `maskInputFn` before sending to server. |
202
+
| blockAllMedia | boolean | `true` | Block _all_ media elements (`img, svg, video, object, picture, embed, map, audio`) |
203
+
| maskFn | (text: string) => string | `(text) =>'*'.repeat(text.length)` | Function to customize how text content is masked before sending to server. By default, masks text with `*`. |
204
+
| block | Array<string> | `.sentry-block, [data-sentry-block]` | Redact any elements that match the DOM selectors. See [privacy](#blocking) section for an example. |
205
+
| unblock | Array<string> | [] | Do not redact any elements that match the DOM selectors. Useful when using `blockAllMedia`. See [privacy](#blocking) section for an example. |
206
+
| mask | Array<string> | `.sentry-mask, [data-sentry-mask]` | Mask all elements that match the given DOM selectors. See [privacy](#masking) section for an example. |
207
+
| unmask | Array<string> | [] | Unmask all elements that match the given DOM selectors. Useful when using `maskAllText`. See [privacy](#masking) section for an example. |
208
+
| ignore | Array<string> | `.sentry-ignore, [data-sentry-ignore]` | Ignores all events on the matching input fields. See [privacy](#ignoring) section for an example. |
209
209
210
210
#### Deprecated options
211
211
In order to streamline our privacy options, the following have been deprecated in favor for the respective options above.
0 commit comments