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

meta(changelog): Update changelog for 7.56.0 #8356

Merged
merged 9 commits into from
Jun 19, 2023
Merged

Commits on Jun 14, 2023

  1. Merge pull request #8337 from getsentry/master

    [Gitflow] Merge master into develop
    github-actions[bot] committed Jun 14, 2023
    Configuration menu
    Copy the full SHA
    cea21bb View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. test(remix): Update integration tests to Remix 1.17.0 (#8304)

    Updates the version of Remix used in integration tests to the latest
    1.17.0, which is needed to test `handleError` and `defer` features.
    onurtemizkan committed Jun 15, 2023
    Configuration menu
    Copy the full SHA
    db8421c View commit details
    Browse the repository at this point in the history
  2. fix(remix): Extract deferred responses correctly in root loaders. (#8305

    )
    
    Co-authored-by: Abhijeet Prasad <aprasad@sentry.io>
    onurtemizkan and AbhiPrasad committed Jun 15, 2023
    Configuration menu
    Copy the full SHA
    ea45d20 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2023

  1. feat(replay): Rework slow click & multi click detection (#8322)

    This PR reworks the slow click detection to accommodate rage click
    detection as well.
    This required substantial changes, as we need to keep track of stuff
    much more.
    
    Now, we keep a list of clicks that come in in a new class. We register a
    single set of listeners (mutation observer, click listener, scroll
    listener), and then try to route things to the correct clicks as much as
    possible.
    
    Any clicks within 1 second count as "multi click", so are not considered
    for slow clicks at all, but counted on the first click. After a second,
    a click (even on the same element) will be treated as a "new" click.
    
    ref #8300
    mydea committed Jun 16, 2023
    Configuration menu
    Copy the full SHA
    dba9a3d View commit details
    Browse the repository at this point in the history
  2. fix(core): Temporarily store debug IDs in stack frame and only put th…

    …em into `debug_meta` before sending (#8347)
    lforst committed Jun 16, 2023
    Configuration menu
    Copy the full SHA
    a4c858f View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2023

  1. fix(vue): Don't call next in Vue router 4 instrumentation (#8351)

    Vue Router 4 no longer exposes a `next` resolver function to call inside a `beforeEach` [router guard callback](https://router.vuejs.org/guide/advanced/navigation-guards.html#global-before-guards).
    Instead it will resolve the hook when the callback function returns.
    
    This PR checks if `next` is available and only calls it then. Also it
    adjusts the types accordingly and adds a test that previously failed.
    
    fixes #8349
    Lms24 committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    e6ea537 View commit details
    Browse the repository at this point in the history
  2. feat(replay): Stop replay when event buffer exceeds max. size (#8315)

    When the buffer exceeds ~20MB, stop the replay.
    
    Closes #7657
    Closes getsentry/team-replay#94
    mydea committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    34bb403 View commit details
    Browse the repository at this point in the history
  3. feat(replay): Consider window.open for slow clicks (#8308)

    When a click triggers `window.open()`, do not consider it a slow click.
    
    Closes #8301
    mydea committed Jun 19, 2023
    Configuration menu
    Copy the full SHA
    1bdf2d9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e41ce24 View commit details
    Browse the repository at this point in the history