Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getsentry/sentry-javascript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 36ac151
Choose a base ref
...
head repository: getsentry/sentry-javascript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a06f95e
Choose a head ref
  • 16 commits
  • 75 files changed
  • 8 contributors

Commits on Dec 22, 2022

  1. Merge branch 'release/7.28.1'

    getsentry-bot committed Dec 22, 2022
    Configuration menu
    Copy the full SHA
    36488ec View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2023

  1. test(react): Make react unit tests silent (#6545)

    Currently, we have a bunch of `console.warn()` outputs there which mess up the test logs a bit.
    mydea authored Jan 3, 2023
    Configuration menu
    Copy the full SHA
    86d3e06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a11659a View commit details
    Browse the repository at this point in the history
  3. ci(deps): bump JasonEtco/create-an-issue from 2.8.0 to 2.9.1 (#6634)

    Bumps [JasonEtco/create-an-issue](https://github.com/JasonEtco/create-an-issue) from 2.8.0 to 2.9.1.
    - [Release notes](https://github.com/JasonEtco/create-an-issue/releases)
    - [Commits](JasonEtco/create-an-issue@1a16035...e27dddc)
    
    ---
    updated-dependencies:
    - dependency-name: JasonEtco/create-an-issue
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 3, 2023
    Configuration menu
    Copy the full SHA
    1f65247 View commit details
    Browse the repository at this point in the history
  4. ci(deps): bump actions/stale from 3.0.14 to 7.0.0 (#6633)

    * ci(deps): bump actions/stale from 3.0.14 to 7.0.0
    
    Bumps [actions/stale](https://github.com/actions/stale) from 3.0.14 to 7.0.0.
    - [Release notes](https://github.com/actions/stale/releases)
    - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
    - [Commits](actions/stale@87c2b79...6f05e42)
    
    ---
    updated-dependencies:
    - dependency-name: actions/stale
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 3, 2023
    Configuration menu
    Copy the full SHA
    ef0016a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b16ea89 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a23bda5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3b1bcaf View commit details
    Browse the repository at this point in the history
  8. feat(nextjs): Send events consistently on platforms that don't suppor…

    …t streaming (#6578)
    Luca Forstner authored Jan 3, 2023
    Configuration menu
    Copy the full SHA
    371d42d View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2023

  1. ref(replay): Replace lodash.debounce with custom debounce implement…

    …ation (#6593)
    
    Replace lodash's `debounce` function with a custom, minimal implementation that
    - Delays the function invocation by a `wait` time and gate it with a `maxWait` value
    - Provides the return value of the invocation for subsequent debounced function calls
    - Provides a `flush` and `cancel` function on the debounced function (analogously to lodash).
    - Invokes the function _after_ the wait/maxwait time triggered (i.e. on the trailing edge). Lodash allows to choose between the leading and trailing edge, which makes the implementation much more complicated than for us necessary
    - Works for functions _without_ parameters. By not supporting args, we can further cut down bundle size. (We might want to revisit this in the future but for now, this should do).
    
    With this change, we can also get rid of the package patch we introduced in #6551 and of the `commonjs()` plugin in our build process.
    Lms24 authored Jan 4, 2023
    Configuration menu
    Copy the full SHA
    23a7d0b View commit details
    Browse the repository at this point in the history
  2. fix(tracing): Don't finish React Router 6 pageload transactions ear…

    …ly (#6609)
    
    Co-authored-by: Onur Temizkan <onur@narval.co.uk>
    Luca Forstner and onurtemizkan authored Jan 4, 2023
    Configuration menu
    Copy the full SHA
    65cd080 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b674c26 View commit details
    Browse the repository at this point in the history
  4. ref(replay): Extract flush min and max delay default values to consta…

    …nts (#6612)
    
    Extract the default values of flush min and max delays into constants
    Lms24 authored Jan 4, 2023
    Configuration menu
    Copy the full SHA
    b03a32b View commit details
    Browse the repository at this point in the history
  5. feat(core): Add getSdkMetadata to Client (#6643)

    Add a new method to the `Client` interface: `getSdkMetadata`.
    We can use this method in the Replay package to avoid accessing `client.getOptions()._metadata`, which previously caused broken CDN bundles which we hot-fixed with #6600. This change now properly fixes this issue by simply not accessing this "private" field anymore.
    Lms24 authored Jan 4, 2023
    Configuration menu
    Copy the full SHA
    c157f86 View commit details
    Browse the repository at this point in the history
  6. meta: Update changelog for 7.29.0 (#6652)

    Luca Forstner authored Jan 4, 2023
    Configuration menu
    Copy the full SHA
    d1934af View commit details
    Browse the repository at this point in the history
  7. release: 7.29.0

    getsentry-bot committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    a06f95e View commit details
    Browse the repository at this point in the history
Loading