fix(deps): update sentry-javascript monorepo to v7.59.1 #3689

Merged
konrad merged 1 commits from renovate/sentry-javascript-monorepo into main 2023-07-18 08:49:31 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@sentry/tracing (source) dependencies minor 7.58.1 -> 7.59.1
@sentry/vue (source) dependencies minor 7.58.1 -> 7.59.1

Release Notes

getsentry/sentry-javascript

v7.59.1

Compare Source

No changes. This release was published to fix a publishing issue with 7.59.0. Please see 7.59.0 for the changes in that release.

Bundle size 📦
Path Size
@​sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.95 KB
@​sentry/browser - ES5 CDN Bundle (minified) 69.13 KB
@​sentry/browser - ES6 CDN Bundle (gzipped + minified) 20.29 KB
@​sentry/browser - ES6 CDN Bundle (minified) 60.38 KB
@​sentry/browser - Webpack (gzipped + minified) 21.9 KB
@​sentry/browser - Webpack (minified) 71.51 KB
@​sentry/react - Webpack (gzipped + minified) 21.92 KB
@​sentry/nextjs Client - Webpack (gzipped + minified) 50.76 KB
@​sentry/browser + @​sentry/tracing - ES5 CDN Bundle (gzipped + minified) 30.33 KB
@​sentry/browser + @​sentry/tracing - ES6 CDN Bundle (gzipped + minified) 28.2 KB
@​sentry/replay ES6 CDN Bundle (gzipped + minified) 49.44 KB
@​sentry/replay - Webpack (gzipped + minified) 43.16 KB
@​sentry/browser + @​sentry/tracing + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 69.56 KB
@​sentry/browser + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 61.84 KB

v7.59.0

Compare Source

