Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 7, 2025

Bumps the dependencies group with 42 updates:

Package From To
@changesets/cli 2.28.1 2.29.3
@commitlint/cli 19.7.1 19.8.0
@commitlint/config-conventional 19.7.1 19.8.0
lint-staged 15.4.3 15.5.2
prettier 3.5.1 3.5.3
pretty-quick 4.0.0 4.1.1
turbo 2.4.2 2.5.3
typescript 4.9.4 5.8.3
vitest 3.0.5 3.1.3
@modelcontextprotocol/sdk 1.5.0 1.11.0
express 4.18.2 5.1.0
@types/express 4.17.17 5.0.1
@swc/core 1.10.16 1.11.24
@swc/helpers 0.5.15 0.5.17
nodemon 3.1.7 3.1.10
regenerator-runtime 0.13.11 0.14.1
tsup 8.3.6 8.4.0
tsx 4.19.2 4.19.4
dotenv 16.4.7 16.5.0
@eslint/js 9.21.0 9.26.0
@next/eslint-plugin-next 15.2.1 15.3.2
eslint 8.57.1 9.26.0
@types/eslint 8.56.12 9.6.1
eslint-config-prettier 10.0.2 10.1.3
eslint-plugin-react 7.37.4 7.37.5
eslint-plugin-turbo 2.4.4 2.5.3
globals 15.15.0 16.1.0
typescript-eslint 8.26.0 8.32.0
zod 3.24.2 3.24.4
@types/node 22.13.4 22.15.15
n8n 1.78.1 1.91.2
n8n-workflow 1.70.0 1.82.0
@typescript-eslint/parser 7.18.0 8.32.0
@langchain/core 0.3.40 0.3.54
@smithery/sdk 1.1.2 1.2.3
cache-manager 6.4.2 6.4.3
cacheable 1.8.10 1.9.0
eventsource 3.0.5 3.0.6
@rollup/plugin-commonjs 28.0.2 28.0.3
@rollup/plugin-node-resolve 16.0.0 16.0.1
rollup 4.34.9 4.40.2
rollup-plugin-dts 6.1.1 6.2.1

Updates @changesets/cli from 2.28.1 to 2.29.3

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.29.3

Patch Changes

@​changesets/cli@​2.29.2

Patch Changes

  • #1636 f73f84a Thanks @​Netail! - Correctly resolve new changesets with since option when the .changeset directory is not directly in the git root

  • Updated dependencies [f73f84a]:

    • @​changesets/read@​0.6.5
    • @​changesets/git@​3.0.4
    • @​changesets/get-release-plan@​4.0.10
    • @​changesets/apply-release-plan@​7.0.12

@​changesets/cli@​2.29.1

Patch Changes

  • #1620 b15e629 Thanks @​Netail! - Correctly fetch new changesets with since if the git option diff.relative has been set to true

  • Updated dependencies [b15e629]:

    • @​changesets/git@​3.0.3
    • @​changesets/apply-release-plan@​7.0.11
    • @​changesets/read@​0.6.4
    • @​changesets/get-release-plan@​4.0.9

@​changesets/cli@​2.29.0

Minor Changes

