Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 8, 2025

This PR contains the following updates:

Package Change Age Confidence
i18next (source) ^24.2.2 -> ^24.2.2 || ^25.0.0 age confidence
react-i18next ^15.5.2 -> ^16.0.0 age confidence

Release Notes

i18next/i18next (i18next)

v25.7.2

Compare Source

  • fix: Invalid overwrite of default value for overloadTranslationOptionHandler 2374.

v25.7.1

Compare Source

  • TS: remove wrong signature 2372.

v25.7.0

Compare Source

  • Enhance cloneInstance to create a new interpolator if interpolation options are passed in. This will address 2371.

v25.6.3

Compare Source

  • chore: dependency updates 2368

v25.6.2

Compare Source

  • types: export InterpolationMap

v25.6.1

Compare Source

  • fix: createInstance does not exist on an instance #​2366

v25.6.0

Compare Source

  • feat: exists() method now respects returnObjects option - returns false when accessing an object key with returnObjects: false, enabling detection of object vs string keys 2359

    Note: This is a potential behavior change. If you were previously calling exists() with returnObjects: false on object keys, those calls will now return false instead of true. This enables developers to detect whether a key points to an object or string value.

v25.5.3

Compare Source

  • export esm type declaration for keyFromSelector 2356

v25.5.2

Compare Source

  • fix last change => for cjs there is just 1 default export, no named exports, fixes 2348

v25.5.1

Compare Source

  • export keyFromSelector from index.cjs 2347

v25.5.0

Compare Source

  • export keyFromSelector function for testing purposes 2346

v25.4.2

Compare Source

  • fix: enableSelector: true doesn't work with custom keySeparator 2341

v25.4.1

Compare Source

  • fix: KeyPrefix not working with new selector api 2340

v25.4.0

Compare Source

  • add new selector API to improve TypeScript IDE performance 2322
    • To enable it, set enableSelector: true in your configuration options
    • With enableSelector: "optimize", i18next can now handle translation dictionaries of any size, without affecting IDE performance or build times
    • To assist with the migration, we've published the following packages:

v25.3.6

Compare Source

  • improve fix: Ordinals and non-ordinals don't work together 2337

v25.3.5

Compare Source

  • fix: Ordinals and non-ordinals don't work together 2337

v25.3.4

Compare Source

  • remove unnecessary debug logs

v25.3.3

Compare Source

  • fix: Brackets breaking nesting interpolation 2336

v25.3.2

Compare Source

  • fix dir() for non-Intl language codes 2330

v25.3.1

Compare Source

  • warn if legacy interpolation.format function is still used

v25.3.0

Compare Source

  • feat: support formatting function with plural and interpolation 2325
  • fix dir() for Latn language codes 2324

v25.2.1

Compare Source

  • streamline fallbackLng option of t call with the init options 2312

v25.2.0

Compare Source

  • introduce cacheInBuiltFormats option to address 2227

v25.1.3

Compare Source

  • Ensure nsSeparator is respected when appendNamespaceToMissingKey is true 2311, fixes 2310

v25.1.2

Compare Source

  • do not mutate t options, fixes 2307

v25.1.1

Compare Source

  • fix options type for parseMissingKeyHandler

v25.1.0

Compare Source

  • feat: parseMissingKeyHandler now takes options as parameter like in missingKeyHandler 2304

v25.0.2

Compare Source

  • fix cloneInstance with forkResourceStore: true addresses 2303

v25.0.1

Compare Source

  • optimize changeLanguage to correctly use getBestMatchFromCodes (string or array) 2299 and improve resolvedLanguage set for non canonical codes

v25.0.0

Compare Source

This is a potentially breaking release:

  • fix multiple changeLanguage call that may have result in wrong order in previous versions 1605 2298
  • adapt changeLanguage to always (string or array) use getBestMatchFromCodes 2299
  • getBestMatchFromCodes now tries to fallback to language code with same script 2299
i18next/react-i18next (react-i18next)

v16.4.0

Compare Source

  • <Trans count> prop: optional - infer count from children 1891

v16.3.5

Compare Source

  • fix runaway effect in useTranslation 1888 by 1889

v16.3.4

Compare Source

  • Fix: avoid the "ref is not a prop" warning when a user ref is placed on an element inside <Trans> 1887, by still trying to fix element.ref access issue with react 19 1846

v16.3.3

Compare Source

  • improve useTranslation to fix "Maximum update depth exceeded" but still support new react-compiler 1885 1863

v16.3.2

Compare Source

  • fix: avoid "Uncaught TypeError: Cannot redefine property: __original"

v16.3.1

Compare Source

  • revert fix: Incosistent behaviour of Trans and t. Trans set defaultValue when t call doesn't set the field. 1876 f22d478

v16.3.0

Compare Source

  • fix: add i18n wrapper for React Compiler and React.memo compatibility 1884

v16.2.4

Compare Source

  • try to fix "Trans component do not render anymore children as default value in test environment" 1883 by also respecting 1876

v16.2.3

Compare Source

  • fix hyphened component break issue 1882

v16.2.2

Compare Source

  • fix trans component break with less than sign 1880, closes 1734

v16.2.1

Compare Source

  • fix regression in v16.2.0: bindI18nStore does not work correctly 1879

v16.2.0

Compare Source

  • try to address: useTranslation hook violates React's rules of hooks by conditionally calling inner hooks 1863

v16.1.6

Compare Source

  • fix: fix: handle spread props for inner components in Trans (icu) 1877

v16.1.5

Compare Source

  • fix: Incosistent behaviour of Trans and t. Trans set defaultValue when t call doesn't set the field. 1876
  • Trans: use also defaultValue via tOptions as fallback

v16.1.4

Compare Source

  • fix: detect pre-transformation use of interpolation like number/date/etc. 1875

v16.1.3

Compare Source

  • fix: ensure invalid identifiers are quoted in the props object 1874

v16.1.2

Compare Source

  • missing.js extensions for Icu imports

v16.1.1

Compare Source

  • exports for IcuTrans component 1873

v16.1.0

Compare Source

  • Introduce IcuTrans component 1869

v16.0.1

Compare Source

  • fix: Using component with named tags throws error when Selector API is enabled 1867 with 1868

v16.0.0

Compare Source

  • major upgrade i18next dep to address 1865

v15.7.4

Compare Source

  • downgrade i18next dep to address 1865

v15.7.3

Compare Source

  • exports TransSelectorProps 1862 to address 1861

v15.7.2

Compare Source

  • update i18next dependency

v15.7.1

Compare Source

  • Fix: _EnableSelector type (for compatibility, enableSelector does not exist in TypeOptions) 1858

v15.7.0

Compare Source

  • add new selector API to improve TypeScript IDE performance 1852
    • read more about it here

v15.6.1

Compare Source

avoid exception when passing bindI18n: false 1856

v15.6.0

Compare Source

fix: passing components as object should still allow for indexed matching of children 1854


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 05:59 AM, only on Monday ( * 0-5 * * 1 ) in timezone Europe/Berlin, Automerge - Monday through Friday ( * * * * 1-5 ) in timezone Europe/Berlin.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner September 8, 2025 02:43
@changeset-bot
Copy link

changeset-bot bot commented Sep 8, 2025

⚠️ No Changeset found

Latest commit: afd909c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 2 times, most recently from 766bcd0 to 9ca48ac Compare September 18, 2025 08:57
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 3 times, most recently from 3791cb9 to 5943af2 Compare September 25, 2025 12:39
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch from 5943af2 to 206dadb Compare September 25, 2025 15:48
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 2 times, most recently from 72ec18a to 7443f45 Compare October 10, 2025 09:04
@renovate renovate bot changed the title Update dependency i18next to v25 Update i18next dependencies (major) Oct 10, 2025
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch from 7443f45 to c080419 Compare October 15, 2025 14:11
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 4 times, most recently from a072b4e to c13f9ec Compare October 27, 2025 16:04
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 4 times, most recently from 12d7734 to 2cbc751 Compare November 6, 2025 18:13
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch 4 times, most recently from ad59d3a to 49e6227 Compare November 18, 2025 05:53
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch from 49e6227 to a8fd0a4 Compare November 20, 2025 22:09
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch from a8fd0a4 to 92a419f Compare December 15, 2025 13:38
@renovate renovate bot force-pushed the renovate/major-i18next-dependencies branch from 92a419f to afd909c Compare December 18, 2025 13:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant