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

fix(deps): update all non-major frontend dependencies #794

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@digitalservicebund/ris-ui ~1.5.0 -> ~1.6.0 age adoption passing confidence
@sentry/vue (source) ~8.39.0 -> ~8.40.0 age adoption passing confidence
@types/node (source) 22.9.1 -> 22.9.3 age adoption passing confidence
@vueuse/core (source) ~11.2.0 -> ~11.3.0 age adoption passing confidence
eslint (source) ~9.14.0 -> ~9.15.0 age adoption passing confidence
eslint-plugin-testing-library 6.4.0 -> 6.5.0 age adoption passing confidence
npm (source) 10.9.0 -> 10.9.1 age adoption passing confidence
primevue (source) 4.2.2 -> 4.2.3 age adoption passing confidence
typescript (source) ~5.6.0 -> ~5.7.0 age adoption passing confidence

Release Notes

digitalservicebund/ris-ui (@​digitalservicebund/ris-ui)

v1.6.1

Compare Source

Bug Fixes
  • panelmenu: add label association (99ca813)
getsentry/sentry-javascript (@​sentry/vue)

v8.40.0

Compare Source

Important Changes
  • feat(angular): Support Angular 19 (#​14398)

    The @sentry/angular SDK can now be used with Angular 19. If you're upgrading to the new Angular version, you might want to migrate from the now deprecated APP_INITIALIZER token to provideAppInitializer.
    In this case, change the Sentry TraceService initialization in app.config.ts:

    // Angular 18
    export const appConfig: ApplicationConfig = {
      providers: [
        // other providers
        {
          provide: TraceService,
          deps: [Router],
        },
        {
          provide: APP_INITIALIZER,
          useFactory: () => () => {},
          deps: [TraceService],
          multi: true,
        },
      ],
    };
    
    // Angular 19
    export const appConfig: ApplicationConfig = {
      providers: [
        // other providers
        {
          provide: TraceService,
          deps: [Router],
        },
        provideAppInitializer(() => {
          inject(TraceService);
        }),
      ],
    };
  • feat(core): Deprecate debugIntegration and sessionTimingIntegration (#​14363)

    The debugIntegration was deprecated and will be removed in the next major version of the SDK.
    To log outgoing events, use Hook Options (beforeSend, beforeSendTransaction, ...).

    The sessionTimingIntegration was deprecated and will be removed in the next major version of the SDK.
    To capture session durations alongside events, use Context (Sentry.setContext()).

  • feat(nestjs): Deprecate @WithSentry in favor of @SentryExceptionCaptured (#​14323)

    The @WithSentry decorator was deprecated. Use @SentryExceptionCaptured instead. This is a simple renaming and functionality stays identical.

  • feat(nestjs): Deprecate SentryTracingInterceptor, SentryService, SentryGlobalGenericFilter, SentryGlobalGraphQLFilter (#​14371)

    The SentryTracingInterceptor was deprecated. If you are using @sentry/nestjs you can safely remove any references to the SentryTracingInterceptor. If you are using another package migrate to @sentry/nestjs and remove the SentryTracingInterceptor afterwards.

    The SentryService was deprecated and its functionality was added to Sentry.init. If you are using @sentry/nestjs you can safely remove any references to the SentryService. If you are using another package migrate to @sentry/nestjs and remove the SentryService afterwards.

    The SentryGlobalGenericFilter was deprecated. Use the SentryGlobalFilter instead which is a drop-in replacement.

    The SentryGlobalGraphQLFilter was deprecated. Use the SentryGlobalFilter instead which is a drop-in replacement.

  • feat(node): Deprecate nestIntegration and setupNestErrorHandler in favor of using @sentry/nestjs (#​14374)

    The nestIntegration and setupNestErrorHandler functions from @sentry/node were deprecated and will be removed in the next major version of the SDK. If you're using @sentry/node in a NestJS application, we recommend switching to our new dedicated @sentry/nestjs package.

Other Changes
  • feat(browser): Send additional LCP timing info (#​14372)
  • feat(replay): Clear event buffer when full and in buffer mode (#​14078)
  • feat(core): Ensure normalizedRequest on sdkProcessingMetadata is merged (#​14315)
  • feat(core): Hoist everything from @sentry/utils into @sentry/core (#​14382)
  • fix(core): Do not throw when trying to fill readonly properties (#​14402)
  • fix(feedback): Fix __self and __source attributes on feedback nodes (#​14356)
  • fix(feedback): Fix non-wrapping form title (#​14355)
  • fix(nextjs): Update check for not found navigation error (#​14378)

Bundle size 📦

Path Size
@​sentry/browser 22.88 KB
@​sentry/browser - with treeshaking flags 21.57 KB
@​sentry/browser (incl. Tracing) 35.46 KB
@​sentry/browser (incl. Tracing, Replay) 72.22 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.53 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 76.52 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 89.02 KB
@​sentry/browser (incl. Feedback) 39.63 KB
@​sentry/browser (incl. sendFeedback) 27.51 KB
@​sentry/browser (incl. FeedbackAsync) 32.32 KB
@​sentry/react 25.58 KB
@​sentry/react (incl. Tracing) 38.32 KB
@​sentry/vue 27.04 KB
@​sentry/vue (incl. Tracing) 37.27 KB
@​sentry/svelte 23.03 KB
CDN Bundle 24.04 KB
CDN Bundle (incl. Tracing) 37.02 KB
CDN Bundle (incl. Tracing, Replay) 71.81 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 77.16 KB
CDN Bundle - uncompressed 70.9 KB
CDN Bundle (incl. Tracing) - uncompressed 110.25 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 223.05 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.27 KB
@​sentry/nextjs (client) 38.42 KB
@​sentry/sveltekit (client) 35.97 KB
@​sentry/node 134.48 KB
@​sentry/node - without tracing 96.32 KB
@​sentry/aws-serverless 106.57 KB
vueuse/vueuse (@​vueuse/core)

v11.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.15.0

Compare Source

testing-library/eslint-plugin-testing-library (eslint-plugin-testing-library)

v6.5.0

Compare Source

Features
npm/cli (npm)

v10.9.1

Compare Source

Bug Fixes
Dependencies
Chores
primefaces/primevue (primevue)

v4.2.3

Compare Source

Full Changelog

Fixed bugs:

  • Drawer: RTL position bug #​6827
  • Tabs: Mismatch between prop "value" and emit update:value #​6825
  • DatePicker: Wrong hour displayed for midnight when set to timeOnly and 24h #​6824
  • Material: filled mode InputNumber defects #​6823
  • Material: filled mode InputGroup defects #​6820
  • Tree: Wrong passThrough option in documentation #​6818
  • PanelMenu: wrong value of the hasSubmenu slot prop #​6815
  • ToggleButton:   when label is empty #​6809
  • DataTable: Hover CSS rule not applied #​6796
  • ColorPicker: Showing Text Cursor on Focus #​6795
  • Select: Cannot read properties of null (reading '$el') - filter and auto-filter-focus error #​6793
  • Step: Cannot disable custom step element #​6763
  • InputText: Interface 'InputTextProps' incorrectly extends interface 'InputHTMLAttributes'. Password: Interface 'PasswordProps' incorrectly extends interface 'InputHTMLAttributes'. #​5480

Implemented New Features and Enhancements:

  • Improve RTL implementation #​6826
  • Better compatability with CSS libraries like Tailwind, Bootstrap #​6822
microsoft/TypeScript (typescript)

v5.7.2

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "before 5:30am every weekday,after 7pm every weekday" in timezone Europe/Berlin.

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the frontend-updates Related to the frontend module label Nov 20, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-frontend-dependencies branch 2 times, most recently from e6c684d to 1ffb6fd Compare November 21, 2024 08:47
@renovate renovate bot changed the title chore(deps): update all non-major frontend dependencies fix(deps): update all non-major frontend dependencies Nov 21, 2024
@renovate renovate bot force-pushed the renovate/all-non-major-frontend-dependencies branch 8 times, most recently from fd2cf67 to cd5ae90 Compare November 23, 2024 09:06
@renovate renovate bot force-pushed the renovate/all-non-major-frontend-dependencies branch from cd5ae90 to a5f9644 Compare November 24, 2024 18:05
Copy link

sonarcloud bot commented Nov 24, 2024

Copy link

sonarcloud bot commented Nov 24, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
frontend-updates Related to the frontend module
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants