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: 7.79.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: 7.80.0
Choose a head ref
  • 13 commits
  • 97 files changed
  • 8 contributors

Commits on Nov 8, 2023

  1. feat(feedback): use custom prepare/send, re-use createEventEnvelope f…

    …rom core (#9432)
    
    Remove the use of our temporary ingest endpoint, and use our normal
    ingestion instead.
    billyvg authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    2fc6632 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'release/7.79.0'

    getsentry-bot committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    b435ea5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #9492 from getsentry/master

    [Gitflow] Merge master into develop
    github-actions[bot] authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    ea02ee5 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Configuration menu
    Copy the full SHA
    db5ce41 View commit details
    Browse the repository at this point in the history
  2. test(e2e): Increase polling timeout from 30 to 90 seconds (#9491)

    We talked about this a few times, maybe increasing the timeout here
    helps!
    mydea authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    be44a21 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b84905 View commit details
    Browse the repository at this point in the history
  4. feat(remix): Export a type to use for MetaFunction parameters (#9493)

    Exported a type to be used like:
    
    ```typescript
    export const meta = ({ data }: SentryMetaArgs<MetaFunction<typeof loader>>) => {
      return [
        {
          env: data.ENV,
        },
        {
          name: 'sentry-trace',
          content: data.sentryTrace,
        },
        {
          name: 'baggage',
          content: data.sentryBaggage,
        },
      ];
    };
    
    ```
    
    So the types from `loader` function and our injections are both
    available in type checking.
    
    Also, updated e2e tests to include `meta` injection checks for root and
    sub-routes.
    onurtemizkan authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    b531549 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    061fe5a View commit details
    Browse the repository at this point in the history
  6. fix(astro): Mark SDK package as Astro-external (#9509)

    Astro's Vite plugin tries to detect if a package is an "astro component
    package" (i.e. contains `.astro`) files by checking for a bunch of
    heuristics in the project's `package.json`. These packages will be run
    through the Astro compiler.
    
    
    https://github.com/withastro/astro/blob/7c458514c06c95158245bba4fa3c254abd333f5a/packages/astro/src/core/create-vite.ts#L74-L89
    
    Because our SDK package matches multiple of the used heuristics, it is
    added to the compiler build which causes errors because some of our
    packages make the build fail (not sure why/how). Apparently, this is
    only problematic when the project is managed by `pnpm` which results in
    a build error. Other package managers don't seem to have a problem.
    Lms24 authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    ab39b26 View commit details
    Browse the repository at this point in the history
  7. feat(astro): Add distributed tracing via <meta> tags (#9483)

    Add `<meta>` tag injection in our new `handleRequest` Astro
    middleware to enable distributed traces between BE and FE transactions.
    
    This is also the first step towards exporting a `<meta>` tag helper
    function (tracked in #8438). In a future PR I'll extract the function to
    the core or utils package and export it in our server-side SDKs.
    Lms24 authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    4fc2e7e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e0a9d58 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #9510 from getsentry/prepare-release/7.80.0

    meta: Update changelog for 7.80.0
    Lms24 authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    2789420 View commit details
    Browse the repository at this point in the history
  10. release: 7.80.0

    getsentry-bot committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    c9fd9ca View commit details
    Browse the repository at this point in the history
Loading