gefyrahq / gefyra-docker-desktop-extension

Docker Desktop Extension for Gefyra. Connect your local containers to Kubernetes!
https://gefyra.dev
Apache License 2.0
3 stars 1 forks source link

chore(deps): bump @sentry/react from 7.54.0 to 7.59.3 in /ui #236

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps @sentry/react from 7.54.0 to 7.59.3.

Release notes

Sourced from @​sentry/react's releases.

7.59.3

  • fix(browser): 0 is a valid index (#8581)
  • fix(nextjs): Ensure Webpack plugin is available after dynamic require (#8584)
  • types(browser): Add browser profiling client options (#8565)

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.91 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.19 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

7.59.2

No changes. This release was published to fix publishing issues with 7.59.0 and 7.59.1. 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.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.19 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

7.59.1

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.

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

7.59.3

  • fix(browser): 0 is a valid index (#8581)
  • fix(nextjs): Ensure Webpack plugin is available after dynamic require (#8584)
  • types(browser): Add browser profiling client options (#8565)

7.59.2

No changes. This release was published to fix publishing issues with 7.59.0 and 7.59.1. Please see 7.59.0 for the changes in that release.

7.59.1

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.

7.59.0

Important Changes

  • - feat(remix): Add Remix v2 support (#8415)

This release adds support for Remix v2 future flags, in particular for new error handling utilities of Remix v2. We heavily 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 {
</tr></table> 

... (truncated)

Commits
  • acc37e5 release: 7.59.3
  • e2b0dcd Merge pull request #8588 from getsentry/prepare-release/7.59.3
  • ac1e6db meta: Update Changelog for 7.59.3 (again)
  • 1c28688 Revert "meta: Update CHANGELOG for 7.59.3 (#8586)" (#8587)
  • 48e97d3 meta: Update CHANGELOG for 7.59.3 (#8586)
  • 1ed3705 types(browser): Add browser profiling client options (#8565)
  • 68c4491 fix(browser): 0 is a valid index (#8581)
  • f2bdd1f chore(publish): Publish NPM packages in order of dependency tree (#8579)
  • 7c51b9e fix(nextjs): Ensure Webpack plugin is available after dynamic require (#8584)
  • 204d3e3 build(deps): bump word-wrap from 1.2.3 to 1.2.4 (#8583)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #238.