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

Bump the minor-and-patch-dependencies group with 11 updates #2953

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2024

Bumps the minor-and-patch-dependencies group with 11 updates:

Package From To
@navikt/aksel-icons 7.5.1 7.5.3
@navikt/ds-css 7.5.1 7.5.3
@navikt/ds-react 7.5.1 7.5.3
@navikt/ds-tokens 7.5.1 7.5.3
@navikt/familie-backend 10.1.0 10.1.1
@navikt/fnrvalidator 2.1.2 2.1.5
@sentry/browser 8.38.0 8.40.0
@sentry/core 8.38.0 8.40.0
typescript-eslint 8.14.0 8.15.0
husky 9.1.6 9.1.7
typescript 5.6.3 5.7.2

Updates @navikt/aksel-icons from 7.5.1 to 7.5.3

Changelog

Sourced from @​navikt/aksel-icons's changelog.

7.5.3

7.5.2

Commits

Updates @navikt/ds-css from 7.5.1 to 7.5.3

Commits

Updates @navikt/ds-react from 7.5.1 to 7.5.3

Commits

Updates @navikt/ds-tokens from 7.5.1 to 7.5.3

Changelog

Sourced from @​navikt/ds-tokens's changelog.

7.5.3

7.5.2

Commits

Updates @navikt/familie-backend from 10.1.0 to 10.1.1

Commits
  • 9fb0a81 chore(release): publish
  • f6b8150 chore(deps): bump the major-dependencies group across 1 directory with 3 upda...
  • 045eac7 chore(deps): bump webpack from 5.93.0 to 5.96.1 (#1589)
  • See full diff in compare view

Updates @navikt/fnrvalidator from 2.1.2 to 2.1.5

Release notes

Sourced from @​navikt/fnrvalidator's releases.

v2.1.5

No release notes provided.

v2.1.4

No release notes provided.

v2.1.3

What's Changed

New Contributors

Full Changelog: navikt/fnrvalidator@v2.1.2...v2.1.3

Commits
  • 77e57f0 2.1.5, sjekke release workflow
  • a56bf0f fix publish workflow
  • bc71a0a separate jobber for publisering
  • 02342b8 v2.1.4
  • 3a8ab1c ny access token til npm
  • 3bc21ef Merge pull request #507 from Magnuti/utc-time
  • 549bbb3 Merge remote-tracking branch 'origin/master' into utc-time
  • 0cea74b Merge remote-tracking branch 'origin/master' into utc-time
  • 4e392f9 Merge pull request #508 from navikt/dependabot/npm_and_yarn/ts-jest-29.2.5
  • b719f01 Bump ts-jest from 29.1.2 to 29.2.5
  • Additional commits viewable in compare view

Updates @sentry/browser from 8.38.0 to 8.40.0

Release notes

Sourced from @​sentry/browser's releases.

8.40.0

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)

... (truncated)

Changelog

Sourced from @​sentry/browser's changelog.

8.40.0

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()).

... (truncated)

Commits
  • 7ff467c release: 8.40.0
  • 87a90a3 Merge pull request #14425 from getsentry/prepare-release/8.40.0
  • 5841854 meta(changelog): Update changelog for 8.40.0
  • d140ae6 Merge remote-tracking branch 'origin/master' into prepare-release/8.40.0
  • 90f958f ci: Skip optional E2E tests on release branches (#14424)
  • 6535500 feat(replay): Clear event buffer when full and in buffer mode (#14078)
  • 85daf90 fix(feedback): Fix non-wrapping form title (#14355)
  • ec701fd Merge pull request #14412 from getsentry/develop
  • 138417b test(feedback): Fixes lazy loaded feedback bundles (#14410)
  • c1ccdf3 Merge pull request #14408 from getsentry/prepare-release/8.40.0
  • Additional commits viewable in compare view

Updates @sentry/core from 8.38.0 to 8.40.0

Release notes

Sourced from @​sentry/core's releases.

8.40.0

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)

... (truncated)

Changelog

Sourced from @​sentry/core's changelog.

8.40.0

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()).

... (truncated)

Commits
  • 7ff467c release: 8.40.0
  • 87a90a3 Merge pull request #14425 from getsentry/prepare-release/8.40.0
  • 5841854 meta(changelog): Update changelog for 8.40.0
  • d140ae6 Merge remote-tracking branch 'origin/master' into prepare-release/8.40.0
  • 90f958f ci: Skip optional E2E tests on release branches (#14424)
  • 6535500 feat(replay): Clear event buffer when full and in buffer mode (#14078)
  • 85daf90 fix(feedback): Fix non-wrapping form title (#14355)
  • ec701fd Merge pull request #14412 from getsentry/develop
  • 138417b test(feedback): Fixes lazy loaded feedback bundles (#14410)
  • c1ccdf3 Merge pull request #14408 from getsentry/prepare-release/8.40.0
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.14.0 to 8.15.0

Release notes

Sourced from typescript-eslint's releases.

v8.15.0

8.15.0 (2024-11-18)

🚀 Features

  • eslint-plugin: added related-getter-setter-pairs rule (#10192)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: [prefer-nullish-coalescing] fix detection of ignoreConditionalTests involving boolean ! operator (#10299)
  • rule-tester: run method - avoid to infer type parameter from tests param (#10324)
  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • utils: add new optional language field to FlatConfig.Config type (#10326)

🩹 Fixes

  • add missing peer dependencies (#9744)
  • eslint-plugin: [consistent-indexed-object-style] handle circular mapped types (#10301)
  • eslint-plugin: [await-thenable, return-await] don't flag awaiting unconstrained type parameter as unnecessary (#10314)
  • eslint-plugin: [explicit-module-boundary-types] and [explicit-function-return-type] don't report on as const satisfies (#10315)
  • eslint-plugin: report deprecations used in default export (#10330)
  • utils: add defaultOptions to meta in rule (#10339)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.15.0 (2024-11-18)

🚀 Features

  • typescript-eslint: allow infinitely deep array nesting in config function and extends (#10333)
  • eslint-plugin: new rule no-unsafe-type-assertion (#10051)
  • eslint-plugin: added related-getter-setter-pairs rule (#10192)

🩹 Fixes

  • add missing peer dependencies (#9744)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 2444351 chore(release): publish 8.15.0
  • b351703 feat(typescript-eslint): allow infinitely deep array nesting in config functi...
  • 00a3a84 fix: add missing peer dependencies (#9744)
  • 9ebdff4 feat(eslint-plugin): new rule no-unsafe-type-assertion (#10051)
  • 0409851 feat(eslint-plugin): added related-getter-setter-pairs rule (#10192)
  • See full diff in compare view

Updates husky from 9.1.6 to 9.1.7

Release notes

Sourced from husky's releases.

v9.1.7

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

Commits

Updates typescript from 5.6.3 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • 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 minor-and-patch-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@navikt/aksel-icons](https://github.com/navikt/aksel/tree/HEAD/@navikt/aksel-icons) | `7.5.1` | `7.5.3` |
| [@navikt/ds-css](https://github.com/navikt/aksel) | `7.5.1` | `7.5.3` |
| [@navikt/ds-react](https://github.com/navikt/aksel) | `7.5.1` | `7.5.3` |
| [@navikt/ds-tokens](https://github.com/navikt/aksel/tree/HEAD/@navikt/core/tokens) | `7.5.1` | `7.5.3` |
| [@navikt/familie-backend](https://github.com/navikt/familie-felles-frontend) | `10.1.0` | `10.1.1` |
| [@navikt/fnrvalidator](https://github.com/navikt/fnrvalidator) | `2.1.2` | `2.1.5` |
| [@sentry/browser](https://github.com/getsentry/sentry-javascript) | `8.38.0` | `8.40.0` |
| [@sentry/core](https://github.com/getsentry/sentry-javascript) | `8.38.0` | `8.40.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.14.0` | `8.15.0` |
| [husky](https://github.com/typicode/husky) | `9.1.6` | `9.1.7` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |


Updates `@navikt/aksel-icons` from 7.5.1 to 7.5.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/aksel-icons/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/aksel-icons)

Updates `@navikt/ds-css` from 7.5.1 to 7.5.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-react` from 7.5.1 to 7.5.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/ds-tokens` from 7.5.1 to 7.5.3
- [Release notes](https://github.com/navikt/aksel/releases)
- [Changelog](https://github.com/navikt/aksel/blob/main/@navikt/core/tokens/CHANGELOG.md)
- [Commits](https://github.com/navikt/aksel/commits/@navikt/[email protected]/@navikt/core/tokens)

Updates `@navikt/familie-backend` from 10.1.0 to 10.1.1
- [Commits](https://github.com/navikt/familie-felles-frontend/compare/@navikt/[email protected]...@navikt/[email protected])

Updates `@navikt/fnrvalidator` from 2.1.2 to 2.1.5
- [Release notes](https://github.com/navikt/fnrvalidator/releases)
- [Commits](navikt/fnrvalidator@v2.1.2...v2.1.5)

Updates `@sentry/browser` from 8.38.0 to 8.40.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@8.38.0...8.40.0)

Updates `@sentry/core` from 8.38.0 to 8.40.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@8.38.0...8.40.0)

Updates `typescript-eslint` from 8.14.0 to 8.15.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.15.0/packages/typescript-eslint)

Updates `husky` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.6...v9.1.7)

Updates `typescript` from 5.6.3 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: "@navikt/aksel-icons"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@navikt/ds-css"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@navikt/ds-react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@navikt/ds-tokens"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@navikt/familie-backend"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@navikt/fnrvalidator"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@sentry/browser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: "@sentry/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 24, 2024 04:20
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 24, 2024
@charliemidtlyng charliemidtlyng merged commit b668a20 into main Nov 25, 2024
1 check passed
@charliemidtlyng charliemidtlyng deleted the dependabot/npm_and_yarn/minor-and-patch-dependencies-5efe3c556e branch November 25, 2024 07:44
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant