Thanks to visit codestin.com
Credit goes to github.com

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: 10.13.0
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: 10.14.0
Choose a head ref
  • 10 commits
  • 80 files changed
  • 8 contributors

Commits on Sep 22, 2025

  1. feat(cloudflare,vercel-edge): Add support for Google Gen AI instrumen…

    …tation (#17723)
    
    Adds support for Google GenAI manual instrumentation in
    @sentry/cloudflare and @sentry/vercel-edge.
    To instrument the Google GenAI client, wrap it with
    Sentry.instrumentGoogleGenAIClient and set recording settings.
    
    ```
    import * as Sentry from '@sentry/cloudflare';
    import { GoogleGenAI } from '@google/genai';
    
    const genAI = new GoogleGenAI({ apiKey: 'your-api-key' });
    const client = Sentry.instrumentGoogleGenAIClient(genAI, { 
      recordInputs: true,
      recordOutputs: true 
    });
    
    // use the wrapped client with models api
    const model = client.models.generateContent({
      model: 'gemini-1.5-pro',
      contents: [{ role: 'user', parts: [{ text: 'Hello!' }] }]
    });
    
    // or use chat functionality
    const chat = client.chats.create({ model: 'gemini-1.5-flash' });
    const response = await chat.sendMessage({ message: 'Tell me a joke' });
    ```
    RulaKhaled authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    8298495 View commit details
    Browse the repository at this point in the history
  2. test(node): Avoid using specific port for node-integration-tests (#17729

    )
    
    This may flake, so just using any available port instead.
    
    Closes #17716
    mydea authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    34f3479 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'release/10.13.0'

    getsentry-bot committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    2dfe295 View commit details
    Browse the repository at this point in the history
  4. ref(core): Wrap isolationscope in WeakRef when storing it on spans (#…

    …17712)
    
    We often store isolationscopes on spans via `setCapturedScopesOnSpan` and
    retrieve them via `getCapturedScopesOnSpan`. This change wraps the
    scopes in `WeakRef` to attempt fixing a potential memory leak when spans
    hold on to scopes indefinitely.
    
    The downside is spans might end up with undefined scopes on them if the
    scope was garbage collected, we'll have to see if that's an issue or
    not.
    andreiborza authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    b685be6 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #17730 from getsentry/master

    [Gitflow] Merge master into develop
    github-actions[bot] authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    d024907 View commit details
    Browse the repository at this point in the history
  6. test(nuxt): Update Nuxt version and add Nitro $fetch test (#17713)

    This PR adds the following:
    - an E2E test case for Nitro `$fetch` requests
    - Upgrading the Nuxt 4 version (previously in alpha)
    - Deleting the `app.vue` file as this is not needed when using the
    `app/pages` directory (following the [Nuxt
    docs](https://nuxt.com/docs/4.x/guide/directory-structure/app/app))
    s1gr1d authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    d7538cd View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2025

  1. Configuration menu
    Copy the full SHA
    bbb1324 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dfd421b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #17738 from getsentry/prepare-release/10.14.0

    meta(changelog): Update changelog for 10.14.0
    chargome authored Sep 23, 2025
    Configuration menu
    Copy the full SHA
    3e34bd6 View commit details
    Browse the repository at this point in the history
  4. release: 10.14.0

    getsentry-bot committed Sep 23, 2025
    Configuration menu
    Copy the full SHA
    86d972b View commit details
    Browse the repository at this point in the history
Loading