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

Bump @sentry/browser from 7.23.0 to 7.56.0 #5729

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 20, 2023

Bumps @sentry/browser from 7.23.0 to 7.56.0.

Release notes

Sourced from @​sentry/browser's releases.

7.56.0

  • feat(replay): Rework slow click & multi click detection (#8322)
  • feat(replay): Stop replay when event buffer exceeds max. size (#8315)
  • feat(replay): Consider window.open for slow clicks (#8308)
  • fix(core): Temporarily store debug IDs in stack frame and only put them into debug_meta before sending (#8347)
  • fix(remix): Extract deferred responses correctly in root loaders. (#8305)
  • fix(vue): Don't call next in Vue router 4 instrumentation (#8351)

Bundle size 📦

Path Size
@​sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.17 KB
@​sentry/browser - ES5 CDN Bundle (minified) 66.13 KB
@​sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.71 KB
@​sentry/browser - ES6 CDN Bundle (minified) 58.6 KB
@​sentry/browser - Webpack (gzipped + minified) 21.33 KB
@​sentry/browser - Webpack (minified) 69.52 KB
@​sentry/react - Webpack (gzipped + minified) 21.36 KB
@​sentry/nextjs Client - Webpack (gzipped + minified) 49.28 KB
@​sentry/browser + @​sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.79 KB
@​sentry/browser + @​sentry/tracing - ES6 CDN Bundle (gzipped + minified) 27.03 KB
@​sentry/replay ES6 CDN Bundle (gzipped + minified) 49.37 KB
@​sentry/replay - Webpack (gzipped + minified) 43.1 KB
@​sentry/browser + @​sentry/tracing + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 68.4 KB
@​sentry/browser + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 61.29 KB

7.55.2

  • fix(replay): Stop exporting EventType from @sentry-internal/rrweb (#8334)
  • fix(serverless): Export captureCheckIn (#8333)

Bundle size 📦

Path Size
@​sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.12 KB
@​sentry/browser - ES5 CDN Bundle (minified) 65.86 KB
@​sentry/browser - ES6 CDN Bundle (gzipped + minified) 19.65 KB
@​sentry/browser - ES6 CDN Bundle (minified) 58.34 KB
@​sentry/browser - Webpack (gzipped + minified) 21.28 KB
@​sentry/browser - Webpack (minified) 69.26 KB
@​sentry/react - Webpack (gzipped + minified) 21.31 KB
@​sentry/nextjs Client - Webpack (gzipped + minified) 49.23 KB
@​sentry/browser + @​sentry/tracing - ES5 CDN Bundle (gzipped + minified) 28.74 KB
@​sentry/browser + @​sentry/tracing - ES6 CDN Bundle (gzipped + minified) 26.98 KB
@​sentry/replay ES6 CDN Bundle (gzipped + minified) 48.6 KB
@​sentry/replay - Webpack (gzipped + minified) 42.26 KB
@​sentry/browser + @​sentry/tracing + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 67.63 KB
@​sentry/browser + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 60.54 KB

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

7.56.0

  • feat(replay): Rework slow click & multi click detection (#8322)
  • feat(replay): Stop replay when event buffer exceeds max. size (#8315)
  • feat(replay): Consider window.open for slow clicks (#8308)
  • fix(core): Temporarily store debug IDs in stack frame and only put them into debug_meta before sending (#8347)
  • fix(remix): Extract deferred responses correctly in root loaders. (#8305)
  • fix(vue): Don't call next in Vue router 4 instrumentation (#8351)

7.55.2

  • fix(replay): Stop exporting EventType from @sentry-internal/rrweb (#8334)
  • fix(serverless): Export captureCheckIn (#8333)

7.55.1

  • fix(replay): Do not export types from @sentry-internal/rrweb (#8329)

7.55.0

  • feat(replay): Capture slow clicks (GA) (#8298)
  • feat(replay): Improve types for replay recording events (#8224)
  • fix(nextjs): Strip query params from transaction names of navigations to unknown routes (#8278)
  • fix(replay): Ignore max session life for buffered sessions (#8258)
  • fix(sveltekit): Export captureCheckIn (#8313)
  • ref(svelte): Add Svelte 4 as a peer dependency (#8280)

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.

... (truncated)

Commits
  • 527bea7 release: 7.56.0
  • 9e58310 Merge pull request #8356 from getsentry/prepare-release/7.56.0
  • e41ce24 meta(changelog): Update changelog for 7.56.0
  • 1bdf2d9 feat(replay): Consider window.open for slow clicks (#8308)
  • 34bb403 feat(replay): Stop replay when event buffer exceeds max. size (#8315)
  • e6ea537 fix(vue): Don't call next in Vue router 4 instrumentation (#8351)
  • a4c858f fix(core): Temporarily store debug IDs in stack frame and only put them into ...
  • dba9a3d feat(replay): Rework slow click & multi click detection (#8322)
  • ea45d20 fix(remix): Extract deferred responses correctly in root loaders. (#8305)
  • db8421c test(remix): Update integration tests to Remix 1.17.0 (#8304)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@sentry/browser](https://github.com/getsentry/sentry-javascript) from 7.23.0 to 7.56.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.23.0...7.56.0)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team June 20, 2023 09:09
@dependabot dependabot bot requested a review from a team as a code owner June 20, 2023 09:09
@dependabot dependabot bot requested a review from mathew-alex June 20, 2023 09:09
@vercel
Copy link

vercel bot commented Jun 20, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
care-storybook ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 27, 2023 6:27pm

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 20, 2023

The following labels could not be found: npm.

@netlify
Copy link

netlify bot commented Jun 20, 2023

Deploy Preview for care-egov-staging ready!

Name Link
🔨 Latest commit 9528f00
🔍 Latest deploy log https://app.netlify.com/sites/care-egov-staging/deploys/649b29c5dad93e000850625b
😎 Deploy Preview https://deploy-preview-5729--care-egov-staging.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@github-actions github-actions bot added the cypress failed pull request with cypress test failure label Jun 20, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 29, 2023

A newer version of @​sentry/browser exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@github-actions
Copy link

github-actions bot commented Jul 7, 2023

Hi, This pr has been automatically marked as stale because it has not had any recent activity. It will be automatically closed if no further activity occurs for 7 more days. Thank you for your contributions.

@github-actions github-actions bot added the stale label Jul 7, 2023
@github-actions
Copy link

Hi, @gigincg, @nihal467, @khavinshankar, @mathew-alex, This pr has been automatically closed because it has not had any recent activity. Thank you for your contributions. Feel free to repopen the pr.

@github-actions github-actions bot closed this Jul 15, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 15, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/sentry/browser-7.56.0 branch July 15, 2023 04:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cypress failed pull request with cypress test failure dependencies stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant