Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2025

Bumps the dependencies group with 21 updates:

Package From To
@commitlint/cli 19.8.1 20.1.0
@commitlint/config-conventional 19.8.1 20.0.0
prettier 2.8.8 3.7.4
diff 7.0.0 8.0.2
@types/diff 7.0.2 8.0.0
file-type 20.5.0 21.1.1
ink 5.2.1 6.5.1
marked 15.0.12 17.0.1
meow 13.2.0 14.0.0
open 10.2.0 11.0.0
openai 4.104.0 6.9.1
react 18.3.1 19.2.1
@types/react 18.3.27 19.2.7
terminal-image 3.1.1 4.1.0
@typescript-eslint/eslint-plugin 7.18.0 8.48.1
@typescript-eslint/parser 7.18.0 8.48.1
esbuild 0.23.1 0.27.1
eslint-plugin-react-hooks 4.6.2 7.0.1
ink-testing-library 3.0.0 4.0.0
vitest 3.2.4 4.0.15
whatwg-url 14.2.0 15.1.0

Updates @commitlint/cli from 19.8.1 to 20.1.0

Release notes

Sourced from @​commitlint/cli's releases.

v20.1.0

20.1.0 (2025-09-30)

Features

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v20.0.0...v20.1.0

v20.0.0

20.0.0 (2025-09-25)

Features

BREAKING CHANGES

  • when lines contain URLs exceeding the maximum line length body-max-line-length will be ignored

Full Changelog: conventional-changelog/commitlint@v19.9.1...v20.0.0

v19.9.1

19.9.1 (2025-08-29)

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

20.1.0 (2025-09-30)

Note: Version bump only for package @​commitlint/cli

20.0.0 (2025-09-25)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 19.8.1 to 20.0.0

Release notes

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

v20.0.0

20.0.0 (2025-09-25)

Features

BREAKING CHANGES

  • when lines contain URLs exceeding the maximum line length body-max-line-length will be ignored

Full Changelog: conventional-changelog/commitlint@v19.9.1...v20.0.0

v19.9.1

19.9.1 (2025-08-29)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v19.9.0...v19.9.1

v19.9.0

19.9.0 (2025-08-26)

Features

Chore, docs, etc.

... (truncated)

Changelog

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

20.0.0 (2025-09-25)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates prettier from 2.8.8 to 3.7.4

Release notes

Sourced from prettier's releases.

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

3.6.2

What's Changed

🔗 Changelog

3.6.1

  • Fix "Warning: File descriptor 39 closed but not opened in unmanaged mode" error when running --experimental-cli

🔗 Changelog

3.6.0

diff

... (truncated)

Changelog

Sourced from prettier's changelog.

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
// Prettier 3.7.3
type Foo = /** comment / (/* comment */ a | b) | c;
// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;

TypeScript: Fix unstable comment print in union type comments (#18395 by @​fisker)

// Input
type X = (A | B) & (
  // comment
  A | B
);
// Prettier 3.7.3 (first format)
type X = (A | B) &
(// comment
A | B);
// Prettier 3.7.3 (second format)
type X = (
| A
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates diff from 7.0.0 to 8.0.2

Changelog

Sourced from diff's changelog.

8.0.2

  • #616 Restored compatibility of diffSentences with old Safari versions. This was broken in 8.0.0 by the introduction of a regex with a lookbehind assertion; these weren't supported in Safari prior to version 16.4.
  • #612 Improved tree shakeability by marking the built CJS and ESM packages with sideEffects: false.

8.0.1

  • #610 Fixes types for diffJson which were broken by 8.0.0. The new bundled types in 8.0.0 only allowed diffJson to be passed string arguments, but it should've been possible to pass either strings or objects (and now is). Thanks to Josh Kelley for the fix.

8.0.0

  • #580 Multiple tweaks to diffSentences:
    • tokenization no longer takes quadratic time on pathological inputs (reported as a ReDOS vulnerability by Snyk); is now linear instead
    • the final sentence in the string is now handled the same by the tokenizer regardless of whether it has a trailing punctuation mark or not. (Previously, "foo. bar." tokenized to ["foo.", " ", "bar."] but "foo. bar" tokenized to ["foo.", " bar"] - i.e. whether the space between sentences was treated as a separate token depended upon whether the final sentence had trailing punctuation or not. This was arbitrary and surprising; it is no longer the case.)
    • in a string that starts with a sentence end, like "! hello.", the "!" is now treated as a separate sentence
    • the README now correctly documents the tokenization behaviour (it was wrong before)
  • #581 - fixed some regex operations used for tokenization in diffWords taking O(n^2) time in pathological cases
  • #595 - fixed a crash in patch creation functions when handling a single hunk consisting of a very large number (e.g. >130k) of lines. (This was caused by spreading indefinitely-large arrays to .push() using .apply or the spread operator and hitting the JS-implementation-specific limit on the maximum number of arguments to a function, as shown at https://stackoverflow.com/a/56809779/1709587; thus the exact threshold to hit the error will depend on the environment in which you were running JsDiff.)
  • #596 - removed the merge function. Previously JsDiff included an undocumented function called merge that was meant to, in some sense, merge patches. It had at least a couple of serious bugs that could lead to it returning unambiguously wrong results, and it was difficult to simply "fix" because it was unclear precisely what it was meant to do. For now, the fix is to remove it entirely.
  • #591 - JsDiff's source code has been rewritten in TypeScript. This change entails the following changes for end users:
    • the diff package on npm now includes its own TypeScript type definitions. Users who previously used the @types/diff npm package from DefinitelyTyped should remove that dependency when upgrading JsDiff to v8.

      Note that the transition from the DefinitelyTyped types to JsDiff's own type definitions includes multiple fixes and also removes many exported types previously used for options arguments to diffing and patch-generation functions. (There are now different exported options types for abortable calls - ones with a timeout or maxEditLength that may give a result of undefined - and non-abortable calls.) See the TypeScript section of the README for some usage tips.

    • The Diff object is now a class. Custom extensions of Diff, as described in the "Defining custom diffing behaviors" section of the README, can therefore now be done by writing a class CustomDiff extends Diff and overriding methods, instead of the old way based on prototype inheritance. (I think code that did things the old way should still work, though!)

    • diff/lib/index.es6.js and diff/lib/index.mjs no longer exist, and the ESM version of the library is no longer bundled into a single file.

    • The ignoreWhitespace option for diffWords is no longer included in the type declarations. The effect of passing ignoreWhitespace: true has always been to make diffWords just call diffWordsWithSpace instead, which was confusing, because that behaviour doesn't seem properly described as "ignoring" whitespace at all. The property remains available to non-TypeScript applications for the sake of backwards compatibility, but TypeScript applications will now see a type error if they try to pass ignoreWhitespace: true to diffWords and should change their code to call diffWordsWithSpace instead.

    • JsDiff no longer purports to support ES3 environments. (I'm pretty sure it never truly did, despite claiming to in its README, since even the 1.0.0 release used Array.map which was added in ES5.)

  • #601 - diffJson's stringifyReplacer option behaves more like JSON.stringify's replacer argument now. In particular:
    • Each key/value pair now gets passed through the replacer once instead of twice
    • The key passed to the replacer when the top-level object is passed in as value is now "" (previously, was undefined), and the key passed with an array element is the array index as a string, like "0" or "1" (previously was whatever the key for the entire array was). Both the new behaviours match that of JSON.stringify.
  • #602 - diffing functions now consistently return undefined when called in async mode (i.e. with a callback). Previously, there was an odd quirk where they would return true if the strings being diffed were equal and undefined otherwise.
Commits

Updates @types/diff from 7.0.2 to 8.0.0

Commits

Updates file-type from 20.5.0 to 21.1.1

Release notes

Sourced from file-type's releases.

v21.1.1

  • Fix handling of partial Gunzip file (#783) 710e053

sindresorhus/file-type@v21.1.0...v21.1.1

v21.1.0

  • Add support for .tar.gz (gunzipped tarball file) (#763) eda03a7
  • Add support for Windows registry (.reg) files 0db61ec 7d2ddcf
  • Add support for Windows registry hive file (.dat) (#767) f8d62be
  • Fix: Handle partial unzip (#773) 7ad3a90

sindresorhus/file-type@v21.0.0...v21.1.0

v21.0.0

Breaking

  • Require Node.js 20 24aec1f
  • Drop Adobe Illustrator (.ai) detection support (#743) af169f3
  • Correct Matroska (video) MIME-type to formal IANA registration (#753) f53f5ff
  • Correct FLAC MIME-type to formal IANA registration (#755) b9fda36
  • Correct Apache Parquet MIME-type to formal IANA registration (#748) 98e3f8e
  • Correct Apache Arrow MIME-type to formal IANA registration (#754) 7184775

Improvements

  • Allow options to be directly passed to exported functions (#752) d264029
  • Add mpegOffsetTolerance option (#646) c40840a

Fixes

  • Fix detection of some PAX TAR formats (#762) 574d0d6

sindresorhus/file-type@v20.5.0...v21.0.0

Commits

Updates ink from 5.2.1 to 6.5.1

Release notes

Sourced from ink's releases.

v6.5.1

  • Fix handling of terminal resize (#828) 557b029

vadimdemedes/ink@v6.5.0...v6.5.1

v6.5.0


vadimdemedes/ink@v6.4.0...v6.5.0

v6.4.0


vadimdemedes/ink@v6.3.1...v6.4.0

v6.3.1

  • Fix extra newline in fullscreen mode (#769) fe40d42
  • Fix react-devtools compatibility (#777) 9581ae1

vadimdemedes/ink@v6.3.0...v6.3.1

v6.3.0


vadimdemedes/ink@v6.2.3...v6.3.0

v6.2.3

  • Fix nested newlines in screen reader mode (#754) c95ed99

vadimdemedes/ink@v6.2.2...v6.2.3

v6.2.2

  • Fix screen reader static rendering (#749) e4eb92b

vadimdemedes/ink@v6.2.1...v6.2.2

... (truncated)

Commits

Updates marked from 15.0.12 to 17.0.1

Release notes

Sourced from marked's releases.

v17.0.1

17.0.1 (2025-11-20)

Bug Fixes

v17.0.0

17.0.0 (2025-11-07)

Bug Fixes

BREAKING CHANGES

  • Change how consecutive text tokens work in lists
  • Simplify listItem renderer
  • Checkbox token is added in list tokenizer
  • Checkbox token add type and raw property
  • Change loose list text tokens to paragraph type in the list tokenizer

v16.4.2

16.4.2 (2025-11-06)

Bug Fixes

v16.4.1

16.4.1 (2025-10-17)

Bug Fixes

v16.4.0

16.4.0 (2025-10-07)

Bug Fixes

... (truncated)

Commits
  • 16209f5 chore(release): 17.0.1 [skip ci]
  • 921ee22 fix: fix block elements in task item (#3828)
  • 1e47df2 chore(deps-dev): Bump @​semantic-release/npm from 13.1.1 to 13.1.2 (#3841)
  • 8a355d1 chore(deps-dev): Bump @​markedjs/eslint-config from 1.0.13 to 1.0.14 (#3835)
  • c43a67e chore(deps-dev): Bump eslint from 9.39.0 to 9.39.1 (#3834)
  • de635d8 chore(deps-dev): Bump esbuild from 0.25.12 to 0.27.0 (#3833)
  • 554cd8d chore(deps-dev): Bump marked-highlight from 2.2.2 to 2.2.3 (#3832)
  • 1711dbb chore(deps-dev): Bump @​semantic-release/github from 12.0.1 to 12.0.2 (#3831)
  • 23b9d01 docs: Modernize Docs UI with Tailwind, Dark Mode, and Improved Layout (#3814)
  • 9657f0b chore(release): 17.0.0 [skip ci]
  • Additional commits viewable in compare view

Updates meow from 13.2.0 to 14.0.0

Release notes

Sourced from meow's releases.

v14.0.0

Breaking

  • Require Node.js 20 47b3bcb

Fixes

  • Fix incorrect automatic number conversion for flag values 8f3909c

sindresorhus/meow@v13.2.0...v14.0.0

Commits

Updates open from 10.2.0 to 11.0.0

Release notes

Sourced from open's releases.

v11.0.0

Breaking

  • Require Node.js 20 e789eec

Improvements

  • Automatically detect whether PowerShell is accessible in WSL 67109f8
  • Add chromium-browser fallback for Linux b40f4b8
  • Throw AggregateError instead of only latest error (#364) 2778ac6

Fixes

  • Fix app launch failure detection for fallback support ce31b94
  • Fix WSL access via remote SSH 8821bf7
  • Fix handling of import.meta.url not being available 8ce0f7d
  • Fix: Suppress PowerShell progress messages on Windows 2283000
  • Fix: Ignore stdio on Windows when not waiting for process e1af0ee
  • Fix WSL2 local file opening 269b5fd
  • Fix spawn handling 966239c
  • Fix PowerShell argument escaping 274d704

sindresorhus/open@v10.2.0...v11.0.0

Commits
  • 8815330 11.0.0
  • b8d8107 Refactor
  • ce31b94 Fix app launch failure detection for fallback support
  • b40f4b8 Add chromium-browser fallback for Linux
  • e789eec Require Node.js 20
  • 67109f8 Automatically detect PowerShell accessibility in WSL
  • 8821bf7 Fix WSL access via remote SSH
  • 8ce0f7d Fix handling of import.meta.url not being available
  • 2283000 Suppress PowerShell progress messages on Windows
  • e1af0ee Ignore stdio on Windows when not waiting for process
  • Additional commits viewable in compare view

Updates openai from 4.104.0 to 6.9.1

Release notes

Sourced from openai's releases.

v6.9.1

6.9.1 (2025-11-17)

Full Changelog: v6.9.0...v6.9.1

Bug Fixes

  • api: align types of input items / output items for typescript (99adaa7)

v6.9.0

6.9.0 (2025-11-13)

Full Changelog: v6.8.1...v6.9.0

Features

Chores

  • add typescript-estree dependency for jsr readme script (3759514)

v6.8.1

6.8.1 (2025-11-05)

Full Changelog: v6.8.0...v6.8.1

Bug Fixes

  • api: fix nullability of logprobs (40a403c)

v6.8.0

6.8.0 (2025-11-03)

Full Changelog: v6.7.0...v6.8.0

Features

  • api: Realtime API token_limits, Hybrid searching ranking options (6a5b48c)
  • api: remove InputAudio from ResponseInputContent (9909fef)

Chores

  • internal: codegen related update (3ad52aa)

v6.7.0

6.7.0 (2025-10-24)

... (truncated)

Changelog

Sourced from openai's changelog.

6.9.1 (2025-11-17)

Full Changelog: v6.9.0...v6.9.1

Bug Fixes

  • api: align types of input items / output items for typescript (99adaa7)

6.9.0 (2025-11-13)

Full Changelog: v6.8.1...v6.9.0

Features

Chores

  • add typescript-estree dependency for jsr readme script (3759514)

6.8.1 (2025-11-05)

Full Changelog: v6.8.0...v6.8.1

Bug Fixes

  • api: fix nullability of logprobs (40a403c)

6.8.0 (2025-11-03)

Full Changelog: v6.7.0...v6.8.0

Features

  • api: Realtime API token_limits, Hybrid searching ranking options (6a5b48c)
  • api: remove InputAudio from ResponseInputContent (9909fef)

Chores

  • internal: codegen related update (3ad52aa)

6.7.0 (2025-10-24)

Full Changelog: v6.6.0...v6.7.0

Features

... (truncated)

Commits
  • c9a4d68 release: 6.9.1
  • edc0e1c fix(api): align types of input items / output items for typescript
  • 1f2d35e update zod imports to reduce esbuild bundle size by 260kb (#1703)
  • 92d65d7 release: 6.9.0
  • 7a3c26e feat(api): gpt 5.1
  • 88135c8 codegen metadata
  • cd95c0d chore: add typescript-estree dependency for jsr readme script
  • 7a97bfc release: 6.8.1
  • d1f169f fix(api): fix nullability of logprobs
  • d1c87a3 release: 6.8.0
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by kwhinnery-openai, a new releaser for openai since your current version.


Updates react from 18.3.1 to 19.2.1

Release notes

Sourced from react's releases.

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

React DOM

... (truncated)

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 4, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2025

Assignees

The following users could not be added as assignees: @neopilotai/team. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 4, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 4, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Bumps the dependencies group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.8.1` | `20.1.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.8.1` | `20.0.0` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.7.4` |
| [diff](https://github.com/kpdecker/jsdiff) | `7.0.0` | `8.0.2` |
| [@types/diff](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/diff) | `7.0.2` | `8.0.0` |
| [file-type](https://github.com/sindresorhus/file-type) | `20.5.0` | `21.1.1` |
| [ink](https://github.com/vadimdemedes/ink) | `5.2.1` | `6.5.1` |
| [marked](https://github.com/markedjs/marked) | `15.0.12` | `17.0.1` |
| [meow](https://github.com/sindresorhus/meow) | `13.2.0` | `14.0.0` |
| [open](https://github.com/sindresorhus/open) | `10.2.0` | `11.0.0` |
| [openai](https://github.com/openai/openai-node) | `4.104.0` | `6.9.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.27` | `19.2.7` |
| [terminal-image](https://github.com/sindresorhus/terminal-image) | `3.1.1` | `4.1.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.18.0` | `8.48.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.18.0` | `8.48.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.1` | `0.27.1` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.2` | `7.0.1` |
| [ink-testing-library](https://github.com/vadimdemedes/ink-testing-library) | `3.0.0` | `4.0.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.15` |
| [whatwg-url](https://github.com/jsdom/whatwg-url) | `14.2.0` | `15.1.0` |


Updates `@commitlint/cli` from 19.8.1 to 20.1.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/v20.1.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.8.1 to 20.0.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/v20.0.0/@commitlint/config-conventional)

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

Updates `diff` from 7.0.0 to 8.0.2
- [Changelog](https://github.com/kpdecker/jsdiff/blob/master/release-notes.md)
- [Commits](kpdecker/jsdiff@7.0.0...v8.0.2)

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

Updates `file-type` from 20.5.0 to 21.1.1
- [Release notes](https://github.com/sindresorhus/file-type/releases)
- [Commits](sindresorhus/file-type@v20.5.0...v21.1.1)

Updates `ink` from 5.2.1 to 6.5.1
- [Release notes](https://github.com/vadimdemedes/ink/releases)
- [Commits](vadimdemedes/ink@v5.2.1...v6.5.1)

Updates `marked` from 15.0.12 to 17.0.1
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v15.0.12...v17.0.1)

Updates `meow` from 13.2.0 to 14.0.0
- [Release notes](https://github.com/sindresorhus/meow/releases)
- [Commits](sindresorhus/meow@v13.2.0...v14.0.0)

Updates `open` from 10.2.0 to 11.0.0
- [Release notes](https://github.com/sindresorhus/open/releases)
- [Commits](sindresorhus/open@v10.2.0...v11.0.0)

Updates `openai` from 4.104.0 to 6.9.1
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v4.104.0...v6.9.1)

Updates `react` from 18.3.1 to 19.2.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.1/packages/react)

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

Updates `terminal-image` from 3.1.1 to 4.1.0
- [Release notes](https://github.com/sindresorhus/terminal-image/releases)
- [Commits](sindresorhus/terminal-image@v3.1.1...v4.1.0)

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

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

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

Updates `@typescript-eslint/parser` from 7.18.0 to 8.48.1
- [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.48.1/packages/parser)

Updates `esbuild` from 0.23.1 to 0.27.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md)
- [Commits](evanw/esbuild@v0.23.1...v0.27.1)

Updates `eslint-plugin-react-hooks` from 4.6.2 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `ink-testing-library` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/vadimdemedes/ink-testing-library/releases)
- [Commits](vadimdemedes/ink-testing-library@v3.0.0...v4.0.0)

Updates `vitest` from 3.2.4 to 4.0.15
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.15/packages/vitest)

Updates `whatwg-url` from 14.2.0 to 15.1.0
- [Release notes](https://github.com/jsdom/whatwg-url/releases)
- [Commits](jsdom/whatwg-url@v14.2.0...v15.1.0)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-version: 20.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: diff
  dependency-version: 8.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/diff"
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: file-type
  dependency-version: 21.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: ink
  dependency-version: 6.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: marked
  dependency-version: 17.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: meow
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: open
  dependency-version: 11.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: openai
  dependency-version: 6.9.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: terminal-image
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/diff"
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.48.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: esbuild
  dependency-version: 0.27.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: ink-testing-library
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vitest
  dependency-version: 4.0.15
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: whatwg-url
  dependency-version: 15.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dependencies-033741abfa branch from 1a59699 to efddb2a Compare December 4, 2025 23:40
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 15, 2025

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

@dependabot dependabot bot closed this Dec 15, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-033741abfa branch December 15, 2025 16:41
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