Important Changes
  • feat(remix): Add Remix v2 support (#​8415)

This release adds support for Remix v2 future flags, in particular for the new error handling utilities of Remix v2. We recommend you switch to using v2_errorBoundary future flag to get the best error handling experience with Sentry.

To capture errors from v2 client-side ErrorBoundary, you should define your own ErrorBoundary in root.tsx and use Sentry.captureRemixErrorBoundaryError helper to capture the error.

// root.tsx
import { captureRemixErrorBoundaryError } from "@​sentry/remix";

export const ErrorBoundary: V2_ErrorBoundaryComponent = () => {
  const error = useRouteError();

  captureRemixErrorBoundaryError(error);

  return <div> ... </div>;
};

For server-side errors, define a handleError function in your server entry point and use the Sentry.captureRemixServerException helper to capture the error.

// entry.server.tsx
export function handleError(
  error: unknown,
  { request }: DataFunctionArgs
): void {
  if (error instanceof Error) {
    Sentry.captureRemixServerException(error, "remix.server", request);
  } else {
    // Optionally capture non-Error objects
    Sentry.captureException(error);
  }
}

For more details, see the Sentry Remix SDK documentation.

Other Changes
  • feat(core): Add ModuleMetadata integration (#​8475)
  • feat(core): Allow multiplexed transport to send to multiple releases (#​8559)
  • feat(tracing): Add more network timings to http calls (#​8540)
  • feat(tracing): Bring http timings out of experiment (#​8563)
  • fix(nextjs): Avoid importing SentryWebpackPlugin in dev mode (#​8557)
  • fix(otel): Use HTTP_URL attribute for client requests (#​8539)
  • fix(replay): Better session storage check (#​8547)
  • fix(replay): Handle errors in beforeAddRecordingEvent callback (#​8548)
  • fix(tracing): Improve network.protocol.version (#​8502)

Bundle size 📦

Path Size
@​sentry/browser - ES5 CDN Bundle (gzipped + minified) 21.95 KB
@​sentry/browser - ES5 CDN Bundle (minified) 69.13 KB
@​sentry/browser - ES6 CDN Bundle (gzipped + minified) 20.28 KB
@​sentry/browser - ES6 CDN Bundle (minified) 60.38 KB
@​sentry/browser - Webpack (gzipped + minified) 21.9 KB
@​sentry/browser - Webpack (minified) 71.51 KB
@​sentry/react - Webpack (gzipped + minified) 21.92 KB
@​sentry/nextjs Client - Webpack (gzipped + minified) 50.76 KB
@​sentry/browser + @​sentry/tracing - ES5 CDN Bundle (gzipped + minified) 30.33 KB
@​sentry/browser + @​sentry/tracing - ES6 CDN Bundle (gzipped + minified) 28.2 KB
@​sentry/replay ES6 CDN Bundle (gzipped + minified) 49.44 KB
@​sentry/replay - Webpack (gzipped + minified) 43.16 KB
@​sentry/browser + @​sentry/tracing + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 69.56 KB
@​sentry/browser + @​sentry/replay - ES6 CDN Bundle (gzipped + minified) 61.83 KB

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@sentry/tracing](https://github.com/getsentry/sentry-javascript/tree/master/packages/tracing) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.58.1` -> `7.59.1`](https://renovatebot.com/diffs/npm/@sentry%2ftracing/7.58.1/7.59.1) | | [@sentry/vue](https://github.com/getsentry/sentry-javascript/tree/master/packages/vue) ([source](https://github.com/getsentry/sentry-javascript)) | dependencies | minor | [`7.58.1` -> `7.59.1`](https://renovatebot.com/diffs/npm/@sentry%2fvue/7.58.1/7.59.1) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript</summary> ### [`v7.59.1`](https://github.com/getsentry/sentry-javascript/releases/tag/7.59.1) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.59.0...7.59.1) No changes. This release was published to fix a publishing issue with 7.59.0. Please see [7.59.0](#&#8203;7590) for the changes in that release. ##### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------------------------------- | ---------------- | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES5 CDN Bundle (gzipped + minified) | 21.95 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES5 CDN Bundle (minified) | 69.13 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES6 CDN Bundle (gzipped + minified) | 20.29 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES6 CDN Bundle (minified) | 60.38 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - Webpack (gzipped + minified) | 21.9 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - Webpack (minified) | 71.51 KB | | [@&#8203;sentry/react](https://github.com/sentry/react) - Webpack (gzipped + minified) | 21.92 KB | | [@&#8203;sentry/nextjs](https://github.com/sentry/nextjs) Client - Webpack (gzipped + minified) | 50.76 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) - ES5 CDN Bundle (gzipped + minified) | 30.33 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) - ES6 CDN Bundle (gzipped + minified) | 28.2 KB | | [@&#8203;sentry/replay](https://github.com/sentry/replay) ES6 CDN Bundle (gzipped + minified) | 49.44 KB | | [@&#8203;sentry/replay](https://github.com/sentry/replay) - Webpack (gzipped + minified) | 43.16 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) + [@&#8203;sentry/replay](https://github.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 69.56 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/replay](https://github.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 61.84 KB | ### [`v7.59.0`](https://github.com/getsentry/sentry-javascript/releases/tag/7.59.0) [Compare Source](https://github.com/getsentry/sentry-javascript/compare/7.58.1...7.59.0) ##### Important Changes - **feat(remix): Add Remix v2 support ([#&#8203;8415](https://github.com/getsentry/sentry-javascript/issues/8415))** This release adds support for Remix v2 future flags, in particular for the new error handling utilities of Remix v2. We recommend you switch to using `v2_errorBoundary` future flag to get the best error handling experience with Sentry. To capture errors from [v2 client-side ErrorBoundary](https://remix.run/docs/en/main/route/error-boundary-v2), you should define your own `ErrorBoundary` in `root.tsx` and use `Sentry.captureRemixErrorBoundaryError` helper to capture the error. ```typescript // root.tsx import { captureRemixErrorBoundaryError } from "@&#8203;sentry/remix"; export const ErrorBoundary: V2_ErrorBoundaryComponent = () => { const error = useRouteError(); captureRemixErrorBoundaryError(error); return <div> ... </div>; }; ``` For server-side errors, define a [`handleError`](https://remix.run/docs/en/main/file-conventions/entry.server#handleerror) function in your server entry point and use the `Sentry.captureRemixServerException` helper to capture the error. ```ts // entry.server.tsx export function handleError( error: unknown, { request }: DataFunctionArgs ): void { if (error instanceof Error) { Sentry.captureRemixServerException(error, "remix.server", request); } else { // Optionally capture non-Error objects Sentry.captureException(error); } } ``` For more details, see the Sentry [Remix SDK](https://docs.sentry.io/platforms/javascript/guides/remix/) documentation. ##### Other Changes - feat(core): Add `ModuleMetadata` integration ([#&#8203;8475](https://github.com/getsentry/sentry-javascript/issues/8475)) - feat(core): Allow multiplexed transport to send to multiple releases ([#&#8203;8559](https://github.com/getsentry/sentry-javascript/issues/8559)) - feat(tracing): Add more network timings to http calls ([#&#8203;8540](https://github.com/getsentry/sentry-javascript/issues/8540)) - feat(tracing): Bring http timings out of experiment ([#&#8203;8563](https://github.com/getsentry/sentry-javascript/issues/8563)) - fix(nextjs): Avoid importing `SentryWebpackPlugin` in dev mode ([#&#8203;8557](https://github.com/getsentry/sentry-javascript/issues/8557)) - fix(otel): Use `HTTP_URL` attribute for client requests ([#&#8203;8539](https://github.com/getsentry/sentry-javascript/issues/8539)) - fix(replay): Better session storage check ([#&#8203;8547](https://github.com/getsentry/sentry-javascript/issues/8547)) - fix(replay): Handle errors in `beforeAddRecordingEvent` callback ([#&#8203;8548](https://github.com/getsentry/sentry-javascript/issues/8548)) - fix(tracing): Improve network.protocol.version ([#&#8203;8502](https://github.com/getsentry/sentry-javascript/issues/8502)) #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------------------------------- | ---------------- | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES5 CDN Bundle (gzipped + minified) | 21.95 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES5 CDN Bundle (minified) | 69.13 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES6 CDN Bundle (gzipped + minified) | 20.28 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - ES6 CDN Bundle (minified) | 60.38 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - Webpack (gzipped + minified) | 21.9 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) - Webpack (minified) | 71.51 KB | | [@&#8203;sentry/react](https://github.com/sentry/react) - Webpack (gzipped + minified) | 21.92 KB | | [@&#8203;sentry/nextjs](https://github.com/sentry/nextjs) Client - Webpack (gzipped + minified) | 50.76 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) - ES5 CDN Bundle (gzipped + minified) | 30.33 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) - ES6 CDN Bundle (gzipped + minified) | 28.2 KB | | [@&#8203;sentry/replay](https://github.com/sentry/replay) ES6 CDN Bundle (gzipped + minified) | 49.44 KB | | [@&#8203;sentry/replay](https://github.com/sentry/replay) - Webpack (gzipped + minified) | 43.16 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/tracing](https://github.com/sentry/tracing) + [@&#8203;sentry/replay](https://github.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 69.56 KB | | [@&#8203;sentry/browser](https://github.com/sentry/browser) + [@&#8203;sentry/replay](https://github.com/sentry/replay) - ES6 CDN Bundle (gzipped + minified) | 61.83 KB | </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4yNC42IiwidXBkYXRlZEluVmVyIjoiMzUuMjQuNiJ9-->
renovate added the
dependencies
label 2023-07-17 23:05:01 +00:00
renovate force-pushed renovate/sentry-javascript-monorepo from 84c02af160 to e596e2c3bc 2023-07-18 08:04:51 +00:00 Compare
renovate changed title from fix(deps): update dependency @sentry/tracing to v7.59.0 to fix(deps): update sentry-javascript monorepo to v7.59.1 2023-07-18 08:04:56 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://3689-renovate-sentry-javascript-monor--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://3689-renovate-sentry-javascript-monor--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit e596e2c3bc into main 2023-07-18 08:49:31 +00:00
konrad deleted branch renovate/sentry-javascript-monorepo 2023-07-18 08:49:31 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.