Skip to content

chore: bump the dependencies group with 10 updates - #25

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-4d86bf2409
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-4d86bf2409

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 10, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 10 updates:

Package From To
uniffi-bindgen-react-native 0.31.0-2 0.31.0-5
@eslint/compat 1.4.1 2.1.1
@eslint/js 9.39.5 10.0.1
eslint 9.39.5 10.10.0
typescript 5.9.3 7.0.2
lucide-react-native 1.41.0 1.42.0
react-native-screens 4.16.0 4.27.0
@babel/core 7.28.3 8.0.1
@babel/preset-env 7.29.7 8.0.2
@babel/runtime 7.28.3 8.0.0

Updates uniffi-bindgen-react-native from 0.31.0-2 to 0.31.0-5

Release notes

Sourced from uniffi-bindgen-react-native's releases.

v0.31.0-5

0.31.0-5

✨ What's New ✨

🕸️ A new WASM flavour: wasm2

uniffi-bindgen-react-native gains a second WASM target, built on the same player architecture as the Node.js runtime shipped in 0.31.0-3. There is no shim crate to generate and no per-library glue to compile: ubrn build wasm2 compiles your crate once for wasm32-unknown-unknown, and the bindgen reads the UniFFI metadata straight out of that same .wasm, so the second native-only cargo build disappears. The generated wrapper opens no module itself, which leaves it environment-neutral — the same bindings bundle for Node, browsers and React Native alike.

Getting started: your crate needs to be a cdylib, link the new uniffi-runtime-wasm helper crate, and enable the uniffi_core feature that drops Send + Sync on exported objects. ubrn build wasm2 checks all three up front rather than letting cargo fail later. The player runtime is published to npm as @ubjs/wasm.

  • The player runtime, plus the uniffi-runtime-wasm helper crate consuming cdylibs link (#418).
  • Post-link processing of the wasm module — staging, a growable function table for callback trampolines, and dead-export stripping — and the crate-manifest queries the build validates (#424).
  • The Wasm2 ABI flavour in the bindgen, exporting PLAYER_DEFINITIONS and setNativeModule from the per-module wrapper, with a generated index.ts doing the opening (#425).
  • The ubrn build wasm2 and ubrn generate wasm2 subcommands, aliased web2 (#426).
  • The full fixture suite now runs against the flavour (#427) in CI (#428). As with the existing wasm flavour, the futures fixture is excluded: its TimerFuture wakes itself with std::thread::spawn, which single-threaded wasm32 cannot do.

Other new features

  • bindings.typescript.forceAsync in uniffi.toml gives chosen types and functions an async/Promise surface in TypeScript without making them async in Rust, so call sites can be migrated to await ahead of any real off-main-thread work. Set it to true for the whole crate, or to a list of names. See the reference — in particular, it moves no work off the main thread (#408).
  • bindings.typescript.strictTypeChecking drops the // @ts-nocheck header from generated files so tsc checks them (#408).
  • Lifting and lowering now share a cursor instead of creating a DataView per value, which speeds up types made of many small reads and writes — large or deeply nested records, recursive enums — on every backend (#413).
  • The supported uniffi-rs version is relaxed from =0.31.0 to =0.31, so 0.31.x point releases no longer need a matching release here (#431).

🦊 What's Changed

Memory leaks fixed

Four leaks affecting the N-API backend, present in 0.31.0-3. Upgrading is recommended for anyone making calls in a loop.

  • The RustBuffer returned by an async call was never freed, leaking one buffer per async call returning a string, byte array, record or list. The wasm flavour was unaffected (#420).
  • The N-API runtime allocated every RustBuffer argument twice and freed only one of the two, leaking a copy of each buffer passed into Rust — roughly 2.4 KB per frame. Lowered arguments are now library-owned rather than copied (#432). Thank you @​1egoman!
  • Callback trampolines were rebuilt on every call that marshalled a callback argument, instead of once per callback type as intended. rust_future_poll marshals its continuation on every poll, so every await of a uniffi async function paid this — each construction leaking a pinned napi_ref, a CallbackUserData, and a fresh ThreadsafeFunction libuv handle. Trampolines are now cached per callback type (#440).
  • Callback interfaces implemented in TypeScript leaked their whole serialized return value on each invocation, for any method returning a record, enum, Vec, Option or byte array. #432 taught the argument path to adopt library-owned buffers; the callback-return path still copied, orphaning the original. String returns were never affected — their converter produces TextEncoder memory rather than a library allocation (#442).

Alongside those, the runtime now refuses to free a buffer it cannot prove the library owns, rather than falling back to guessing the capacity from byteLength. Generated code always marks the buffers it frees, so this is hardening rather than a user-visible fix (#441).

Fixes

  • N-API: is_js_thread is now answered per callback rather than per process. Calling a library from a Node worker_threads worker — which is what Vitest and Jest do by default — hung on the first call, taking down worker.terminate() and process.exit() with it. Every async call was affected, not just calls with a callback of your own (#433, fixing #436). Thank you @​stupside!
  • Escape */ in generated TypeScript docstrings. TypeScript doesn't allow nested block comments, so a */ in a doc comment closed the docstring early and the rest was parsed as code, failing the build (#438). Thank you @​liamiepops!
  • Export the ./package.json subpath from the root package. The generated Android CMake resolves the package root with require.resolve('uniffi-bindgen-react-native/package.json'), which failed with ERR_PACKAGE_PATH_NOT_EXPORTED where Node enforces the exports map (#407, fixing #404). Thank you @​DeyLak!
  • Android: replace the deprecated TurboReactPackage with BaseReactPackage in the generated Kotlin and Java packages (#411, fixing #410). Thank you @​ANAMASGARD!
  • Emit opt-level = 3 rather than opt-level = "3" in the generated WASM template's release profile (#401). Thank you @​MrCreativ3001!

CI

  • The React Native compatibility matrix is now date-derived: React Native versions, create-react-native-library versions and runner images are tied together by date, covering the last 12 months of React Native. Per-PR checks run the latest versions only; the historical sweep runs nightly. This fixes the frequent build breakages caused by old React Native versions no longer building on macos-latest (#419).
  • Node 24 in CI (#439).

... (truncated)

Changelog

Sourced from uniffi-bindgen-react-native's changelog.

0.31.0-5

✨ What's New ✨

🕸️ A new WASM flavour: wasm2

uniffi-bindgen-react-native gains a second WASM target, built on the same player architecture as the Node.js runtime shipped in 0.31.0-3. There is no shim crate to generate and no per-library glue to compile: ubrn build wasm2 compiles your crate once for wasm32-unknown-unknown, and the bindgen reads the UniFFI metadata straight out of that same .wasm, so the second native-only cargo build disappears. The generated wrapper opens no module itself, which leaves it environment-neutral — the same bindings bundle for Node, browsers and React Native alike.

Getting started: your crate needs to be a cdylib, link the new uniffi-runtime-wasm helper crate, and enable the uniffi_core feature that drops Send + Sync on exported objects. ubrn build wasm2 checks all three up front rather than letting cargo fail later. The player runtime is published to npm as @ubjs/wasm.

  • The player runtime, plus the uniffi-runtime-wasm helper crate consuming cdylibs link (#418).
  • Post-link processing of the wasm module — staging, a growable function table for callback trampolines, and dead-export stripping — and the crate-manifest queries the build validates (#424).
  • The Wasm2 ABI flavour in the bindgen, exporting PLAYER_DEFINITIONS and setNativeModule from the per-module wrapper, with a generated index.ts doing the opening (#425).
  • The ubrn build wasm2 and ubrn generate wasm2 subcommands, aliased web2 (#426).
  • The full fixture suite now runs against the flavour (#427) in CI (#428). As with the existing wasm flavour, the futures fixture is excluded: its TimerFuture wakes itself with std::thread::spawn, which single-threaded wasm32 cannot do.

Other new features

  • bindings.typescript.forceAsync in uniffi.toml gives chosen types and functions an async/Promise surface in TypeScript without making them async in Rust, so call sites can be migrated to await ahead of any real off-main-thread work. Set it to true for the whole crate, or to a list of names. See the reference — in particular, it moves no work off the main thread (#408).
  • bindings.typescript.strictTypeChecking drops the // @ts-nocheck header from generated files so tsc checks them (#408).
  • Lifting and lowering now share a cursor instead of creating a DataView per value, which speeds up types made of many small reads and writes — large or deeply nested records, recursive enums — on every backend (#413).
  • The supported uniffi-rs version is relaxed from =0.31.0 to =0.31, so 0.31.x point releases no longer need a matching release here (#431).

🦊 What's Changed

Memory leaks fixed

Four leaks affecting the N-API backend, present in 0.31.0-3. Upgrading is recommended for anyone making calls in a loop.

  • The RustBuffer returned by an async call was never freed, leaking one buffer per async call returning a string, byte array, record or list. The wasm flavour was unaffected (#420).
  • The N-API runtime allocated every RustBuffer argument twice and freed only one of the two, leaking a copy of each buffer passed into Rust — roughly 2.4 KB per frame. Lowered arguments are now library-owned rather than copied (#432). Thank you @​1egoman!
  • Callback trampolines were rebuilt on every call that marshalled a callback argument, instead of once per callback type as intended. rust_future_poll marshals its continuation on every poll, so every await of a uniffi async function paid this — each construction leaking a pinned napi_ref, a CallbackUserData, and a fresh ThreadsafeFunction libuv handle. Trampolines are now cached per callback type (#440).
  • Callback interfaces implemented in TypeScript leaked their whole serialized return value on each invocation, for any method returning a record, enum, Vec, Option or byte array. #432 taught the argument path to adopt library-owned buffers; the callback-return path still copied, orphaning the original. String returns were never affected — their converter produces TextEncoder memory rather than a library allocation (#442).

Alongside those, the runtime now refuses to free a buffer it cannot prove the library owns, rather than falling back to guessing the capacity from byteLength. Generated code always marks the buffers it frees, so this is hardening rather than a user-visible fix (#441).

Fixes

  • N-API: is_js_thread is now answered per callback rather than per process. Calling a library from a Node worker_threads worker — which is what Vitest and Jest do by default — hung on the first call, taking down worker.terminate() and process.exit() with it. Every async call was affected, not just calls with a callback of your own (#433, fixing #436). Thank you @​stupside!
  • Escape */ in generated TypeScript docstrings. TypeScript doesn't allow nested block comments, so a */ in a doc comment closed the docstring early and the rest was parsed as code, failing the build (#438). Thank you @​liamiepops!
  • Export the ./package.json subpath from the root package. The generated Android CMake resolves the package root with require.resolve('uniffi-bindgen-react-native/package.json'), which failed with ERR_PACKAGE_PATH_NOT_EXPORTED where Node enforces the exports map (#407, fixing #404). Thank you @​DeyLak!
  • Android: replace the deprecated TurboReactPackage with BaseReactPackage in the generated Kotlin and Java packages (#411, fixing #410). Thank you @​ANAMASGARD!
  • Emit opt-level = 3 rather than opt-level = "3" in the generated WASM template's release profile (#401). Thank you @​MrCreativ3001!

CI

  • The React Native compatibility matrix is now date-derived: React Native versions, create-react-native-library versions and runner images are tied together by date, covering the last 12 months of React Native. Per-PR checks run the latest versions only; the historical sweep runs nightly. This fixes the frequent build breakages caused by old React Native versions no longer building on macos-latest (#419).
  • Node 24 in CI (#439).

⚠️ Breaking Changes

... (truncated)

Commits
  • 0f7fc67 Release 0.31.0-5 (#445)
  • 5183614 Release 0.31.0-4 (#444)
  • 67e978b fix(napi): adopt library-owned buffers on the callback path (#442)
  • 8ba07c3 fix(napi): never free a buffer the library does not own (#441)
  • 5d24b38 fix(napi): cache callback trampolines instead of rebuilding per call (#440)
  • 7afe979 fix(bindgen): escape */ in generated TypeScript docstrings (#438)
  • 3d6ddae Adopt library-owned RustBuffer arguments instead of copying them to attempt t...
  • d036aa2 Relax the supported uniffi-rs version to 0.31 (#431)
  • f655691 fix(napi): answer is_js_thread per callback, not per process (#433)
  • 9812c5e Update node version to 24 (#439)
  • Additional commits viewable in compare view

Updates @eslint/compat from 1.4.1 to 2.1.1

Release notes

Sourced from @​eslint/compat's releases.

compat: v2.1.1

2.1.1 (2026-09-01)

Bug Fixes

  • preserve markVariableAsUsed return value in compat context (#503) (66d9790)

compat: v2.1.0

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)

migrate-config: v2.1.0

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/config-helpers bumped from ^0.5.5 to ^0.6.0

migrate-config: v2.0.7

2.0.7 (2026-05-01)

Bug Fixes

migrate-config: v2.0.6

2.0.6 (2026-04-08)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/compat bumped from ^2.0.4 to ^2.0.5
    • devDependencies
      • @​eslint/core bumped from ^1.2.0 to ^1.2.1

... (truncated)

Changelog

Sourced from @​eslint/compat's changelog.

2.1.1 (2026-09-01)

Bug Fixes

  • preserve markVariableAsUsed return value in compat context (#503) (66d9790)

2.1.0 (2026-05-08)

Features

  • Add new includeIgnoreFile() to config-helpers (#430) (9b51352)

2.0.5 (2026-04-08)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/core bumped from ^1.2.0 to ^1.2.1

2.0.4 (2026-04-03)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/core bumped from ^1.1.1 to ^1.2.0

2.0.3 (2026-03-06)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​eslint/core bumped from ^1.1.0 to ^1.1.1

2.0.2 (2026-01-29)

Bug Fixes

Dependencies

... (truncated)

Commits
  • a4466ca chore: release main (#504)
  • 714ffde docs: Update README sponsors
  • 66d9790 fix: preserve markVariableAsUsed return value in compat context (#503)
  • caffae7 docs: Update README sponsors
  • ae1ba25 docs: Update README sponsors
  • 50051c6 docs: Update README sponsors
  • ea83524 docs: Update README sponsors
  • 29956ae docs: Update README sponsors
  • f6d5bdf docs: Update README sponsors
  • 8b71ed3 chore: restore eslint-plugin-jsdoc rules (#316)
  • Additional commits viewable in compare view

Updates @eslint/js from 9.39.5 to 10.0.1

Release notes

Sourced from @​eslint/js's releases.

v10.0.1

Bug Fixes

  • c87d5bd fix: update eslint (#20531) (renovate[bot])
  • d841001 fix: update minimatch to 10.2.1 to address security vulnerabilities (#20519) (루밀LuMir)
  • 04c2147 fix: update error message for unused suppressions (#20496) (fnx)
  • 38b089c fix: update dependency @​eslint/config-array to ^0.23.1 (#20484) (renovate[bot])

Documentation

  • 5b3dbce docs: add AI acknowledgement section to templates (#20431) (루밀LuMir)
  • 6f23076 docs: toggle nav in no-JS mode (#20476) (Tanuj Kanti)
  • b69cfb3 docs: Update README (GitHub Actions Bot)

Chores

  • e5c281f chore: updates for v9.39.3 release (Jenkins)
  • 8c3832a chore: update @​typescript-eslint/parser to ^8.56.0 (#20514) (Milos Djermanovic)
  • 8330d23 test: add tests for config-api (#20493) (Milos Djermanovic)
  • 37d6e91 chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494) (Milos Djermanovic)
  • da7cd0e refactor: cleanup error message templates (#20479) (Francesco Trotta)
  • 84fb885 chore: package.json update for @​eslint/js release (Jenkins)
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467) (Milos Djermanovic)

v10.0.0

Breaking Changes

  • f9e54f4 feat!: estimate rule-tester failure location (#20420) (ST-DDT)
  • a176319 feat!: replace chalk with styleText and add color to ResultsMeta (#20227) (루밀LuMir)
  • c7046e6 feat!: enable JSX reference tracking (#20152) (Pixel998)
  • fa31a60 feat!: add name to configs (#20015) (Kirk Waiblinger)
  • 3383e7e fix!: remove deprecated SourceCode methods (#20137) (Pixel998)
  • 501abd0 feat!: update dependency minimatch to v10 (#20246) (renovate[bot])
  • ca4d3b4 fix!: stricter rule tester assertions for valid test cases (#20125) (唯然)
  • 96512a6 fix!: Remove deprecated rule context methods (#20086) (Nicholas C. Zakas)
  • c69fdac feat!: remove eslintrc support (#20037) (Francesco Trotta)
  • 208b5cc feat!: Use ScopeManager#addGlobals() (#20132) (Milos Djermanovic)
  • a2ee188 fix!: add uniqueItems: true in no-invalid-regexp option (#20155) (Tanuj Kanti)
  • a89059d feat!: Program range span entire source text (#20133) (Pixel998)
  • 39a6424 fix!: assert 'text' is a string across all RuleFixer methods (#20082) (Pixel998)
  • f28fbf8 fix!: Deprecate "always" and "as-needed" options of the radix rule (#20223) (Milos Djermanovic)
  • aa3fb2b fix!: tighten func-names schema (#20119) (Pixel998)
  • f6c0ed0 feat!: report eslint-env comments as errors (#20128) (Francesco Trotta)
  • 4bf739f fix!: remove deprecated LintMessage#nodeType and TestCaseError#type (#20096) (Pixel998)
  • 523c076 feat!: drop support for jiti < 2.2.0 (#20016) (michael faith)
  • 454a292 feat!: update eslint:recommended configuration (#20210) (Pixel998)
  • 4f880ee feat!: remove v10_* and inactive unstable_* flags (#20225) (sethamus)
  • f18115c feat!: no-shadow-restricted-names report globalThis by default (#20027) (sethamus)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160) (Milos Djermanovic)

Features

  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457) (Francesco Trotta)
  • 290c594 feat: add self to no-implied-eval rule (#20468) (sethamus)
  • 43677de feat: fix handling of function and class expression names in no-shadow (#20432) (Milos Djermanovic)

... (truncated)

Commits
  • 84fb885 chore: package.json update for @​eslint/js release
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467)
  • f3fbc2f chore: set @eslint/js version to 10.0.0 to skip releasing it (#20466)
  • b4b3127 chore: package.json update for @​eslint/js release
  • 0b14059 chore: package.json update for @​eslint/js release
  • fa31a60 feat!: add name to configs (#20015)
  • 1e2cad5 chore: package.json update for @​eslint/js release
  • 454a292 feat!: update eslint:recommended configuration (#20210)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160)
  • See full diff in compare view

Updates eslint from 9.39.5 to 10.10.0

Release notes

Sourced from eslint's releases.

v10.10.0

Features

  • 264b434 feat: add d and v flags to no-unexpected-multiline (#21305) (Gihyeon Jeong / 정기현)
  • c6cc6c5 feat: check Object.prototype property names in new-cap (#21269) (crimsonjay0)
  • 5661fa6 feat: no-extra-bind false negatives with class fields and static blocks (#21260) (synthex-byte)

Bug Fixes

  • bb47dc6 fix: update dependency file-entry-cache to v11 (#20801) (Milos Djermanovic)
  • 427ac0a fix: use format strings in debug calls (#21247) (Francesco Trotta)
  • 9d81532 fix: support __proto__ in /* exported */ comments (#21261) (sethamus)
  • 87e0a08 fix: prefer-object-has-own autofix breaks when Object is shadowed (#21282) (김채영)
  • 8e2cb14 fix: new-cap false positive for UTC calls with properties: false (#21275) (Pixel)
  • 9f4a364 fix: Ignore static imports in no-unreachable (#21276) (Taha Kotil)

Documentation

  • 2417cad docs: Update README (GitHub Actions Bot)
  • 9cecb8a docs: document \c control letter escapes in no-control-regex (#21286) (한국)
  • 8724829 docs: update compat table links (#21263) (fnx)
  • 5634542 docs: Clarify eqeqeq suggestion behavior (#21256) (Müslüm Yılmaz)

Chores

  • b3d876b chore: disable npm audit in ecosystem tests (#21306) (Francesco Trotta)
  • 1696682 ci: restore EMFILE test on Node.js 26 (#21297) (Marry (Subin Yang))
  • 2c7f5d6 chore: update github/codeql-action action to v4.37.9 (#21296) (renovate[bot])
  • 3c753f1 chore: update eslint (#21289) (renovate[bot])
  • 1c73469 chore: update ecosystem plugins (#21280) (ESLint Bot)
  • 08a02be test: add error locations to no-extra-boolean-cast (#21266) (lumir)
  • 77bb1db chore: update github/codeql-action action to v4.37.8 (#21270) (renovate[bot])
  • 007e81a ci: skip EMFILE test on Node.js 26 (#21265) (lumir)
  • 0430280 chore: improve ecosystem tests compatibility on Windows (#21178) (crimsonjay0)

v10.9.1

Bug Fixes

  • 1e641c9 fix: no-loss-of-precision false positive with trailing decimal point (#21251) (Aleksandr Shoronov)

Documentation

  • ad74a8d docs: add deprecation steps for EOL package versions (#21248) (Francesco Trotta)

Chores

v10.9.0

Features

  • 08de88e feat: handle underflow in no-loss-of-precision (#21218) (Rithish S)
  • 55db479 feat: add checkConditionalExpressions to no-unmodified-loop-condition (#21175) (sethamus)

Bug Fixes

  • 2ba3025 fix: prevent unsafe no-var autofix with hoisted functions (#21213) (sethamus)
  • 8e69622 fix: Prevent no-var autofix when var is shadowed by catch parameter (#21204) (Yang Hyeonjong)
  • 684b579 fix: prefer-template invalid autofix creates a tagged template call (#21207) (김채영)

... (truncated)

Commits

Updates typescript from 5.9.3 to 7.0.2

Release notes

Sourced from typescript's releases.

TypeScript 7.0.2

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/

This tag was originally released at: https://github.com/microsoft/typescript-go/releases/tag/typescript%2Fv7.0.2

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0.1 RC

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 1e4744d Merge branch 'main' into ts7-release
  • a5a219cmicrosoft/typescript-go#4558
  • ecfe30d Update status localization
  • 5de25b5 Hide executable name in TypeScript status
  • d7ce74a Show bundled TypeScript version for packaged servers
  • 29be66a Correct TS 7 release version to 7.0.2
  • ed2bd1b Merge branch 'main' into ts7-release
  • 8873075 Bump the github-actions group across 1 directory with 3 updates (microsoft/ty...
  • 9427131 Set up stable / nightly extension split, other prep (microsoft/typescript-go#...
  • d4eaca5microsoft/typescript-go#4549
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript since your current version.


Updates lucide-react-native from 1.41.0 to 1.42.0

Release notes

Sourced from lucide-react-native's releases.

Version 1.42.0

What's Changed

Bumps the dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [uniffi-bindgen-react-native](https://github.com/jhugman/uniffi-bindgen-react-native) | `0.31.0-2` | `0.31.0-5` |
| [@eslint/compat](https://github.com/eslint/rewrite/tree/HEAD/packages/compat) | `1.4.1` | `2.1.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.5` | `10.0.1` |
| [eslint](https://github.com/eslint/eslint) | `9.39.5` | `10.10.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
| [lucide-react-native](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react-native) | `1.41.0` | `1.42.0` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.16.0` | `4.27.0` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.3` | `8.0.1` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.29.7` | `8.0.2` |
| [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime) | `7.28.3` | `8.0.0` |


Updates `uniffi-bindgen-react-native` from 0.31.0-2 to 0.31.0-5
- [Release notes](https://github.com/jhugman/uniffi-bindgen-react-native/releases)
- [Changelog](https://github.com/jhugman/uniffi-bindgen-react-native/blob/main/CHANGELOG.md)
- [Commits](jhugman/uniffi-bindgen-react-native@0.31.0-2...0.31.0-5)

Updates `@eslint/compat` from 1.4.1 to 2.1.1
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/compat/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/compat-v2.1.1/packages/compat)

Updates `@eslint/js` from 9.39.5 to 10.0.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js)

Updates `eslint` from 9.39.5 to 10.10.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.5...v10.10.0)

Updates `typescript` from 5.9.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

Updates `lucide-react-native` from 1.41.0 to 1.42.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.42.0/packages/lucide-react-native)

Updates `react-native-screens` from 4.16.0 to 4.27.0
- [Release notes](https://github.com/software-mansion/react-native-screens/releases)
- [Commits](software-mansion/react-native-screens@4.16.0...4.27.0)

Updates `@babel/core` from 7.28.3 to 8.0.1
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.1/packages/babel-core)

Updates `@babel/preset-env` from 7.29.7 to 8.0.2
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.2/packages/babel-preset-env)

Updates `@babel/runtime` from 7.28.3 to 8.0.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v8.0.0/packages/babel-runtime)

---
updated-dependencies:
- dependency-name: uniffi-bindgen-react-native
  dependency-version: 0.31.0-5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@eslint/compat"
  dependency-version: 2.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@eslint/js"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: eslint
  dependency-version: 10.10.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: lucide-react-native
  dependency-version: 1.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-native-screens
  dependency-version: 4.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/core"
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@babel/preset-env"
  dependency-version: 8.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@babel/runtime"
  dependency-version: 8.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 10, 2026
@dependabot @github

dependabot Bot commented on behalf of github Sep 17, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Sep 17, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/dependencies-4d86bf2409 branch September 17, 2026 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.

0 participants