Skip to content

deps: bump the npm-non-major group across 1 directory with 7 updates - #265

Merged
ferueda merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-non-major-098c6605be
Aug 3, 2026
Merged

deps: bump the npm-non-major group across 1 directory with 7 updates#265
ferueda merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-non-major-098c6605be

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-non-major group with 7 updates in the / directory:

Package From To
@cursor/sdk 1.0.24 1.0.26
@openai/codex 0.145.0 0.146.0
@openai/codex-sdk 0.145.0 0.146.0
inngest 4.13.0 4.14.0
@types/node 26.1.1 26.1.2
inngest-cli 1.38.1 1.40.0
lint-staged 17.2.0 17.3.0

Updates @cursor/sdk from 1.0.24 to 1.0.26

Commits

Updates @openai/codex from 0.145.0 to 0.146.0

Commits

Updates @openai/codex-sdk from 0.145.0 to 0.146.0

Commits

Updates inngest from 4.13.0 to 4.14.0

Release notes

Sourced from inngest's releases.

inngest@4.14.0

Minor Changes

Patch Changes

Changelog

Sourced from inngest's changelog.

4.14.0

Minor Changes

Patch Changes

Commits

Updates @types/node from 26.1.1 to 26.1.2

Commits

Updates inngest-cli from 1.38.1 to 1.40.0

Release notes

Sourced from inngest-cli's releases.

v1.40.0

Release Notes

  • #4674 feat(mcp): generate mcp tools from rest api v2

    Updates dev server mcp tools list to expose more tools that align more closely with the v2 rest api and cli

Changelog

🚀 Features

  • (mcp) Generate mcp tools from rest api v2 (#4674)
  • (api) Add v2 apps list endpoint (#4657)

🐛 Bug Fixes

  • (epxressions) Add support for falsy terns (#4676)
  • (queue) Correct reversed errors.Is arguments for ErrQueueItemNotFound (#4679)

v1.39.0

Release Notes

  • #4638 feat(api): v2 api cancel run

    Adds cancel run to the v2 rest api and cli.

    POST /api/v2/runs/{run_id}/cancel

    inngest api POST /api/v2/runs/{run_id}/cancel

  • #4645 feat(api): rest v2 rerun from step

    POST /v2/runs/{run_id}/rerun

    with payload:

    {
      "fromStep": {
        "stepId": "fetch-user",
        "input": [
          {
            "userId": "user_123"
          }
        ]
      }
    }

    CLI equivalent:

... (truncated)

Changelog

Sourced from inngest-cli's changelog.

[v1.40.0] - 2026-07-30

🚀 Features

  • (mcp) Generate mcp tools from rest api v2 (#4674)
  • (api) Add v2 apps list endpoint (#4657)

🐛 Bug Fixes

  • (epxressions) Add support for falsy terns (#4676)
  • (queue) Correct reversed errors.Is arguments for ErrQueueItemNotFound (#4679)

[v1.39.0] - 2026-07-28

🚀 Features

  • (api) Rest v2 rerun from step (#4645)
  • (metadata) Augment incoming ai metadata with cost estimates (#4661)
  • (api) V2 api cancel run (#4638)

🐛 Bug Fixes

  • (cli) Improve cli timestamp arg handling (#4650)
  • Use snapshots to handle map race access (#4653)
  • (queue) Skip constraint lease on missing account (#4604)
  • Race creating workflow and checkpointing durable endpoint step (#4668)
  • (executor) Recover from panics in event lifecycle listeners (#4672)

🚜 Refactor

  • (queue) Add shard scanner boundary (#4655)
  • (queue) Add scanner runtime (#4665)
  • (queue) Expose available worker count (#4666)

⚙️ Miscellaneous Tasks

  • (logging) Add logging middleware for API (#4646)
  • Make cancellation deadline configurable (#4659)
  • (state) Add primitives for cross-backend run state migration (#4654)
  • (release) V1.39.0 (#4651)
Commits
  • 0d75b0b chore(release): v1.40.0 (#4677)
  • 390e94b feat(api): add v2 apps list endpoint (#4657)
  • 021ac72 feat(mcp): generate mcp tools from rest api v2 (#4674)
  • 3aff359 internal(queue): warn and count dropped retries on missing queue item (#4681)
  • 75eb07e fix(queue): correct reversed errors.Is arguments for ErrQueueItemNotFound (#4...
  • a312818 fix(epxressions): add support for falsy terns (#4676)
  • b84cdda chore(release): v1.39.0 (#4651)
  • 865fc12 feat(api): v2 api cancel run (#4638)
  • 7c65ede fix(executor): recover from panics in event lifecycle listeners (#4672)
  • dcdcc8f feat(metadata): Augment incoming ai metadata with cost estimates (#4661)
  • Additional commits viewable in compare view

Updates lint-staged from 17.2.0 to 17.3.0

Release notes

Sourced from lint-staged's releases.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.
Changelog

Sourced from lint-staged's changelog.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.
Commits
  • d153443 Merge pull request #1828 from lint-staged/changeset-release/main
  • 5162c14 chore(changeset): release
  • a4db9a4 Merge pull request #1831 from lint-staged/linter-updates
  • ea96cab style: enable oxlint "suspicious" category
  • 2fae007 style: add @e18e/eslint-plugin
  • 2280c38 Merge pull request #1829 from lint-staged/fix-merge-conflict-files
  • 1453ae6 test: relax assertion so that it passes in worktree
  • 15f7e53 fix: lint only files changed against HEAD and MERGE_HEAD, during a merge
  • dedfc31 Merge pull request #1825 from lint-staged/parallel-tasks-inside-sequence
  • 286e25c feat: allow running parallel tasks by nesting arrays
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 3, 2026
@ferueda

ferueda commented Aug 3, 2026

Copy link
Copy Markdown
Owner

@dependabot rebase

Bumps the npm-non-major group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@cursor/sdk](https://github.com/cursor/cursor) | `1.0.24` | `1.0.26` |
| [@openai/codex](https://github.com/openai/codex/tree/HEAD/codex-cli) | `0.145.0` | `0.146.0` |
| [@openai/codex-sdk](https://github.com/openai/codex/tree/HEAD/sdk/typescript) | `0.145.0` | `0.146.0` |
| [inngest](https://github.com/inngest/inngest-js/tree/HEAD/packages/inngest) | `4.13.0` | `4.14.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.1` | `26.1.2` |
| [inngest-cli](https://github.com/inngest/inngest) | `1.38.1` | `1.40.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.2.0` | `17.3.0` |



Updates `@cursor/sdk` from 1.0.24 to 1.0.26
- [Commits](https://github.com/cursor/cursor/commits)

Updates `@openai/codex` from 0.145.0 to 0.146.0
- [Commits](https://github.com/openai/codex/commits/rust-v0.146.0/codex-cli)

Updates `@openai/codex-sdk` from 0.145.0 to 0.146.0
- [Commits](https://github.com/openai/codex/commits/rust-v0.146.0/sdk/typescript)

Updates `inngest` from 4.13.0 to 4.14.0
- [Release notes](https://github.com/inngest/inngest-js/releases)
- [Changelog](https://github.com/inngest/inngest-js/blob/main/packages/inngest/CHANGELOG.md)
- [Commits](https://github.com/inngest/inngest-js/commits/inngest@4.14.0/packages/inngest)

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

Updates `inngest-cli` from 1.38.1 to 1.40.0
- [Release notes](https://github.com/inngest/inngest/releases)
- [Changelog](https://github.com/inngest/inngest/blob/main/CHANGELOG.md)
- [Commits](inngest/inngest@v1.38.1...v1.40.0)

Updates `lint-staged` from 17.2.0 to 17.3.0
- [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@v17.2.0...v17.3.0)

---
updated-dependencies:
- dependency-name: "@cursor/sdk"
  dependency-version: 1.0.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: "@openai/codex"
  dependency-version: 0.146.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@openai/codex-sdk"
  dependency-version: 0.146.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: "@types/node"
  dependency-version: 26.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-non-major
- dependency-name: inngest
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: inngest-cli
  dependency-version: 1.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title deps: bump the npm-non-major group with 7 updates deps: bump the npm-non-major group across 1 directory with 7 updates Aug 3, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-non-major-098c6605be branch from 8da5091 to e017f15 Compare August 3, 2026 19:40
@ferueda
ferueda merged commit cd224ca into main Aug 3, 2026
2 checks passed
@ferueda
ferueda deleted the dependabot/npm_and_yarn/npm-non-major-098c6605be branch August 3, 2026 19:45
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