Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update JavaScript SDK to v7.54.0 #3094

Merged
merged 1 commit into from
Jun 13, 2023

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jun 2, 2023

Bumps scripts/update-javascript.sh from 7.53.1 to 7.54.0.

Auto-generated by a dependency updater.

Changelog

7.54.0

Important Changes

  • feat(core): Add default entries to ignoreTransactions for Healthchecks #8191

    All SDKs now filter out health check transactions by default.
    These are transactions where the transaction name matches typical API health check calls, such as /^.*healthy.*$/ or /^. *heartbeat.*$/. Take a look at this list to learn which regexes we currently use to match transaction names.
    We believe that these transactions do not provide value in most cases and we want to save you some of your quota by filtering them out by default.
    These filters are implemented as default values for the top level ignoreTransactions option.

    You can disable this filtering by manually specifiying the InboundFilters integration and setting the disableTransactionDefaults option:

    Sentry.init({
      //...
      integrations: [new InboundFilters({ disableTransactionDefaults: true })],
    })
  • feat(replay): Add mutationBreadcrumbLimit and mutationLimit to Replay Options (#8228)

    The previously experimental options mutationBreadcumbLimit and mutationLimit have been promoted to regular Replay integration options.

    A high number of DOM mutations (in a single event loop) can cause performance regressions in end-users' browsers.
    Use mutationBreadcrumbLimit to send a breadcrumb along with your recording if the mutation limit was reached.
    Use mutationLimit to stop recording if the mutation limit was reached.

  • feat(sveltekit): Add source maps support for Vercel (lambda) (#8256)

    • feat(sveltekit): Auto-detect SvelteKit adapters (#8193)

    The SvelteKit SDK can now be used if you deploy your SvelteKit app to Vercel.
    By default, the SDK's Vite plugin will detect the used adapter and adjust the source map uploading config as necessary.
    If you want to override the default adapter detection, you can specify the adapter option in the sentrySvelteKit options:

    // vite.config.js
    export default defineConfig({
      plugins: [
        sentrySvelteKit({
          adapter: 'vercel',
        }),
        sveltekit(),
      ],
    });

    Currently, the Vite plugin will configure itself correctly for sveltejs/adapter-auto, sveltejs/adapter-vercel and sveltejs/adapter-node.

    Important: The SvelteKit SDK is not yet compatible with Vercel's edge runtime.
    It will only work for lambda functions.

Other Changes

  • feat(replay): Throttle breadcrumbs to max 300/5s (#8086)
  • feat(sveltekit): Add option to control handling of unknown server routes (#8201)
  • fix(node): Strip query and fragment from request URLs without route parameters (#8213)
  • fix(remix): Don't log missing parameters warning on server-side. (#8269)
  • fix(remix): Pass loadContext through wrapped document request function (#8268)
  • fix(replay): Guard against missing key (#8246)
  • fix(sveltekit): Avoid capturing redirects and 4xx Http errors in request Handlers (#8215)
  • fix(sveltekit): Bump magicast to support satisfied keyword (#8254)
  • fix(wasm): Avoid throwing an error when WASM modules are loaded from blobs (#8263)

@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Jun 2, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 0f4ea7c to c89cb3a Compare June 2, 2023 03:04
@github-actions
Copy link
Contributor Author

github-actions bot commented Jun 2, 2023

iOS (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1275.38 ms 1307.88 ms 32.49 ms
Size 2.36 MiB 2.85 MiB 495.71 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
b1e8712+dirty 1256.02 ms 1265.14 ms 9.12 ms
86d6d2c+dirty 1267.55 ms 1286.21 ms 18.66 ms
e73f4ed+dirty 1243.27 ms 1244.52 ms 1.25 ms
8900e1a+dirty 1210.27 ms 1218.66 ms 8.39 ms
d0bf494+dirty 1289.40 ms 1298.40 ms 9.00 ms
0db0c72+dirty 1275.02 ms 1285.84 ms 10.82 ms
76d1baf+dirty 1244.10 ms 1268.52 ms 24.42 ms
34aba08+dirty 1276.78 ms 1308.52 ms 31.74 ms
ad6c299+dirty 1244.76 ms 1260.10 ms 15.34 ms
dadc233+dirty 1223.20 ms 1236.88 ms 13.68 ms

App size

Revision Plain With Sentry Diff
b1e8712+dirty 2.36 MiB 2.84 MiB 488.84 KiB
86d6d2c+dirty 2.36 MiB 2.82 MiB 462.82 KiB
e73f4ed+dirty 2.36 MiB 2.82 MiB 469.44 KiB
8900e1a+dirty 2.36 MiB 2.83 MiB 479.25 KiB
d0bf494+dirty 2.36 MiB 2.83 MiB 481.15 KiB
0db0c72+dirty 2.36 MiB 2.84 MiB 487.01 KiB
76d1baf+dirty 2.36 MiB 2.82 MiB 469.45 KiB
34aba08+dirty 2.36 MiB 2.85 MiB 495.32 KiB
ad6c299+dirty 2.36 MiB 2.84 MiB 488.85 KiB
dadc233+dirty 2.36 MiB 2.84 MiB 486.85 KiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
6750c69+dirty 1242.69 ms 1256.00 ms 13.31 ms
04349b0+dirty 1273.22 ms 1281.90 ms 8.68 ms
98fe518+dirty 1251.16 ms 1262.00 ms 10.84 ms
5eab2fa+dirty 1241.82 ms 1242.70 ms 0.88 ms
60ceb06+dirty 1230.88 ms 1250.42 ms 19.54 ms
0e781a5+dirty 1244.59 ms 1256.72 ms 12.13 ms
6f9eae7+dirty 1266.06 ms 1271.48 ms 5.42 ms

App size

Revision Plain With Sentry Diff
6750c69+dirty 2.36 MiB 2.83 MiB 477.50 KiB
04349b0+dirty 2.36 MiB 2.83 MiB 480.92 KiB
98fe518+dirty 2.36 MiB 2.83 MiB 481.64 KiB
5eab2fa+dirty 2.36 MiB 2.84 MiB 490.39 KiB
60ceb06+dirty 2.36 MiB 2.85 MiB 495.35 KiB
0e781a5+dirty 2.36 MiB 2.85 MiB 495.46 KiB
6f9eae7+dirty 2.36 MiB 2.84 MiB 489.62 KiB

@github-actions
Copy link
Contributor Author

github-actions bot commented Jun 2, 2023

Android (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 264.02 ms 308.77 ms 44.75 ms
Size 7.15 MiB 8.07 MiB 947.35 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
b1e8712+dirty 322.55 ms 331.84 ms 9.29 ms
86d6d2c+dirty 267.21 ms 325.24 ms 58.04 ms
e73f4ed+dirty 262.98 ms 311.02 ms 48.04 ms
8900e1a+dirty 371.40 ms 377.70 ms 6.31 ms
d0bf494+dirty 253.73 ms 308.23 ms 54.49 ms
0db0c72+dirty 335.20 ms 351.06 ms 15.86 ms
76d1baf+dirty 339.02 ms 408.65 ms 69.63 ms
34aba08+dirty 331.79 ms 376.69 ms 44.91 ms
ad6c299+dirty 336.47 ms 362.89 ms 26.42 ms
dadc233+dirty 363.19 ms 370.37 ms 7.18 ms

App size

Revision Plain With Sentry Diff
b1e8712+dirty 7.15 MiB 8.04 MiB 912.27 KiB
86d6d2c+dirty 7.15 MiB 8.09 MiB 962.69 KiB
e73f4ed+dirty 7.15 MiB 8.09 MiB 965.94 KiB
8900e1a+dirty 7.15 MiB 8.03 MiB 901.79 KiB
d0bf494+dirty 7.15 MiB 8.04 MiB 910.85 KiB
0db0c72+dirty 7.15 MiB 8.04 MiB 911.02 KiB
76d1baf+dirty 7.15 MiB 8.09 MiB 964.41 KiB
34aba08+dirty 7.15 MiB 8.07 MiB 946.13 KiB
ad6c299+dirty 7.15 MiB 8.04 MiB 912.17 KiB
dadc233+dirty 7.15 MiB 8.04 MiB 910.84 KiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
6750c69+dirty 277.10 ms 322.10 ms 45.00 ms
04349b0+dirty 333.83 ms 366.86 ms 33.02 ms
98fe518+dirty 334.79 ms 372.23 ms 37.44 ms
5eab2fa+dirty 308.78 ms 331.98 ms 23.20 ms
60ceb06+dirty 282.59 ms 328.73 ms 46.14 ms
0e781a5+dirty 267.70 ms 357.64 ms 89.94 ms
6f9eae7+dirty 346.26 ms 417.65 ms 71.40 ms

App size

Revision Plain With Sentry Diff
6750c69+dirty 7.15 MiB 8.10 MiB 971.75 KiB
04349b0+dirty 7.15 MiB 8.10 MiB 977.92 KiB
98fe518+dirty 7.15 MiB 8.04 MiB 911.30 KiB
5eab2fa+dirty 7.15 MiB 8.04 MiB 913.81 KiB
60ceb06+dirty 7.15 MiB 8.05 MiB 923.49 KiB
0e781a5+dirty 7.15 MiB 8.07 MiB 946.50 KiB
6f9eae7+dirty 7.15 MiB 8.04 MiB 913.76 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from c89cb3a to c289050 Compare June 5, 2023 14:11
@github-actions
Copy link
Contributor Author

github-actions bot commented Jun 5, 2023

Android (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 340.25 ms 347.10 ms 6.85 ms
Size 17.73 MiB 19.80 MiB 2.07 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
86d6d2c+dirty 332.90 ms 352.45 ms 19.55 ms
ad6c299 375.94 ms 382.02 ms 6.08 ms
e73f4ed+dirty 332.96 ms 354.33 ms 21.37 ms
8900e1a+dirty 430.68 ms 456.13 ms 25.44 ms
d0bf494+dirty 375.37 ms 395.14 ms 19.77 ms
76d1baf+dirty 335.72 ms 355.52 ms 19.80 ms
34aba08 328.10 ms 342.84 ms 14.74 ms
80b2ce3 385.02 ms 387.36 ms 2.34 ms
b1e8712 462.11 ms 465.71 ms 3.60 ms
dadc233+dirty 333.78 ms 343.94 ms 10.16 ms

App size

Revision Plain With Sentry Diff
86d6d2c+dirty 17.73 MiB 20.04 MiB 2.31 MiB
ad6c299 17.73 MiB 19.75 MiB 2.02 MiB
e73f4ed+dirty 17.73 MiB 20.04 MiB 2.31 MiB
8900e1a+dirty 17.73 MiB 19.75 MiB 2.01 MiB
d0bf494+dirty 17.73 MiB 19.75 MiB 2.02 MiB
76d1baf+dirty 17.73 MiB 20.04 MiB 2.31 MiB
34aba08 17.73 MiB 19.80 MiB 2.07 MiB
80b2ce3 17.73 MiB 19.75 MiB 2.02 MiB
b1e8712 17.73 MiB 19.75 MiB 2.02 MiB
dadc233+dirty 17.73 MiB 19.75 MiB 2.02 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
5eab2fa 334.02 ms 351.58 ms 17.56 ms
6750c69+dirty 393.45 ms 434.06 ms 40.62 ms
04349b0+dirty 347.00 ms 354.78 ms 7.78 ms
98fe518+dirty 334.39 ms 349.35 ms 14.96 ms
60ceb06 329.83 ms 336.19 ms 6.36 ms
6f9eae7 353.08 ms 360.29 ms 7.21 ms
0e781a5 323.60 ms 347.85 ms 24.26 ms

App size

Revision Plain With Sentry Diff
5eab2fa 17.73 MiB 19.76 MiB 2.02 MiB
6750c69+dirty 17.73 MiB 20.05 MiB 2.32 MiB
04349b0+dirty 17.73 MiB 20.06 MiB 2.32 MiB
98fe518+dirty 17.73 MiB 19.75 MiB 2.02 MiB
60ceb06 17.73 MiB 19.77 MiB 2.03 MiB
6f9eae7 17.73 MiB 19.76 MiB 2.02 MiB
0e781a5 17.73 MiB 19.80 MiB 2.07 MiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from c289050 to 5bec9d0 Compare June 12, 2023 15:06
@github-actions
Copy link
Contributor Author

github-actions bot commented Jun 12, 2023

iOS (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1259.88 ms 1269.09 ms 9.21 ms
Size 2.92 MiB 3.41 MiB 499.88 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
b1e8712+dirty 1284.11 ms 1297.82 ms 13.71 ms
86d6d2c+dirty 1291.62 ms 1296.80 ms 5.18 ms
e73f4ed+dirty 1282.90 ms 1309.30 ms 26.40 ms
8900e1a+dirty 1268.36 ms 1273.04 ms 4.68 ms
d0bf494+dirty 1266.20 ms 1267.52 ms 1.32 ms
0db0c72+dirty 1258.88 ms 1262.52 ms 3.64 ms
76d1baf+dirty 1245.00 ms 1257.76 ms 12.76 ms
34aba08+dirty 1268.58 ms 1276.80 ms 8.22 ms
ad6c299+dirty 1248.50 ms 1248.88 ms 0.38 ms
dadc233+dirty 1266.52 ms 1282.55 ms 16.03 ms

App size

Revision Plain With Sentry Diff
b1e8712+dirty 2.92 MiB 3.40 MiB 494.15 KiB
86d6d2c+dirty 2.92 MiB 3.37 MiB 464.31 KiB
e73f4ed+dirty 2.92 MiB 3.38 MiB 475.71 KiB
8900e1a+dirty 2.92 MiB 3.39 MiB 485.96 KiB
d0bf494+dirty 2.92 MiB 3.40 MiB 488.08 KiB
0db0c72+dirty 2.92 MiB 3.40 MiB 492.71 KiB
76d1baf+dirty 2.92 MiB 3.38 MiB 475.74 KiB
34aba08+dirty 2.92 MiB 3.41 MiB 499.03 KiB
ad6c299+dirty 2.92 MiB 3.40 MiB 494.12 KiB
dadc233+dirty 2.92 MiB 3.40 MiB 492.53 KiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
6750c69+dirty 1285.45 ms 1285.86 ms 0.41 ms
04349b0+dirty 1241.88 ms 1258.20 ms 16.32 ms
98fe518+dirty 1259.43 ms 1263.60 ms 4.17 ms
5eab2fa+dirty 1284.29 ms 1306.68 ms 22.39 ms
60ceb06+dirty 1242.86 ms 1253.76 ms 10.90 ms
0e781a5+dirty 1268.86 ms 1269.18 ms 0.32 ms
6f9eae7+dirty 1256.06 ms 1278.59 ms 22.53 ms

App size

Revision Plain With Sentry Diff
6750c69+dirty 2.92 MiB 3.39 MiB 484.54 KiB
04349b0+dirty 2.92 MiB 3.40 MiB 487.96 KiB
98fe518+dirty 2.92 MiB 3.40 MiB 488.60 KiB
5eab2fa+dirty 2.92 MiB 3.40 MiB 495.21 KiB
60ceb06+dirty 2.92 MiB 3.41 MiB 499.07 KiB
0e781a5+dirty 2.92 MiB 3.41 MiB 499.67 KiB
6f9eae7+dirty 2.92 MiB 3.40 MiB 494.93 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 5bec9d0 to 3171959 Compare June 12, 2023 17:28
@krystofwoldrich krystofwoldrich merged commit d74882f into main Jun 13, 2023
@krystofwoldrich krystofwoldrich deleted the deps/scripts/update-javascript.sh branch June 13, 2023 08:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants