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: develop@{1day}
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: develop
Choose a head ref
  • 11 commits
  • 84 files changed
  • 8 contributors

Commits on Nov 10, 2025

  1. feat(aws): Add SENTRY_LAYER_EXTENSION to configure using the lambda…

    … layer extension via env variables (#18101)
    
    Our recommended approach for the aws sdk is to use our Lambda layer.
    When the Lambda layer is used, it would previously automatically set up
    the layer extension. This can be disabled by setting `useLayerExtension:
    false` during init, but when using the layer with our auto-wrapping as
    per recommendation, it wasn't possible to opt out of using the
    extension.
    
    This PR adds `SENTRY_LAYER_EXTENSION` that can be used to opt out of the
    extension.
    
    ---------
    
    Co-authored-by: Lukas Stracke <[email protected]>
    andreiborza and Lms24 authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    d26e1a9 View commit details
    Browse the repository at this point in the history
  2. fix(nextjs): Delete css map files (#18131)

    closes #18125
    
    We want to delete `*.map.css` files when `deleteSourcemapsAfterUpload`
    is enabled.
    chargome authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    10211f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0054094 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #18133 from getsentry/prepare-release/10.24.0

    meta(changelog): Update changelog for 10.24.0
    chargome authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    e861b4f View commit details
    Browse the repository at this point in the history
  5. release: 10.24.0

    getsentry-bot committed Nov 10, 2025
    Configuration menu
    Copy the full SHA
    907546f View commit details
    Browse the repository at this point in the history
  6. Merge branch 'release/10.24.0'

    getsentry-bot committed Nov 10, 2025
    Configuration menu
    Copy the full SHA
    d01b2a6 View commit details
    Browse the repository at this point in the history
  7. feat(node): Add maxCacheKeyLength to Redis integration (remove trun…

    …cation) (#18045)
    
    This removes the automatic truncation of the span description. Now, all
    cache keys are set in the description.
    
    part of #17389
    s1gr1d authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    7019263 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #18138 from getsentry/master

    [Gitflow] Merge master into develop
    github-actions[bot] authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    487e75e View commit details
    Browse the repository at this point in the history
  9. feat(browser): Include Spotlight in development bundles (#18078)

    This PR:
    - Splits the browser build output into separate development and
    production builds
    - References these two builds in the package.json exports
    - Adds a Rollup plugin to production builds which can strip out code
    wrapped with development-only magic comments
    - Adds the spotlight integration to the default integrations in
    development mode only
    - Also adds this plugin for browser bundles so spotlight doesn't get
    included in CDN bundles
    timfish authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    8b33254 View commit details
    Browse the repository at this point in the history
  10. fix(core): Only consider exception mechanism when updating session st…

    …atus from event with exceptions (#18137)
    
    This PR fixes an oversight in our session update logic when we update
    the SDK's session status while processing an error event. Previously,
    we'd always set `status: 'crashed'` as soon as the top-level
    `event.level` field was set to `'fatal'` (added in
    #15072). However,
    this disregarded the case where the level was initially `'fatal'` but
    later on the SDK or users decided to set the
    `event.exceptions.values[i].mechanism.handled` field to `true`.
    
    Simplest reproduction:
    
    ```
    Sentry.captureException(new Error('test'), { captureContext: { level: 'fatal' } });
    ```
    
    This PR changes the update logic to only look at the event mechanisms if
    the event contained exceptions. I _think_ this is still compatible with
    #15072 because the PR suggests we only care about `event.level ===
    'fatal'` if no exceptions are on the event. But I'd appreciate a second
    pair of eyes on this (cc @timfish).
    Lms24 authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    6de4cba View commit details
    Browse the repository at this point in the history
  11. ref(browser): Remove truncation when not needed (#18051)

    Removes the remaining places where we truncate, although not needed.
    
    part of #17389
    s1gr1d authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    02625ef View commit details
    Browse the repository at this point in the history
Loading