Commits
  • d23598a Version Packages (#1641)
  • de8bebc Fixed a crash in prerelease mode when a package misses the version field in i...
  • f15b0d0 docs: adds spectrum css and spectrum web components (#1627)
  • c1e8a78 Support ../ in publishConfig.directory when publishing packages (#1619)
  • 6dcc237 docs: fix examples (#1630)
  • baa9d45 Version Packages (#1637)
  • f73f84a Correctly resolve new changesets with since option when the .changeset di...
  • 5d01857 Version Packages (#1634)
  • b15e629 Correctly fetch new changesets with since if the git option diff.relative...
  • 131d445 Update TypeScript, Babel and Preconstruct (#1633)
  • Additional commits viewable in compare view

Updates @commitlint/cli from 19.7.1 to 19.8.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.8.0

19.8.0 (2025-03-07)

Bug Fixes

Features

Chore, docs, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.1...v19.8.0

Changelog

Sourced from @​commitlint/cli's changelog.

19.8.0 (2025-03-07)

Performance Improvements

  • use node: prefix to bypass require.cache call for builtins (#4302) (0cd8f41)
Commits

Updates @commitlint/config-conventional from 19.7.1 to 19.8.0

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.8.0

19.8.0 (2025-03-07)

Bug Fixes

Features

Chore, docs, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.7.1...v19.8.0

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.8.0 (2025-03-07)

Performance Improvements

  • use node: prefix to bypass require.cache call for builtins (#4302) (0cd8f41)
Commits

Updates lint-staged from 15.4.3 to 15.5.2

Release notes

Sourced from lint-staged's releases.

v15.5.2

Patch Changes

v15.5.1

Patch Changes

  • #1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Minor Changes

  • #1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.

    Example with Prettier

    By default Prettier prefers double quotes.

    Previously

    1. Stage file.js with only double quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
    5. Commit was not done, original state is restored and single quotes ' are staged

    Now

    1. Stage file.js with only double-quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails and cancels the commit
    5. Commit was not done, and there are no staged changes
Changelog

Sourced from lint-staged's changelog.

15.5.2

Patch Changes

15.5.1

Patch Changes

  • #1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

15.5.0

Minor Changes

  • #1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.

    Example with Prettier

    By default Prettier prefers double quotes.

    Previously

    1. Stage file.js with only double quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
    5. Commit was not done, original state is restored and single quotes ' are staged

    Now

    1. Stage file.js with only double-quotes " changed to '
    2. Run git commit -am "I don't like double quotes"
    3. Lint-staged runs prettier --write file.js, converting all the ' back to "
    4. Because there are now no changes, lint-staged fails and cancels the commit
    5. Commit was not done, and there are no staged changes
Commits
  • 8e91302 chore(changeset): release
  • 64148fd Merge pull request #1545 from lint-staged/revert-v16-changes
  • 46f47b2 Revert "build(deps): update dependencies"
  • 9472af9 Revert "build(execa): upgrade execa@9.5.2, require Node.js ^18.19.0 || >=20.5.0"
  • 9e17c9c Revert "chore: remove validation of deprecated advanced config options"
  • 6fda79a Revert "feat: remove --shell flag support"
  • e1ea676 Revert "feat: replace execa with nano-spawn"
  • 5561321 fix: handle colon characters in staged filenames (#1544)
  • dcc9a51 feat: replace execa with nano-spawn
  • 2fa909d feat: remove --shell flag support
  • Additional commits viewable in compare view

Updates prettier from 3.5.1 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

Commits

Updates pretty-quick from 4.0.0 to 4.1.1

Release notes

Sourced from pretty-quick's releases.

v4.1.1

Patch Changes

New Contributors

Full Changelog: prettier/pretty-quick@v4.1.0...v4.1.1

v4.1.0

Minor Changes

New Contributors

Full Changelog: prettier/pretty-quick@v4.0.0...v4.1.0

Changelog

Sourced from pretty-quick's changelog.

4.1.1

Patch Changes

4.1.0

Minor Changes

Commits

Updates turbo from 2.4.2 to 2.5.3

Release notes

Sourced from turbo's releases.

Turborepo v2.5.3

What's Changed

Docs

Examples

Changelog

New Contributors

... (truncated)

Commits

Updates typescript from 4.9.4 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

TypeScript 5.7

For release notes, check out the release announcement.

... (truncated)

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates vitest from 3.0.5 to 3.1.3

Release notes

Sourced from vitest's releases.

v3.1.3

   🐞 Bug Fixes

    View changes on GitHub

v3.1.2

   🐞 Bug Fixes

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github May 7, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot bot requested a review from a team May 7, 2025 21:32
@dependabot dependabot bot added dependencies Dependencies update suggestion security Security enhancement labels May 7, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dependencies-4089a7f78c branch 3 times, most recently from 26dba04 to 24cdf29 Compare May 9, 2025 00:21
Bumps the dependencies group with 42 updates:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.28.1` | `2.29.3` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.7.1` | `19.8.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.7.1` | `19.8.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.4.3` | `15.5.2` |
| [prettier](https://github.com/prettier/prettier) | `3.5.1` | `3.5.3` |
| [pretty-quick](https://github.com/prettier/pretty-quick) | `4.0.0` | `4.1.1` |
| [turbo](https://github.com/vercel/turborepo) | `2.4.2` | `2.5.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `4.9.4` | `5.8.3` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.5` | `3.1.3` |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.5.0` | `1.11.0` |
| [express](https://github.com/expressjs/express) | `4.18.2` | `5.1.0` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.17` | `5.0.1` |
| [@swc/core](https://github.com/swc-project/swc) | `1.10.16` | `1.11.24` |
| [@swc/helpers](https://github.com/swc-project/swc) | `0.5.15` | `0.5.17` |
| [nodemon](https://github.com/remy/nodemon) | `3.1.7` | `3.1.10` |
| [regenerator-runtime](https://github.com/facebook/regenerator) | `0.13.11` | `0.14.1` |
| [tsup](https://github.com/egoist/tsup) | `8.3.6` | `8.4.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.2` | `4.19.4` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.7` | `16.5.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.21.0` | `9.26.0` |
| [@next/eslint-plugin-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-plugin-next) | `15.2.1` | `15.3.2` |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `9.26.0` |
| [@types/eslint](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/eslint) | `8.56.12` | `9.6.1` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.0.2` | `10.1.3` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.4` | `7.37.5` |
| [eslint-plugin-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-plugin-turbo) | `2.4.4` | `2.5.3` |
| [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `16.1.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.26.0` | `8.32.0` |
| [zod](https://github.com/colinhacks/zod) | `3.24.2` | `3.24.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.4` | `22.15.15` |
| [n8n](https://github.com/n8n-io/n8n) | `1.78.1` | `1.91.2` |
| [n8n-workflow](https://github.com/n8n-io/n8n) | `1.70.0` | `1.82.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.18.0` | `8.32.0` |
| [@langchain/core](https://github.com/langchain-ai/langchainjs) | `0.3.40` | `0.3.54` |
| @smithery/sdk | `1.1.2` | `1.2.3` |
| [cache-manager](https://github.com/jaredwray/cacheable/tree/HEAD/packages/cache-manager) | `6.4.2` | `6.4.3` |
| [cacheable](https://github.com/jaredwray/cacheable/tree/HEAD/packages/cacheable) | `1.8.10` | `1.9.0` |
| [eventsource](https://github.com/EventSource/eventsource) | `3.0.5` | `3.0.6` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `28.0.2` | `28.0.3` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `16.0.0` | `16.0.1` |
| [rollup](https://github.com/rollup/rollup) | `4.34.9` | `4.40.2` |
| [rollup-plugin-dts](https://github.com/Swatinem/rollup-plugin-dts) | `6.1.1` | `6.2.1` |


Updates `@changesets/cli` from 2.28.1 to 2.29.3
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.28.1...@changesets/cli@2.29.3)

Updates `@commitlint/cli` from 19.7.1 to 19.8.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.7.1 to 19.8.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.0/@commitlint/config-conventional)

Updates `lint-staged` from 15.4.3 to 15.5.2
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.4.3...v15.5.2)

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

Updates `pretty-quick` from 4.0.0 to 4.1.1
- [Release notes](https://github.com/prettier/pretty-quick/releases)
- [Changelog](https://github.com/prettier/pretty-quick/blob/master/CHANGELOG.md)
- [Commits](prettier/pretty-quick@v4.0.0...v4.1.1)

Updates `turbo` from 2.4.2 to 2.5.3
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.4.2...v2.5.3)

Updates `typescript` from 4.9.4 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v4.9.4...v5.8.3)

Updates `vitest` from 3.0.5 to 3.1.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.3/packages/vitest)

Updates `@modelcontextprotocol/sdk` from 1.5.0 to 1.11.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@1.5.0...1.11.0)

Updates `express` from 4.18.2 to 5.1.0
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.18.2...v5.1.0)

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

Updates `@swc/core` from 1.10.16 to 1.11.24
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.10.16...v1.11.24)

Updates `@swc/helpers` from 0.5.15 to 0.5.17
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG-CORE.md)
- [Commits](https://github.com/swc-project/swc/commits/@swc/helpers@v0.5.17)

Updates `nodemon` from 3.1.7 to 3.1.10
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.7...v3.1.10)

Updates `regenerator-runtime` from 0.13.11 to 0.14.1
- [Release notes](https://github.com/facebook/regenerator/releases)
- [Commits](https://github.com/facebook/regenerator/compare/regenerator-runtime@0.13.11...regenerator-runtime@0.14.1)

Updates `tsup` from 8.3.6 to 8.4.0
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.3.6...v8.4.0)

Updates `tsx` from 4.19.2 to 4.19.4
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.19.2...v4.19.4)

Updates `dotenv` from 16.4.7 to 16.5.0
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.7...v16.5.0)

Updates `@eslint/js` from 9.21.0 to 9.26.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.26.0/packages/js)

Updates `@next/eslint-plugin-next` from 15.2.1 to 15.3.2
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.3.2/packages/eslint-plugin-next)

Updates `eslint` from 8.57.1 to 9.26.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.1...v9.26.0)

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

Updates `eslint-config-prettier` from 10.0.2 to 10.1.3
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.0.2...v10.1.3)

Updates `eslint-plugin-react` from 7.37.4 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.4...v7.37.5)

Updates `eslint-plugin-turbo` from 2.4.4 to 2.5.3
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.5.3/packages/eslint-plugin-turbo)

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

Updates `typescript-eslint` from 8.26.0 to 8.32.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.32.0/packages/typescript-eslint)

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

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

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

Updates `n8n` from 1.78.1 to 1.91.2
- [Release notes](https://github.com/n8n-io/n8n/releases)
- [Changelog](https://github.com/n8n-io/n8n/blob/n8n@1.91.2/CHANGELOG.md)
- [Commits](https://github.com/n8n-io/n8n/compare/n8n@1.78.1...n8n@1.91.2)

Updates `n8n-workflow` from 1.70.0 to 1.82.0
- [Release notes](https://github.com/n8n-io/n8n/releases)
- [Changelog](https://github.com/n8n-io/n8n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/n8n-io/n8n/compare/n8n@1.70.0...n8n@1.82.0)

Updates `@typescript-eslint/parser` from 7.18.0 to 8.32.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.32.0/packages/parser)

Updates `@langchain/core` from 0.3.40 to 0.3.54
- [Release notes](https://github.com/langchain-ai/langchainjs/releases)
- [Changelog](https://github.com/langchain-ai/langchainjs/blob/main/release_workspace.js)
- [Commits](https://github.com/langchain-ai/langchainjs/compare/@langchain/community==0.3.40...@langchain/core==0.3.54)

Updates `@smithery/sdk` from 1.1.2 to 1.2.3

Updates `cache-manager` from 6.4.2 to 6.4.3
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/cache-manager)

Updates `cacheable` from 1.8.10 to 1.9.0
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/cacheable)

Updates `eventsource` from 3.0.5 to 3.0.6
- [Release notes](https://github.com/EventSource/eventsource/releases)
- [Changelog](https://github.com/EventSource/eventsource/blob/main/CHANGELOG.md)
- [Commits](EventSource/eventsource@v3.0.5...v3.0.6)

Updates `@rollup/plugin-commonjs` from 28.0.2 to 28.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.3/packages/commonjs)

Updates `@rollup/plugin-node-resolve` from 16.0.0 to 16.0.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.1/packages/node-resolve)

Updates `rollup` from 4.34.9 to 4.40.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.34.9...v4.40.2)

Updates `rollup-plugin-dts` from 6.1.1 to 6.2.1
- [Changelog](https://github.com/Swatinem/rollup-plugin-dts/blob/master/CHANGELOG.md)
- [Commits](Swatinem/rollup-plugin-dts@v6.1.1...v6.2.1)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@commitlint/cli"
  dependency-version: 19.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 19.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-version: 15.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pretty-quick
  dependency-version: 4.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: turbo
  dependency-version: 2.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vitest
  dependency-version: 3.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: express
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/express"
  dependency-version: 5.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@swc/core"
  dependency-version: 1.11.24
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@swc/helpers"
  dependency-version: 0.5.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: nodemon
  dependency-version: 3.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: regenerator-runtime
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tsup
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tsx
  dependency-version: 4.19.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dotenv
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@eslint/js"
  dependency-version: 9.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@next/eslint-plugin-next"
  dependency-version: 15.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint
  dependency-version: 9.26.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/eslint"
  dependency-version: 9.6.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-plugin-turbo
  dependency-version: 2.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: globals
  dependency-version: 16.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: zod
  dependency-version: 3.24.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 22.15.15
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/eslint"
  dependency-version: 9.6.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: n8n
  dependency-version: 1.91.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: n8n-workflow
  dependency-version: 1.82.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.32.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@langchain/core"
  dependency-version: 0.3.54
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@smithery/sdk"
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cache-manager
  dependency-version: 6.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cacheable
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eventsource
  dependency-version: 3.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-commonjs"
  dependency-version: 28.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@rollup/plugin-node-resolve"
  dependency-version: 16.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rollup
  dependency-version: 4.40.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rollup-plugin-dts
  dependency-version: 6.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dependencies-4089a7f78c branch from 24cdf29 to 1bbc5e3 Compare May 9, 2025 02:09
Copy link
Author

dependabot bot commented on behalf of github May 9, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Author

dependabot bot commented on behalf of github May 9, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 9, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-4089a7f78c branch May 9, 2025 15:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Dependencies update suggestion security Security enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants