Skip to content

chore(deps-mobile)(deps-dev): bump the mobile-dev-dependencies group across 1 directory with 4 updates#143

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mobile/mobile-dev-dependencies-318a2e3d37
Open

chore(deps-mobile)(deps-dev): bump the mobile-dev-dependencies group across 1 directory with 4 updates#143
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mobile/mobile-dev-dependencies-318a2e3d37

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 23, 2026

Bumps the mobile-dev-dependencies group with 4 updates in the /mobile directory: @capacitor/cli, eslint-plugin-react-refresh, terser and typescript-eslint.

Updates @capacitor/cli from 8.1.0 to 8.2.0

Release notes

Sourced from @​capacitor/cli's releases.

8.2.0

8.2.0 (2026-03-06)

Bug Fixes

  • android: Add missing null checks in BridgeActivity (#8185) (bd29b99)
  • android: Concurrent Range Requests for assets (#8357) (5e82c89)
  • android: handle lowercase range header (#8368) (ae0e2dd)
  • android: invalid http range seeking (#8369) (3109d22)
  • cli: Allow to run update on non macOS (#8344) (a441280)
  • cli: Don't overwrite config.server section with --live-reload (#7528) (782b9d9)
  • cli: use 8.0.0 as default Capacitor SPM dependency version (#8341) (a55dc5e)
  • docs: fix typo in CapApp-SPM README (#8348) (7d001ac)
  • ios: remove tmpWindow usages on presentVC/dismissVC (#8338) (fc9647f)

Features

  • cli: Add --https option for --live-reload (#8194) (5db81e6)
Changelog

Sourced from @​capacitor/cli's changelog.

8.2.0 (2026-03-06)

Bug Fixes

  • android: Add missing null checks in BridgeActivity (#8185) (bd29b99)
  • android: Concurrent Range Requests for assets (#8357) (5e82c89)
  • android: handle lowercase range header (#8368) (ae0e2dd)
  • android: invalid http range seeking (#8369) (3109d22)
  • cli: Allow to run update on non macOS (#8344) (a441280)
  • cli: Don't overwrite config.server section with --live-reload (#7528) (782b9d9)
  • cli: use 8.0.0 as default Capacitor SPM dependency version (#8341) (a55dc5e)
  • docs: fix typo in CapApp-SPM README (#8348) (7d001ac)
  • ios: remove tmpWindow usages on presentVC/dismissVC (#8338) (fc9647f)

Features

  • cli: Add --https option for --live-reload (#8194) (5db81e6)
Commits
  • 09770f7 Release 8.2.0
  • 379101c docs(cli): Better descriptions for live-reload parameters (#8373)
  • ae0e2dd fix(android): handle lowercase range header (#8368)
  • 3109d22 fix(android): invalid http range seeking (#8369)
  • 5db81e6 feat(cli): Add --https option for --live-reload (#8194)
  • 782b9d9 fix(cli): Don't overwrite config.server section with --live-reload (#7528)
  • 5e82c89 fix(android): Concurrent Range Requests for assets (#8357)
  • bd29b99 fix(android): Add missing null checks in BridgeActivity (#8185)
  • 7d001ac fix(docs): fix typo in CapApp-SPM README (#8348)
  • fc9647f fix(ios): remove tmpWindow usages on presentVC/dismissVC (#8338)
  • Additional commits viewable in compare view

Updates eslint-plugin-react-refresh from 0.4.26 to 0.5.2

Release notes

Sourced from eslint-plugin-react-refresh's releases.

v0.5.2

  • Support nested function calls for extraHOCs (actually fixes #104)

v0.5.1

  • Mark ESLint v10 as supported
  • Support false positives with TypeScript function overloading (fixes #105)
  • Support nested function calls for extraHOCs (fixes #104)

v0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option (like connect or styled)

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
],
},
});
</tr></table>

... (truncated)

Changelog

Sourced from eslint-plugin-react-refresh's changelog.

0.5.2

  • Support nested function calls for extraHOCs (actually fixes #104)

0.5.1

  • Mark ESLint v10 as supported
  • Support false positives with TypeScript function overloading (fixes #105)
  • Support nested function calls for extraHOCs (fixes #104)

0.5.0

Breaking changes

  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig(
/* Main config */
reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";
export default defineConfig({
files: ["/*.ts", "/*.tsx"],
plugins: {
// other plugins
"react-refresh": reactRefresh.plugin,
},
rules: {
// other rules
"react-refresh/only-export-components": [
"warn",
{ extraHOCs: ["someLibHOC"] },
</tr></table>

... (truncated)

Commits
  • c0317bf Fix support for nested function calls for extraHOCs [publish]
  • 42a1805 Explicit v10 support (fixes #106) [publish]
  • 199793e Support nested function calls for extraHOCs (fixes #104)
  • 26b3c15 Support false positives with TypeScript function overloading (fixes #105)
  • daa2efb Revamp logic to catch more cases [publish] (#97)
  • See full diff in compare view

Updates terser from 5.46.0 to 5.46.1

Changelog

Sourced from terser's changelog.

v5.46.1

  • Fix extremely slow (seemed like a freeze) evaluate of method chains
  • Parse extremely large floating-point number literals as Infinity
  • Remove parens from comma expressions in computed property access (foo[(1, 2)])
Commits
  • e186a01 5.46.1
  • 04a9625 update changelog
  • 1055a1d remove unnecessary properties from AST_Infinity
  • 93d03a3 lint
  • 8392f62 fix parsing number literals large enough to be perceived as Infinity
  • 14d81c5 fix exponentially slower evaluation of chained methods. Closes #1650
  • 0ed7a2f no parentheses around comma-expressions (sequences) within computed property ...
  • See full diff in compare view

Updates typescript-eslint from 8.56.1 to 8.57.1

Release notes

Sourced from typescript-eslint's releases.

v8.57.1

8.57.1 (2026-03-16)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chain] no report for property on intersection type (#12126)

❤️ Thank You

See GitHub Releases for more information.

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

v8.57.0

8.57.0 (2026-03-09)

🚀 Features

  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#12080)

🩹 Fixes

  • eslint-plugin: [strict-void-return] false positives with overloads (#12055)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#12079)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#12077)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#12094)
  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#12089)
  • typescript-estree: switch back to use ts.getModifiers() (#12034)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#11355)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

Sourced from typescript-eslint's changelog.

8.57.1 (2026-03-16)

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

See GitHub Releases for more information.

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

8.57.0 (2026-03-09)

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

See GitHub Releases for more information.

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

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added automated dependencies Pull requests that update a dependency file mobile labels Mar 23, 2026
@vercel
Copy link
Copy Markdown
Contributor

vercel bot commented Mar 23, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
dea-map Ready Ready Preview Mar 30, 2026 7:22am

Request Review

…across 1 directory with 4 updates

Bumps the mobile-dev-dependencies group with 4 updates in the /mobile directory: [@capacitor/cli](https://github.com/ionic-team/capacitor), [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh), [terser](https://github.com/terser/terser) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint).


Updates `@capacitor/cli` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/ionic-team/capacitor/releases)
- [Changelog](https://github.com/ionic-team/capacitor/blob/main/CHANGELOG.md)
- [Commits](ionic-team/capacitor@8.1.0...8.2.0)

Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.2
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.26...v0.5.2)

Updates `terser` from 5.46.0 to 5.46.1
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.46.0...v5.46.1)

Updates `typescript-eslint` from 8.56.1 to 8.57.1
- [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.57.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: "@capacitor/cli"
  dependency-version: 8.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mobile-dev-dependencies
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mobile-dev-dependencies
- dependency-name: terser
  dependency-version: 5.46.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mobile-dev-dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.57.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mobile-dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/mobile/mobile-dev-dependencies-318a2e3d37 branch from 56e3c40 to d724537 Compare March 30, 2026 07:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automated dependencies Pull requests that update a dependency file mobile

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants