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 npm-updates group with 12 updates #441

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps the npm-updates group with 12 updates:

Package From To
@grammyjs/commands 1.0.4 1.0.5
@apollo/client 3.12.11 3.13.1
grammy 1.34.1 1.35.0
zod 3.24.1 3.24.2
@types/node 22.13.1 22.13.4
eslint 9.20.0 9.20.1
eslint-import-resolver-typescript 3.7.0 3.8.0
globals 15.14.0 15.15.0
knip 5.43.6 5.44.1
prettier 3.5.0 3.5.1
semantic-release 24.2.2 24.2.3
typescript-eslint 8.23.0 8.24.0

Updates @grammyjs/commands from 1.0.4 to 1.0.5

Release notes

Sourced from @​grammyjs/commands's releases.

v1.0.5

  • Add LanguageCodes object export

Full Changelog: grammyjs/commands@v1.0.4...v1.0.5

Commits

Updates @apollo/client from 3.12.11 to 3.13.1

Release notes

Sourced from @​apollo/client's releases.

v3.13.1

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.1

Patch Changes

3.13.0

Minor Changes

  • #12066 c01da5d Thanks @​jerelmiller! - Adds a new useSuspenseFragment hook.

    useSuspenseFragment suspends until data is complete. It is a drop-in replacement for useFragment when you prefer to use Suspense to control the loading state of a fragment. See the documentation for more details.

  • #12174 ba5cc33 Thanks @​jerelmiller! - Ensure errors thrown in the onCompleted callback from useMutation don't call onError.

  • #12340 716d02e Thanks @​phryneas! - Deprecate the onCompleted and onError callbacks of useQuery and useLazyQuery. For more context, please see the related issue on GitHub.

  • #12276 670f112 Thanks @​Cellule! - Provide a more type-safe option for the previous data value passed to observableQuery.updateQuery. Using it could result in crashes at runtime as this callback could be called with partial data even though its type reported the value as a complete result.

    The updateQuery callback function is now called with a new type-safe previousData property and a new complete property in the 2nd argument that determines whether previousData is a complete or partial result.

    As a result of this change, it is recommended to use the previousData property passed to the 2nd argument of the callback rather than using the previous data value from the first argument since that value is not type-safe. The first argument is now deprecated and will be removed in a future version of Apollo Client.

    observableQuery.updateQuery(
      (unsafePreviousData, { previousData, complete }) => {
        previousData;
        // ^? TData | DeepPartial<TData> | undefined
    if (complete) {
      previousData;
      // ^? TData
    } else {
      previousData;
      // ^? DeepPartial&lt;TData&gt; | undefined
    }
    
    }
    );

  • #12174 ba5cc33 Thanks @​jerelmiller! - Reject the mutation promise if errors are thrown in the onCompleted callback of useMutation.

Patch Changes

  • #12276 670f112 Thanks @​Cellule! - Fix the return type of the updateQuery function to allow for undefined. updateQuery had the ability to bail out of the update by returning a falsey value, but the return type enforced a query value.

... (truncated)

Commits
  • 356fcc9 Version Packages (#12377)
  • d3f8f13 Export UseSuspenseFragmentOptions (#12375)
  • bdfc5b2 ObervableQuery.refetch: don't refetch with cache-and-network, swich to `n...
  • e93d19f Version Packages (#12372)
  • c6cac25 Merge pull request #12180 from apollographql/release-3.13
  • b30b06c Exit prerelease mode
  • 3904103 Merge branch 'main' into release-3.13
  • d71f2e8 Require variables option in useSuspenseFragment when there are required v...
  • 66dc5b9 Update ROADMAP.md
  • 27e1532 Add documentation for useSuspenseFragment (#12356)
  • Additional commits viewable in compare view

Updates grammy from 1.34.1 to 1.35.0

Release notes

Sourced from grammy's releases.

v1.35.0

What's Changed

New Contributors

Full Changelog: grammyjs/grammY@v1.34.1...v1.35.0

Commits

Updates zod from 3.24.1 to 3.24.2

Release notes

Sourced from zod's releases.

v3.24.2

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:

  • cdcf9d4263cc544c7cb49855b31612d4305da72c Bump rollup from 2.79.1 to 2.79.2 (#3895)
  • a2ad37099e8f7117d231cc2c72d0e471893643b2 Bump find-my-way from 8.2.0 to 8.2.2 (#3897)
  • 0e02d66d1bcaad9c0f92609431e1726e088a8112 Bump nanoid from 3.3.7 to 3.3.8 (#3896)
  • 96be65f0d71b0bf8e8f330dc0541cc895edd6459 Bump cross-spawn from 7.0.3 to 7.0.6 (#3882)
  • f7ad26147ba291cb3fb257545972a8e00e767470 Bump micromatch from 4.0.7 to 4.0.8 (#3748)
  • d724620c341e1801db9513f681f731afb3df452a Add zod-struct to utilities for Zod (#3921)
  • 6b96cfd4307649df6a451d74e06c47ac88c01dfe Update README.md (#3949)
  • e376cda8e14d3caa09bc2148ffc668748118db6b Add Courier to README (#3961)
  • 8a099deaef71b3d8bd65986a745b88f08cb28ba5 Add CodeRabbit to sponsors (#3975)
  • 587d160badbe96d1adec1e8ff9d93bbcb3f91c4f WIP (#3976)
  • 9d3af2ee5263971bc0dd7e4927cd07ee854fe4db Add CodeRabbit at Platinum (#3981)
  • eedeb4b69f9f4bb58401d9cb27c8038a042f2c7f docs(X to Zod): Update url for runtyping (#3971)
  • 706f49f9fb852cdde667b65ccb9b765444a86de7 fix: redirect url to correct url (#3939)
  • 7365b7d5564793c42ee02815880463b8bee30028 docs: translate README to Korean (#3934)
  • b7e173de06e223a7a6510903a4110634e2fb5d92 Format
  • 1dd44a0d6f8073f7c417e09ec96580b9ae9bda23 Support async z.custom
  • e30870369d5b8f31ff4d0130d4439fd997deb523 v3.24.2
Commits

Updates @types/node from 22.13.1 to 22.13.4

Commits

Updates eslint from 9.20.0 to 9.20.1

Release notes

Sourced from eslint's releases.

v9.20.1

Bug Fixes

Documentation

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)
Changelog

Sourced from eslint's changelog.

v9.20.1 - February 11, 2025

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 274f054 fix: fix RuleContext type (#19417) (Francesco Trotta)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)
Commits

Updates eslint-import-resolver-typescript from 3.7.0 to 3.8.0

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v3.8.0

Minor Changes

  • #345 fcc8883 Thanks @​carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.

  • #346 c124e87 Thanks @​carlocorradini! - Update get-tsconfig to the the latest version. We now support the ${configDir} variable, introduced in TypeScript 5.5.

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

3.8.0

Minor Changes

  • #345 fcc8883 Thanks @​carlocorradini! - Enable the mapper function just for a set of allowed files. Improves project discovery using glob and POSIX separator.

  • #346 c124e87 Thanks @​carlocorradini! - Update get-tsconfig to the the latest version. We now support the ${configDir} variable, introduced in TypeScript 5.5.

Commits
  • 332affb chore: release eslint-import-resolver-typescript (#347)
  • c124e87 chore(deps): update get-tsconfig to latest version (#346)
  • fcc8883 feat: better algorithm for custom tsconfig paths (#345)
  • c9cfe70 docs: use import-x/resolver-next instead of import/resolver-next (#342)
  • 23e7156 chore(deps): update node.js to v18.20.6 (#340)
  • 65eff38 chore(deps): update dependency @​changesets/cli to ^2.27.12 (#339)
  • 82a8c53 docs: remove ; from the configuration example (#338)
  • c7e4ba1 chore(deps): update dependency @​changesets/cli to ^2.27.11 (#337)
  • 80ef763 chore(deps): update dependency @​1stg/eslint-config to v7.0.1 (#336)
  • ceadb10 chore(#331): drop is-glob (#332)
  • Additional commits viewable in compare view

Updates globals from 15.14.0 to 15.15.0

Release notes

Sourced from globals's releases.

v15.15.0

  • Regenerate vitest globals (#279) 445df81

sindresorhus/globals@v15.14.0...v15.15.0

Commits

Updates knip from 5.43.6 to 5.44.1

Release notes

Sourced from knip's releases.

Release 5.44.1

  • Shorten @​auvred (79d527988afcbaf17106c782ee05cab746255365)
  • RR title (b572c7cfbf4332fccc392924c2417b020bd6aa48)
  • Add links to remove-unused-vars (f94a9ee22e61e078e855391d7652f465c4abe69c)
  • Document support for -t jsconfig.json (close #787) (12bd803b6540acfa21b58b7a41f6a5798cc846ff)
  • Add scripts + chart re. sponsorship activities (de89b7e780064f418f5583807b49aef47b2436e3)
  • feat: Support Stylelint custom syntax object (#937) (41a2bcc7f325fb3cba1e5463a8a04ae1a931bf51) - thanks @​TJNhxMZHmqGytuWT!
  • Fix unused @types DT dependencies (resolve #942) (fc95526767dd75b63e113c81504f5859d0f19746)

Release 5.44.0

  • Add fixture w/ compilers/workaround for tailwind v4 (3cf1d055f219b00ee523fa150b28fa876482fc67)
  • fix: ensure augmentWorkspace honors tsConfig rootDir (#933) (2afffe0ddcc1349224c092e98d2f913d76dfe35b) - thanks @​rmunch!
  • feat: Add plugin for React router 7 framework mode (#931) (012fd5be9b49768ae81f66673c0639746513cc27) - thanks @​lasseklovstad!
  • Refactor some bits to add manifestStr (9ce5766c0cf66fab7beacc246b2160238762f5ef)
  • Use manifestStr and introduce PackageJsonPeeker (f2efd223476e7ae51cae60101c3337b91df9aa03)
  • Add pos to more issue types in json reporter (resolves #930) (72cbcfa32c219fabfc7b9ab24bbe2745ed354583)
  • Merge node and node-test-runner plugins (1019b99704afe2181aa6b86a44ff9c1279f3e6fc)
  • Ignore built-in test reporters (resolve #935) (090e76b594a4da8905f2f15de3598f46dcd3ced6)
  • Housekeep react-router plugin (dd0f68263d8f609871755e183b1424c1a8986b33)
  • Bright & dimmed issue type header colors in symbol reporter (close #934) (dcf5df3a7809614737769101661a7e111d4c1c5e)
  • Update dependencies (905069539b74f04b198058e72089c9f7c023b6cb)
Commits

Updates prettier from 3.5.0 to 3.5.1

Release notes

Sourced from prettier's releases.

3.5.1

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

Commits

Updates semantic-release from 24.2.2 to 24.2.3

Release notes

Sourced from semantic-release's releases.

v24.2.3

24.2.3 (2025-02-15)

Bug Fixes

  • types: fixed typescript definition (0e08b5c), closes #3601
Commits
  • 0e08b5c fix(types): fixed typescript definition
  • 5e939a0 Use labels in issue templates (#3599)
  • 0a3049f build(deps): bump @​octokit/endpoint from 10.1.2 to 10.1.3 (#3608)
  • 552f62e build(deps): bump @​octokit/request-error from 6.1.6 to 6.1.7 (#3609)
  • 43c32b2 chore(deps): update dependency prettier to v3.5.1 (#3605)
  • e2dd84c chore(deps): update dependency publint to v0.3.5 (#3603)
  • 1724ee3 chore(deps): update dependency got to v14.4.6 (#3600)
  • bb5736f chore(deps): lock file maintenance (#3597)
  • fbfaba6 chore(deps): update dependency prettier to v3.5.0 (#3596)
  • See full diff in compare view

Updates typescript-eslint from 8.23.0 to 8.24.0

Release notes

Sourced from typescript-eslint's releases.

v8.24.0

8.24.0 (2025-02-10)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] make allowConstantLoopConditions more granular (#10639)
  • utils: add reportUnusedInlineConfigs to LinterOptions (#10718)

🩹 Fixes

  • ast-spec: correct YieldExpression.argument type (#10799)
  • eslint-plugin: [restrict-plus-operands] report adding bigints to strings when allowNumberAndString is false (#10737)
  • eslint-plugin: [no-misused-spread] correct and elaborate string spread report message (#10751)

❤️ Thank You

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

Changelog

Sourced from typescript-eslint's changelog.

8.24.0 (2025-02-10)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

Commits

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 npm-updates group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [@grammyjs/commands](https://github.com/grammyjs/commands) | `1.0.4` | `1.0.5` |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.12.11` | `3.13.1` |
| [grammy](https://github.com/grammyjs/grammY) | `1.34.1` | `1.35.0` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.1` | `22.13.4` |
| [eslint](https://github.com/eslint/eslint) | `9.20.0` | `9.20.1` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.7.0` | `3.8.0` |
| [globals](https://github.com/sindresorhus/globals) | `15.14.0` | `15.15.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.43.6` | `5.44.1` |
| [prettier](https://github.com/prettier/prettier) | `3.5.0` | `3.5.1` |
| [semantic-release](https://github.com/semantic-release/semantic-release) | `24.2.2` | `24.2.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.23.0` | `8.24.0` |


Updates `@grammyjs/commands` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/grammyjs/commands/releases)
- [Commits](grammyjs/commands@v1.0.4...v1.0.5)

Updates `@apollo/client` from 3.12.11 to 3.13.1
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.11...v3.13.1)

Updates `grammy` from 1.34.1 to 1.35.0
- [Release notes](https://github.com/grammyjs/grammY/releases)
- [Commits](grammyjs/grammY@v1.34.1...v1.35.0)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

Updates `@types/node` from 22.13.1 to 22.13.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 9.20.0 to 9.20.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.20.0...v9.20.1)

Updates `eslint-import-resolver-typescript` from 3.7.0 to 3.8.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.7.0...v3.8.0)

Updates `globals` from 15.14.0 to 15.15.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.14.0...v15.15.0)

Updates `knip` from 5.43.6 to 5.44.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.44.1/packages/knip)

Updates `prettier` from 3.5.0 to 3.5.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.0...3.5.1)

Updates `semantic-release` from 24.2.2 to 24.2.3
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v24.2.2...v24.2.3)

Updates `typescript-eslint` from 8.23.0 to 8.24.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.24.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@grammyjs/commands"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: grammy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: knip
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: semantic-release
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-updates
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 17, 2025
@eikowagenknecht eikowagenknecht merged commit d8f1b2a into main Feb 17, 2025
2 checks passed
@eikowagenknecht eikowagenknecht deleted the dependabot/npm_and_yarn/main/npm-updates-f99d7ab539 branch February 17, 2025 07:43
Copy link

🎉 This PR is included in version 2.8.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

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 released
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant