Skip to content

Bump the production-dependencies group across 1 directory with 10 updates#573

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/production-dependencies-2250fedef8
Closed

Bump the production-dependencies group across 1 directory with 10 updates#573
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/npm_and_yarn/production-dependencies-2250fedef8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Bumps the production-dependencies group with 10 updates in the / directory:

Package From To
@react-navigation/bottom-tabs 7.15.11 7.16.0
@react-navigation/native 7.2.2 7.2.4
@react-navigation/native-stack 7.14.12 7.15.0
i18next 26.0.8 26.1.0
react-i18next 17.0.6 17.0.7
react-native-charts-wrapper 0.6.0 0.7.0
react-native-paper 5.15.1 5.15.2
react-native-reanimated 4.3.0 4.3.1
react-native-screens 4.24.0 4.25.0
react-native-svg 15.15.4 15.15.5

Updates @react-navigation/bottom-tabs from 7.15.11 to 7.16.0

Release notes

Sourced from @​react-navigation/bottom-tabs's releases.

@​react-navigation/bottom-tabs@​7.16.0

7.16.0 (2026-05-11)

Bug Fixes

Features

Changelog

Sourced from @​react-navigation/bottom-tabs's changelog.

7.16.0 (2026-05-11)

Bug Fixes

Features

7.15.13 (2026-05-08)

Note: Version bump only for package @​react-navigation/bottom-tabs

7.15.12 (2026-05-07)

Note: Version bump only for package @​react-navigation/bottom-tabs

Commits
  • b5b1f7c chore: publish
  • cd466d4 fix: default multiselectable to undefined
  • 1930fa0 feat: add ability to prevent tab bar selection
  • a12db96 feat: update native tabs to use the new API in react-native-screens
  • 01ae31e chore: publish
  • e8a05bb chore: publish
  • 1a9623c refactor: backport API changes from 8.x and add deprecations
  • See full diff in compare view

Updates @react-navigation/native from 7.2.2 to 7.2.4

Release notes

Sourced from @​react-navigation/native's releases.

@​react-navigation/native@​7.2.4

7.2.4 (2026-05-08)

Bug Fixes

Changelog

Sourced from @​react-navigation/native's changelog.

7.2.4 (2026-05-08)

Bug Fixes

7.2.3 (2026-05-07)

Note: Version bump only for package @​react-navigation/native

Commits
  • 01ae31e chore: publish
  • 680a3eb fix: fix linking prefix matching host with additional characters
  • ec42524 fix: handle errors in parsing query params gracefully
  • 5a884b1 fix: fix URLs with hashes not being matched correctly
  • e8a05bb chore: publish
  • d43e3c2 refactor: support module augmentation for default types
  • fae561d refactor: dispatch back instead of reset if we determine it's a simple pop (#...
  • See full diff in compare view

Updates @react-navigation/native-stack from 7.14.12 to 7.15.0

Release notes

Sourced from @​react-navigation/native-stack's releases.

@​react-navigation/native-stack@​7.15.0

7.15.0 (2026-05-11)

Bug Fixes

Features

Changelog

Sourced from @​react-navigation/native-stack's changelog.

7.15.0 (2026-05-11)

Bug Fixes

Features

7.14.14 (2026-05-08)

Note: Version bump only for package @​react-navigation/native-stack

7.14.13 (2026-05-07)

Note: Version bump only for package @​react-navigation/native-stack

Commits

Updates i18next from 26.0.8 to 26.1.0

Release notes

Sourced from i18next's releases.

v26.1.0

  • feat: enableSelector: 'strict' (TypeOptions + runtime option). Opt-in mode that drops the flattened-primary form from NsResource at the type level — every namespace (primary included) is exposed only under its own key on $, uniformly across single- and multi-ns hooks. At runtime, a leading selector path segment matching the scope's namespace list is always rewritten as a namespace prefix, including the primary. Eliminates the silent-miss surface area where t($ => $.primary.foo) typechecks but doesn't resolve under the default mode (see #2429). Backward-compatible: default enableSelector: false | true | 'optimize' behavior is unchanged. Note: strict mode is incompatible with the #2405 pattern (keys whose names match sibling namespaces) — those users should stay on default mode.

v26.0.10

  • feat: getFixedT accepts a fourth optional fixedOpts argument carrying scopeNs — the full namespace list the bound t was created for. The selector API uses scopeNs to detect when a path's first segment is a namespace prefix, without changing resolution scope. Resolution still uses the bound ns (a single primary string in the typical react-i18next setup), so plain t('key') lookups stay isolated to the primary namespace exactly as before — only t($ => $.secondaryNs.foo) selectors now route correctly under useTranslation([nsA, nsB]). Fixes the runtime side of #2429 for the react-i18next default-nsMode case. The 4th argument is opt-in: existing 3-arg getFixedT(lng, ns, keyPrefix) callers see no behavior change.

v26.0.9

  • fix(types): unformatted interpolation values are now typed as string | number (was string). i18next stringifies values at runtime, so requiring callers to wrap numbers in String(...) for plain {{var}} placeholders was unnecessary friction — and could mask the real problem when a non-string value was passed alongside multiple interpolation slots (the t() overload resolution would fall through to the 3-arg form and report a confusing "not assignable to string" error against the options object). Typed format specifiers like {{x, number}}, {{x, currency}}, {{x, datetime}}, etc. keep their precise types; this only relaxes the no-format default. The count variable remains number-only
Changelog

Sourced from i18next's changelog.

26.1.0

  • feat: enableSelector: 'strict' (TypeOptions + runtime option). Opt-in mode that drops the flattened-primary form from NsResource at the type level — every namespace (primary included) is exposed only under its own key on $, uniformly across single- and multi-ns hooks. At runtime, a leading selector path segment matching the scope's namespace list is always rewritten as a namespace prefix, including the primary. Eliminates the silent-miss surface area where t($ => $.primary.foo) typechecks but doesn't resolve under the default mode (see #2429). Backward-compatible: default enableSelector: false | true | 'optimize' behavior is unchanged. Note: strict mode is incompatible with the #2405 pattern (keys whose names match sibling namespaces) — those users should stay on default mode.

26.0.10

  • feat: getFixedT accepts a fourth optional fixedOpts argument carrying scopeNs — the full namespace list the bound t was created for. The selector API uses scopeNs to detect when a path's first segment is a namespace prefix, without changing resolution scope. Resolution still uses the bound ns (a single primary string in the typical react-i18next setup), so plain t('key') lookups stay isolated to the primary namespace exactly as before — only t($ => $.secondaryNs.foo) selectors now route correctly under useTranslation([nsA, nsB]). Fixes the runtime side of #2429 for the react-i18next default-nsMode case. The 4th argument is opt-in: existing 3-arg getFixedT(lng, ns, keyPrefix) callers see no behavior change.

26.0.9

  • fix(types): unformatted interpolation values are now typed as string | number (was string). i18next stringifies values at runtime, so requiring callers to wrap numbers in String(...) for plain {{var}} placeholders was unnecessary friction — and could mask the real problem when a non-string value was passed alongside multiple interpolation slots (the t() overload resolution would fall through to the 3-arg form and report a confusing "not assignable to string" error against the options object). Typed format specifiers like {{x, number}}, {{x, currency}}, {{x, datetime}}, etc. keep their precise types; this only relaxes the no-format default. The count variable remains number-only
Commits
  • 5af0475 26.1.0
  • 85c0951 feat: enableSelector: 'strict' — explicit-ns selector mode, no flattened prim...
  • 8fec684 docs(types): clarify ExistsFunction note re: narrowing through wrappers
  • 61eaf5b 26.0.10
  • 47fd92f feat: getFixedT 4th-arg scopeNs decouples selector ns-detection from resoluti...
  • caf33f6 26.0.9
  • eed0146 fix(types): relax unformatted interpolation values to string | number
  • 170fb0a Modernize locize.com URLs and refresh UTM tags
  • See full diff in compare view

Updates react-i18next from 17.0.6 to 17.0.7

Changelog

Sourced from react-i18next's changelog.

17.0.7

  • feat: useTranslation([nsA, nsB, ...]) now passes its full namespace list to getFixedT via the new scopeNs opt (requires i18next ≥ v26.0.10). This makes selector calls with a secondary-namespace prefix resolve correctly under default nsMode: t($ => $.nsB.foo) previously missed silently because the bound ns was the primary string only and i18next's selector rewrite needed an array. Resolution semantics are unchanged — plain t('key') lookups still stay isolated to the primary namespace by default; use nsMode: 'fallback' to opt into multi-ns fallback resolution as before. Fixes i18next#2429 for useTranslation-based callers.
Commits
  • 5e892a2 17.0.7
  • c8f4c6b feat: useTranslation([nsA,nsB]) routes selector secondary-ns prefix via getFi...
  • 084f9a6 Modernize locize.com URLs and refresh UTM tags
  • See full diff in compare view

Updates react-native-charts-wrapper from 0.6.0 to 0.7.0

Commits

Updates react-native-paper from 5.15.1 to 5.15.2

Release notes

Sourced from react-native-paper's releases.

Release 5.15.2

5.15.2 (2026-05-08)

Bug Fixes

  • fix portals, dialogs & modals not correctly positioned on react native 0.85 (#4906) (2fea2cd)
Commits
  • 16a69a7 chore: release 5.15.2
  • 2fea2cd fix: fix portals, dialogs & modals not correctly positioned on react native 0...
  • See full diff in compare view

Updates react-native-reanimated from 4.3.0 to 4.3.1

Release notes

Sourced from react-native-reanimated's releases.

Reanimated - 4.3.1

What's Changed

Full Changelog: software-mansion/react-native-reanimated@4.3.0...4.3.1

Commits
  • b349631 release(Reanimated): 4.3.1
  • 177650b fix: OIDC releases not including type declarations (#9348)
  • 6dd6729 fix(Reanimated): registries race conditions (#9323)
  • d889209 cherry-pick(Reanimated): Fix Unistyles flattening regression in 4.3.0 (#928...
  • ce0460b cherry-pick(4.3-stable): useScrollOffset on renderScrollComponent (#9286) (#9...
  • f8a5240 feat: workflow for OIDC publishing (#9095)
  • 9cad57e cherry-pick(Reanimated): Fix animation cancellation race condition missing co...
  • a12d1ef cherry-pick(Reanimated): Incorrect CSS props reverting on CSS transition deta...
  • See full diff in compare view

Updates react-native-screens from 4.24.0 to 4.25.0

Release notes

Sourced from react-native-screens's releases.

4.25.0

What's Changed

Minor release, bringing golden version of Tabs API. Unless we get your negative feedback, we plan to stabilise Tabs API in next minor.

[!important] 4.25.0 no longer supports the legacy architecture. Most likely, the library will simply fail to build.

This release brings important Tabs API changes in JS and native layer, required for stabilisation of the API. Downstream libraries are already in advanced stage of adaptation to these changes. Please track the releases of your navigation solution for compatibility remarks.

Improvements

... (truncated)

Commits
  • c07b9c5 fix: add web fallback for ScrollViewMarker (#4008)
  • 9543bbd fix(iOS, Tabs): register navigation state observer outside RCTAssert (#4004)
  • cb6359e fix(iOS): forward-declare RCTSurfaceTouchHandler in UIView+RNSUtility.h (#3986)
  • 4e1551b fix(Android, Tabs): propagate actionOrigin into navigation state progression ...
  • 09d5d3e fix(iOS, Tabs): correctly pass action origin to progressNavigationState (#3994)
  • d11966a fix(iOS, Tabs): fix moreNavigationController navigation bar visible on nav (#...
  • 85e3cd6 refactor(tabs): rename rejectedProvenance to rejectedBaseProvenance (#3982)
  • 56734b1 fix(web, SafeAreaView): replace default export with named export (#3956)
  • 01307f3 fix(iOS): unregister tabs accessory observer from observed wrapper (#3948)
  • 8a4fc6b fix(Android, Stack v5): prevent crash when subview with (0, 0) size is added ...
  • Additional commits viewable in compare view

Updates react-native-svg from 15.15.4 to 15.15.5

Release notes

Sourced from react-native-svg's releases.

v15.15.5

This release includes minor fixes and improvements across all platforms, along with the OIDC setup.

What's Changed

New Contributors

Full Changelog: software-mansion/react-native-svg@v15.15.4...v15.15.5

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-native-svg since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 12, 2026
…ates

Bumps the production-dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@react-navigation/bottom-tabs](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/bottom-tabs) | `7.15.11` | `7.16.0` |
| [@react-navigation/native](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native) | `7.2.2` | `7.2.4` |
| [@react-navigation/native-stack](https://github.com/react-navigation/react-navigation/tree/HEAD/packages/native-stack) | `7.14.12` | `7.15.0` |
| [i18next](https://github.com/i18next/i18next) | `26.0.8` | `26.1.0` |
| [react-i18next](https://github.com/i18next/react-i18next) | `17.0.6` | `17.0.7` |
| [react-native-charts-wrapper](https://github.com/wuxudong/react-native-charts-wrapper) | `0.6.0` | `0.7.0` |
| [react-native-paper](https://github.com/callstack/react-native-paper) | `5.15.1` | `5.15.2` |
| [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated/tree/HEAD/packages/react-native-reanimated) | `4.3.0` | `4.3.1` |
| [react-native-screens](https://github.com/software-mansion/react-native-screens) | `4.24.0` | `4.25.0` |
| [react-native-svg](https://github.com/software-mansion/react-native-svg) | `15.15.4` | `15.15.5` |



Updates `@react-navigation/bottom-tabs` from 7.15.11 to 7.16.0
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/bottom-tabs@7.16.0/packages/bottom-tabs/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/bottom-tabs@7.16.0/packages/bottom-tabs)

Updates `@react-navigation/native` from 7.2.2 to 7.2.4
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/native@7.2.4/packages/native/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/native@7.2.4/packages/native)

Updates `@react-navigation/native-stack` from 7.14.12 to 7.15.0
- [Release notes](https://github.com/react-navigation/react-navigation/releases)
- [Changelog](https://github.com/react-navigation/react-navigation/blob/@react-navigation/native-stack@7.15.0/packages/native-stack/CHANGELOG.md)
- [Commits](https://github.com/react-navigation/react-navigation/commits/@react-navigation/native-stack@7.15.0/packages/native-stack)

Updates `i18next` from 26.0.8 to 26.1.0
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v26.0.8...v26.1.0)

Updates `react-i18next` from 17.0.6 to 17.0.7
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/react-i18next@v17.0.6...v17.0.7)

Updates `react-native-charts-wrapper` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/wuxudong/react-native-charts-wrapper/releases)
- [Commits](https://github.com/wuxudong/react-native-charts-wrapper/commits)

Updates `react-native-paper` from 5.15.1 to 5.15.2
- [Release notes](https://github.com/callstack/react-native-paper/releases)
- [Commits](callstack/react-native-paper@v5.15.1...v5.15.2)

Updates `react-native-reanimated` from 4.3.0 to 4.3.1
- [Release notes](https://github.com/software-mansion/react-native-reanimated/releases)
- [Changelog](https://github.com/software-mansion/react-native-reanimated/blob/main/packages/react-native-reanimated/RELEASE.md)
- [Commits](https://github.com/software-mansion/react-native-reanimated/commits/4.3.1/packages/react-native-reanimated)

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

Updates `react-native-svg` from 15.15.4 to 15.15.5
- [Release notes](https://github.com/software-mansion/react-native-svg/releases)
- [Commits](software-mansion/react-native-svg@v15.15.4...v15.15.5)

---
updated-dependencies:
- dependency-name: "@react-navigation/bottom-tabs"
  dependency-version: 7.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@react-navigation/native"
  dependency-version: 7.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@react-navigation/native-stack"
  dependency-version: 7.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: i18next
  dependency-version: 26.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-i18next
  dependency-version: 17.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-charts-wrapper
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-paper
  dependency-version: 5.15.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-reanimated
  dependency-version: 4.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: react-native-screens
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: react-native-svg
  dependency-version: 15.15.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-2250fedef8 branch from 106e270 to 72b2151 Compare May 13, 2026 10:45
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 19, 2026

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

@dependabot dependabot Bot closed this May 19, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-2250fedef8 branch May 19, 2026 06:06
@github-project-automation github-project-automation Bot moved this from Backlog to Done in OpenDTU-App Releases May 19, 2026
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

Status: Done

Development

Successfully merging this pull request may close these issues.

0 participants