File tree 35 files changed +142
-121
lines changed
browser-integration-tests 35 files changed +142
-121
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
7
+ ## 7.60.0
8
+
9
+ ### Important Changes
10
+
11
+ - ** feat(replay): Ensure min/max duration when flushing (#8596 )**
12
+
13
+ We will not send replays that are <5s long anymore. Additionally, we also added further safeguards to avoid overly long (>1h) replays.
14
+ You can optionally configure the min. replay duration (defaults to 5s):
15
+
16
+ ``` js
17
+ new Replay ({
18
+ minReplayDuration: 10000 // in ms - note that this is capped at 15s max!
19
+ })
20
+ ```
21
+
22
+ ### Other Changes
23
+
24
+ - fix(profiling): Align to SDK selected time origin (#8599 )
25
+ - fix(replay): Ensure multi click has correct timestamps (#8591 )
26
+ - fix(utils): Truncate aggregate exception values (LinkedErrors) (#8593 )
27
+
7
28
## 7.59.3
8
29
9
30
- fix(browser): 0 is a valid index (#8581 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " node_modules/lerna/schemas/lerna-schema.json" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"npmClient" : " yarn"
5
5
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/angular-ivy" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Angular with full Ivy Support" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/angular-ivy" ,
21
21
"rxjs" : " ^6.5.5 || ^7.x"
22
22
},
23
23
"dependencies" : {
24
- "@sentry/browser" : " 7.59.3 " ,
25
- "@sentry/types" : " 7.59.3 " ,
26
- "@sentry/utils" : " 7.59.3 " ,
24
+ "@sentry/browser" : " 7.60.0 " ,
25
+ "@sentry/types" : " 7.60.0 " ,
26
+ "@sentry/utils" : " 7.60.0 " ,
27
27
"tslib" : " ^2.4.1"
28
28
},
29
29
"devDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/angular" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Angular" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/angular" ,
21
21
"rxjs" : " ^6.5.5 || ^7.x"
22
22
},
23
23
"dependencies" : {
24
- "@sentry/browser" : " 7.59.3 " ,
25
- "@sentry/types" : " 7.59.3 " ,
26
- "@sentry/utils" : " 7.59.3 " ,
24
+ "@sentry/browser" : " 7.60.0 " ,
25
+ "@sentry/types" : " 7.60.0 " ,
26
+ "@sentry/utils" : " 7.60.0 " ,
27
27
"tslib" : " ^2.4.1"
28
28
},
29
29
"devDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/browser-integration-tests" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"main" : " index.js" ,
5
5
"license" : " MIT" ,
6
6
"engines" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/browser" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for browsers" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/browser" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry-internal/tracing" : " 7.59.3 " ,
27
- "@sentry/core" : " 7.59.3 " ,
28
- "@sentry/replay" : " 7.59.3 " ,
29
- "@sentry/types" : " 7.59.3 " ,
30
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry-internal/tracing" : " 7.60.0 " ,
27
+ "@sentry/core" : " 7.60.0 " ,
28
+ "@sentry/replay" : " 7.60.0 " ,
29
+ "@sentry/types" : " 7.60.0 " ,
30
+ "@sentry/utils" : " 7.60.0 " ,
31
31
"tslib" : " ^2.4.1 || ^1.9.3"
32
32
},
33
33
"devDependencies" : {
34
- "@sentry-internal/integration-shims" : " 7.59.3 " ,
34
+ "@sentry-internal/integration-shims" : " 7.60.0 " ,
35
35
"@types/md5" : " 2.1.33" ,
36
36
"btoa" : " ^1.2.1" ,
37
37
"chai" : " ^4.1.2" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/core" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Base implementation for all Sentry JavaScript SDKs" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/core" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry/types" : " 7.59.3 " ,
27
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry/types" : " 7.60.0 " ,
27
+ "@sentry/utils" : " 7.60.0 " ,
28
28
"tslib" : " ^2.4.1 || ^1.9.3"
29
29
},
30
30
"scripts" : {
Original file line number Diff line number Diff line change 1
- export const SDK_VERSION = '7.59.3 ' ;
1
+ export const SDK_VERSION = '7.60.0 ' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/e2e-tests" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"license" : " MIT" ,
5
5
"engines" : {
6
6
"node" : " >=10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/ember" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Ember.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/ember" ,
29
29
},
30
30
"dependencies" : {
31
31
"@embroider/macros" : " ^1.9.0" ,
32
- "@sentry/browser" : " 7.59.3 " ,
33
- "@sentry/types" : " 7.59.3 " ,
34
- "@sentry/utils" : " 7.59.3 " ,
32
+ "@sentry/browser" : " 7.60.0 " ,
33
+ "@sentry/types" : " 7.60.0 " ,
34
+ "@sentry/utils" : " 7.60.0 " ,
35
35
"ember-auto-import" : " ^1.12.1 || ^2.4.3" ,
36
36
"ember-cli-babel" : " ^7.26.11" ,
37
37
"ember-cli-htmlbars" : " ^6.1.1" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/eslint-config-sdk" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK eslint config" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/eslint-config-sdk" ,
19
19
"access" : " public"
20
20
},
21
21
"dependencies" : {
22
- "@sentry-internal/eslint-plugin-sdk" : " 7.59.3 " ,
23
- "@sentry-internal/typescript" : " 7.59.3 " ,
22
+ "@sentry-internal/eslint-plugin-sdk" : " 7.60.0 " ,
23
+ "@sentry-internal/typescript" : " 7.60.0 " ,
24
24
"@typescript-eslint/eslint-plugin" : " ^5.48.0" ,
25
25
"@typescript-eslint/parser" : " ^5.48.0" ,
26
26
"eslint-config-prettier" : " ^6.11.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/eslint-plugin-sdk" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK eslint plugin" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/eslint-plugin-sdk" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/gatsby" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Gatsby.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/gatsby" ,
27
27
"access" : " public"
28
28
},
29
29
"dependencies" : {
30
- "@sentry/core" : " 7.59.3 " ,
31
- "@sentry/react" : " 7.59.3 " ,
32
- "@sentry/types" : " 7.59.3 " ,
33
- "@sentry/utils" : " 7.59.3 " ,
30
+ "@sentry/core" : " 7.60.0 " ,
31
+ "@sentry/react" : " 7.60.0 " ,
32
+ "@sentry/types" : " 7.60.0 " ,
33
+ "@sentry/utils" : " 7.60.0 " ,
34
34
"@sentry/webpack-plugin" : " 1.19.0"
35
35
},
36
36
"peerDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/hub" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Sentry hub which handles global state managment." ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/hub" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry/core" : " 7.59.3 " ,
27
- "@sentry/types" : " 7.59.3 " ,
28
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry/core" : " 7.60.0 " ,
27
+ "@sentry/types" : " 7.60.0 " ,
28
+ "@sentry/utils" : " 7.60.0 " ,
29
29
"tslib" : " ^2.4.1 || ^1.9.3"
30
30
},
31
31
"scripts" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/integration-shims" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Shims for integrations in Sentry SDK." ,
5
5
"main" : " build/cjs/index.js" ,
6
6
"module" : " build/esm/index.js" ,
43
43
"url" : " https://github.com/getsentry/sentry-javascript/issues"
44
44
},
45
45
"dependencies" : {
46
- "@sentry/types" : " 7.59.3 "
46
+ "@sentry/types" : " 7.60.0 "
47
47
},
48
48
"engines" : {
49
49
"node" : " >=12"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/integrations" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Pluggable integrations that can be used to enhance JS SDKs" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/integrations" ,
23
23
}
24
24
},
25
25
"dependencies" : {
26
- "@sentry/types" : " 7.59.3 " ,
27
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry/types" : " 7.60.0 " ,
27
+ "@sentry/utils" : " 7.60.0 " ,
28
28
"localforage" : " ^1.8.1" ,
29
29
"tslib" : " ^2.4.1 || ^1.9.3"
30
30
},
31
31
"devDependencies" : {
32
- "@sentry/browser" : " 7.59.3 " ,
32
+ "@sentry/browser" : " 7.60.0 " ,
33
33
"chai" : " ^4.1.2"
34
34
},
35
35
"scripts" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/nextjs" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Next.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/nextjs" ,
25
25
},
26
26
"dependencies" : {
27
27
"@rollup/plugin-commonjs" : " 24.0.0" ,
28
- "@sentry/core" : " 7.59.3 " ,
29
- "@sentry/integrations" : " 7.59.3 " ,
30
- "@sentry/node" : " 7.59.3 " ,
31
- "@sentry/react" : " 7.59.3 " ,
32
- "@sentry/types" : " 7.59.3 " ,
33
- "@sentry/utils" : " 7.59.3 " ,
28
+ "@sentry/core" : " 7.60.0 " ,
29
+ "@sentry/integrations" : " 7.60.0 " ,
30
+ "@sentry/node" : " 7.60.0 " ,
31
+ "@sentry/react" : " 7.60.0 " ,
32
+ "@sentry/types" : " 7.60.0 " ,
33
+ "@sentry/utils" : " 7.60.0 " ,
34
34
"@sentry/webpack-plugin" : " 1.20.0" ,
35
35
"chalk" : " 3.0.0" ,
36
36
"rollup" : " 2.78.0" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry-internal/node-integration-tests" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"license" : " MIT" ,
5
5
"engines" : {
6
6
"node" : " >=10"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/node" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for Node.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/node" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry-internal/tracing" : " 7.59.3 " ,
27
- "@sentry/core" : " 7.59.3 " ,
28
- "@sentry/types" : " 7.59.3 " ,
29
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry-internal/tracing" : " 7.60.0 " ,
27
+ "@sentry/core" : " 7.60.0 " ,
28
+ "@sentry/types" : " 7.60.0 " ,
29
+ "@sentry/utils" : " 7.60.0 " ,
30
30
"cookie" : " ^0.4.1" ,
31
31
"https-proxy-agent" : " ^5.0.0" ,
32
32
"lru_map" : " ^0.3.3" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/opentelemetry-node" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for OpenTelemetry Node.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/opentelemetry-node" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry/core" : " 7.59.3 " ,
27
- "@sentry/types" : " 7.59.3 " ,
28
- "@sentry/utils" : " 7.59.3 "
26
+ "@sentry/core" : " 7.60.0 " ,
27
+ "@sentry/types" : " 7.60.0 " ,
28
+ "@sentry/utils" : " 7.60.0 "
29
29
},
30
30
"peerDependencies" : {
31
31
"@opentelemetry/api" : " 1.x" ,
39
39
"@opentelemetry/sdk-trace-base" : " ^1.7.0" ,
40
40
"@opentelemetry/sdk-trace-node" : " ^1.7.0" ,
41
41
"@opentelemetry/semantic-conventions" : " ^1.7.0" ,
42
- "@sentry/node" : " 7.59.3 "
42
+ "@sentry/node" : " 7.60.0 "
43
43
},
44
44
"scripts" : {
45
45
"build" : " run-p build:transpile build:types" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"name" : " @sentry-internal/overhead-metrics" ,
5
5
"main" : " index.js" ,
6
6
"author" : " Sentry" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sentry/react" ,
3
- "version" : " 7.59.3 " ,
3
+ "version" : " 7.60.0 " ,
4
4
"description" : " Official Sentry SDK for React.js" ,
5
5
"repository" : " git://github.com/getsentry/sentry-javascript.git" ,
6
6
"homepage" : " https://github.com/getsentry/sentry-javascript/tree/master/packages/react" ,
23
23
"access" : " public"
24
24
},
25
25
"dependencies" : {
26
- "@sentry/browser" : " 7.59.3 " ,
27
- "@sentry/types" : " 7.59.3 " ,
28
- "@sentry/utils" : " 7.59.3 " ,
26
+ "@sentry/browser" : " 7.60.0 " ,
27
+ "@sentry/types" : " 7.60.0 " ,
28
+ "@sentry/utils" : " 7.60.0 " ,
29
29
"hoist-non-react-statics" : " ^3.3.2" ,
30
30
"tslib" : " ^2.4.1 || ^1.9.3"
31
31
},
You can’t perform that action at this time.
0 commit comments