Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump the sentry group across 1 directory with 4 updates #432

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2024

Bumps the sentry group with 4 updates in the / directory: @sentry/browser, @sentry/node, @sentry/react and @sentry/react-native.

Updates @sentry/browser from 7.119.2 to 8.35.0

Release notes

Sourced from @​sentry/browser's releases.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

import { createPinia } from 'pinia';
import { createSentryPiniaPlugin } from '@sentry/vue';
const pinia = createPinia();
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

... (truncated)

Commits
  • 4e33b54 release: 8.35.0
  • 43a6afe Merge pull request #14022 from getsentry/prepare-release/8.35.0
  • f4ba039 meta(changelog): Update changelog for 8.35.0
  • f358790 test(e2e): Pin deps in Astro Cloudflare E2E test (#14030)
  • 2648ef6 test(e2e): Add event proxy option to allow for event dumps (#13998)
  • ab28544 feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • 54d286b feat(nuxt): Respect user-provided source map generation settings (#14020)
  • 96526c2 docs(nuxt): Add beta readme (#13979)
  • d3847b4 perf(node): Truncate breadcrumb messages created by console integration (#14006)
  • 77b3355 fix(replay): Ignore older performance entries when starting manually (#13969)
  • Additional commits viewable in compare view

Updates @sentry/node from 7.119.2 to 8.35.0

Release notes

Sourced from @​sentry/node's releases.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

import { createPinia } from 'pinia';
import { createSentryPiniaPlugin } from '@sentry/vue';
const pinia = createPinia();
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

... (truncated)

Commits
  • 4e33b54 release: 8.35.0
  • 43a6afe Merge pull request #14022 from getsentry/prepare-release/8.35.0
  • f4ba039 meta(changelog): Update changelog for 8.35.0
  • f358790 test(e2e): Pin deps in Astro Cloudflare E2E test (#14030)
  • 2648ef6 test(e2e): Add event proxy option to allow for event dumps (#13998)
  • ab28544 feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • 54d286b feat(nuxt): Respect user-provided source map generation settings (#14020)
  • 96526c2 docs(nuxt): Add beta readme (#13979)
  • d3847b4 perf(node): Truncate breadcrumb messages created by console integration (#14006)
  • 77b3355 fix(replay): Ignore older performance entries when starting manually (#13969)
  • Additional commits viewable in compare view

Updates @sentry/react from 7.119.2 to 8.35.0

Release notes

Sourced from @​sentry/react's releases.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

import { createPinia } from 'pinia';
import { createSentryPiniaPlugin } from '@sentry/vue';
const pinia = createPinia();
</tr></table>

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.35.0

Beta release of the official Nuxt Sentry SDK

This release marks the beta release of the @sentry/nuxt Sentry SDK. For details on how to use it, check out the Sentry Nuxt SDK README. Please reach out on GitHub if you have any feedback or concerns.

  • feat(nuxt): Make dynamic import() wrapping default (#13958) (BREAKING)
  • feat(nuxt): Add Rollup plugin to wrap server entry with import() (#13945)

It is no longer required to add a Node --import flag. Please update your start command to avoid initializing Sentry twice (BREAKING CHANGE). The SDK will now apply modifications during the build of your application to allow for patching of libraries during runtime. If run into issues with this change, you can disable this behavior in your nuxt.config.ts and use the --import flag instead:

sentry: {
  dynamicImportForServerEntry: false;
}
  • feat(nuxt): Respect user-provided source map generation settings (#14020)

We now require you to explicitly enable sourcemaps for the clientside so that Sentry can un-minify your errors. We made this change so source maps aren't accidentally leaked to the public. Enable source maps on the client as follows:

export default defineNuxtConfig({
  sourcemap: {
    client: true,
  },
});
  • feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • feat(nuxt): Add Http responseHook with waitUntil (#13986)

Important Changes

  • feat(vue): Add Pinia plugin (#13841)

Support for Pinia is added in this release for @sentry/vue. To capture Pinia state data, add createSentryPiniaPlugin() to your Pinia store:

... (truncated)

Commits
  • 4e33b54 release: 8.35.0
  • 43a6afe Merge pull request #14022 from getsentry/prepare-release/8.35.0
  • f4ba039 meta(changelog): Update changelog for 8.35.0
  • f358790 test(e2e): Pin deps in Astro Cloudflare E2E test (#14030)
  • 2648ef6 test(e2e): Add event proxy option to allow for event dumps (#13998)
  • ab28544 feat(nuxt): Log server instrumentation might not work in dev (#14021)
  • 54d286b feat(nuxt): Respect user-provided source map generation settings (#14020)
  • 96526c2 docs(nuxt): Add beta readme (#13979)
  • d3847b4 perf(node): Truncate breadcrumb messages created by console integration (#14006)
  • 77b3355 fix(replay): Ignore older performance entries when starting manually (#13969)
  • Additional commits viewable in compare view

Updates @sentry/react-native from 5.34.0 to 6.1.0

Release notes

Sourced from @​sentry/react-native's releases.

6.1.0

Dependencies

6.0.0

This is a new major version 6.0.0 of the Sentry React Native SDK. To upgrade from the SDK version 5, please follow our migration guide.

Major Changes

  • React Native Tracing options were moved to the root options

    import * as Sentry from '@sentry/react-native'
    Sentry.init({
    tracesSampleRate: 1.0,
    enableAppStartTracking: true, // default true
    enableNativeFramesTracking: true, // default true
    enableStallTracking: true, // default true
    enableUserInteractionTracing: true, // default false
    integrations: [
    Sentry.reactNativeTracingIntegration({
    beforeStartSpan: (startSpanOptions) => {
    startSpanOptions.name = 'New Name';
    return startSpanOptions;
    },
    }),
    Sentry.appStartIntegration({
    standalone: false, // default false
    }),
    ],
    });

  • New React Navigation Integration interface (#4003)

    import * as Sentry from '@sentry/react-native';
    import { NavigationContainer } from '@react-navigation/native';
    const reactNavigationIntegration = Sentry.reactNavigationIntegration();
    Sentry.init({
    tracesSampleRate: 1.0,
    integrations: [reactNavigationIntegration],
    });

... (truncated)

Changelog

Sourced from @​sentry/react-native's changelog.

6.1.0

Dependencies

6.0.0

This is a new major version 6.0.0 of the Sentry React Native SDK. To upgrade from the SDK version 5, please follow our migration guide.

Major Changes

  • React Native Tracing options were moved to the root options

    import * as Sentry from '@sentry/react-native';
    Sentry.init({
    tracesSampleRate: 1.0,
    enableAppStartTracking: true, // default true
    enableNativeFramesTracking: true, // default true
    enableStallTracking: true, // default true
    enableUserInteractionTracing: true, // default false
    integrations: [
    Sentry.reactNativeTracingIntegration({
    beforeStartSpan: (startSpanOptions) => {
    startSpanOptions.name = 'New Name';
    return startSpanOptions;
    },
    }),
    Sentry.appStartIntegration({
    standalone: false, // default false
    }),
    ],
    });

  • New React Navigation Integration interface (#4003)

    import * as Sentry from '@sentry/react-native';
    import { NavigationContainer } from '@react-navigation/native';
    const reactNavigationIntegration = Sentry.reactNavigationIntegration();
    Sentry.init({
    tracesSampleRate: 1.0,

... (truncated)

Commits
  • 893c055 release: 6.1.0
  • 6ffa59a chore(ci): Use concurrency instead of third party action, main runs all jobs ...
  • 48d577d chore(deps): bump github/codeql-action from 3.25.11 to 3.26.10 (#4143)
  • 12e665f chore(deps): update JavaScript SDK to v8.34.0 (#3895)
  • a989877 fix(changelog): Replace import Sentry by import * as Sentry (#4192)
  • a2f7367 chore: Bump E2E RN 0.65 to macos-13 (#4187)
  • fe13591 test(java): Add PMD static code analysis for Java files (#4183)
  • 8ae23a7 chore: update scripts/update-cocoa.sh to 8.38.0 (#4180)
  • 117d465 Merge branch 'release/6.0.0'
  • b7ad74f release: 6.0.0
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the sentry group with 4 updates in the / directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript), [@sentry/node](https://github.com/getsentry/sentry-javascript), [@sentry/react](https://github.com/getsentry/sentry-javascript) and [@sentry/react-native](https://github.com/getsentry/sentry-react-native).


Updates `@sentry/browser` from 7.119.2 to 8.35.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.119.2...8.35.0)

Updates `@sentry/node` from 7.119.2 to 8.35.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.119.2...8.35.0)

Updates `@sentry/react` from 7.119.2 to 8.35.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.119.2...8.35.0)

Updates `@sentry/react-native` from 5.34.0 to 6.1.0
- [Release notes](https://github.com/getsentry/sentry-react-native/releases)
- [Changelog](https://github.com/getsentry/sentry-react-native/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-react-native@5.34.0...6.1.0)

---
updated-dependencies:
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry
- dependency-name: "@sentry/react-native"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: sentry
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants