Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update React (major) #469

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update React (major) #469

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 18, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-i18next 11.18.6 -> 15.1.4 age adoption passing confidence
react-native-url-polyfill 1.3.0 -> 2.0.0 age adoption passing confidence

Release Notes

i18next/react-i18next (react-i18next)

v15.1.4

Compare Source

  • Fix: warning each child should have a unique key 1820

v15.1.3

Compare Source

  • fix: Self-closing REACT components in translation strings should not attempt to replace the component's children 1815 1816

v15.1.2

Compare Source

  • fix: Attempted to assign to readonly property 1813

v15.1.1

Compare Source

  • fix: Not all namespaces are loaded when passing the lng option to useTranslate 1809

v15.1.0

Compare Source

  • fix: <Trans /> warns 'Each child in a list should have a unique "key" prop.' for react 19 1806

v15.0.3

Compare Source

v15.0.2

Compare Source

  • try to fix Trans handling with alwaysFormat set to true 1801

v15.0.1

Compare Source

  • revert arrow function in class property to address this

v15.0.0

Compare Source

  • use optional chaining, nullish coalescing and nullish coalescing assignment 1774
  • Build config and optimizations 1769
  • some dependency updates 1768
  • use modern hasLoadedNamespace code (now requires at least i18next > v19.4.5 (introduced in june 2020))

v14.1.3

Compare Source

  • create a isObject helper function 1766
  • optimize nodesToString 1765
  • Simplifies hasValidReactChildren 1764
  • create a isString helper to avoid code duplication 1763
  • use arrow functions where possible 1762
  • use the commented out async code 1761

v14.1.2

Compare Source

  • bring back internal interpolationOverride handling for Trans component (if there are childrens), fixes 1754

v14.1.1

Compare Source

  • do not modify passed tOptions context property to address 1745

v14.1.0

Compare Source

  • types(Trans): add typechecking on context prop 1732 (might brake if using "internal" Trans or TransProps)

v14.0.8

Compare Source

  • fix: issue 1728 when useSuspense is false and default ns 1731

v14.0.7

Compare Source

  • try to get rid of internal interpolationOverride handling for Trans component, fixes 1729

v14.0.6

Compare Source

  • align context handling of Trans component with t function, fixes 1729

v14.0.5

Compare Source

  • Fix 1691 for strict mode, by preserving change language binding 1720

v14.0.4

Compare Source

  • fix interpolation of the count prop 1719

v14.0.3

Compare Source

  • revert changes done in v14.0.2 since it breaks normal language change render updates

v14.0.2

Compare Source

  • Fix/bug 1691 make returned t function identical upon second effect run in strict mode 1716

v14.0.1

Compare Source

  • types: fix typo in CustomInstanceExtensions 1713

v14.0.0

Compare Source

  • types: reportNamespaces is now optional, should fix 1693

v13.5.0

Compare Source

  • self-closing components in translation strings should not attempt to replace the component's children 1695

v13.4.1

Compare Source

  • types: use CustomInstanceExtenstions to extend reportNamespaces

v13.4.0

Compare Source

  • fix: separate cjs and mjs typings

v13.3.2

Compare Source

  • types: fix consider importing '*.js'

v13.3.1

Compare Source

  • optimize defaultVariables feature introduced in last release

v13.3.0

Compare Source

  • Respect defaultVariables in the interpolation options 1685

v13.2.2

Compare Source

  • Fix missing TransWithoutContext type 1672

v13.2.1

Compare Source

  • types: Allow iterable ReactI18NextChildren as children 1669

v13.2.0

Compare Source

  • Don't use defaults prop as default key 1664

v13.1.2

Compare Source

  • postpone usage of newer ES syntax

v13.1.1

Compare Source

  • Render all children regardless of type when using i18nIsDynamicList prop 1661

v13.1.0

Compare Source

  • Fix non-list dynamic content in Trans component 1660

v13.0.3

Compare Source

  • fix unescape is not consistently called for all values 1657

v13.0.2

Compare Source

  • export icu.macro 1652

v13.0.1

Compare Source

  • types: Fix performance issue in Trans component 1646

v13.0.0

Compare Source

  • Update types to support t function redesign 1615
  • requires i18next >= v23.0.1

v12.3.1

Compare Source

  • optimization for optional lng prop for useTranslation, should now prevent missings when lazy loading translations 1637

v12.3.0

Compare Source

  • optional lng prop for useTranslation (helping on server side 1637)

v12.2.2

Compare Source

  • try to fix conditional exports in package.json

v12.2.1

Compare Source

  • type fix: the type of defaultNS in I18nextProvider should support string[] 1633

v12.2.0

Compare Source

  • if defaultValue is passed in not ready t functio (via useTranslation) return that instead of the key, even though the user-land could should be fixed 1618

v12.1.5

Compare Source

v12.1.4

Compare Source

  • fix crash in gatsby 1594

v12.1.3

Compare Source

  • fix fallback of t function in Trans component

v12.1.2

Compare Source

  • fix crash in gatsby 1594

v12.1.1

Compare Source

  • fix for node resolution 1589

v12.1.0

Compare Source

  • context-less version of Trans component to be used for environments without react context 1588

v12.0.0

Compare Source

  • Update t function types to rely on types coming from i18next 1501
charpeni/react-native-url-polyfill (react-native-url-polyfill)

v2.0.0

Compare Source

Highlights

⚠️ It was released as a major version because it contains significant changes, but we don't expect any breaking changes. The upgrade should be seamless.

Official support for Expo & web.

We're now testing react-native-url-polyfill against latest versions of Expo to prevent any issues.

Also, previously, relying on react-native-url-polyfill/auto would also apply the polyfill if executed on the web (e.g., via react-native-web). Starting from now, react-native-url-polyfill/auto won't apply on the web platform and will be a no-op. If you would like to still apply it on web, you'll need to rely on setupPolyfill directly as such:

import { setupURLPolyfill } from 'react-native-url-polyfill';

setupURLPolyfill();
Moving away from React Native's internals

To better support different versions of React Native and web usages, we moved away from using polyfillGlobal, which is part of React Native's internals. Instead, we use globalThis. See https://github.com/charpeni/react-native-url-polyfill/pull/373 and https://github.com/charpeni/react-native-url-polyfill/pull/413.

What's Changed

New Contributors

Full Changelog: charpeni/react-native-url-polyfill@v1.3.0...v2.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 added dependencies Pull requests that update a dependency file npm labels Nov 18, 2023
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from aaf42a7 to 17fdb44 Compare November 22, 2023 22:04
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@renovate renovate bot force-pushed the renovate/major-react branch from 17fdb44 to df5aeb0 Compare December 28, 2023 16:45
Copy link

codecov bot commented Dec 28, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 60.21%. Comparing base (a6ef6b1) to head (4a53c83).
Report is 11 commits behind head on master.

Current head 4a53c83 differs from pull request most recent head dbcbf9e

Please upload reports for the commit dbcbf9e to get more accurate results.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #469   +/-   ##
=======================================
  Coverage   60.21%   60.21%           
=======================================
  Files          46       46           
  Lines         945      945           
  Branches      189      189           
=======================================
  Hits          569      569           
  Misses        341      341           
  Partials       35       35           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/major-react branch from df5aeb0 to f4143e7 Compare January 27, 2024 14:29
@renovate renovate bot force-pushed the renovate/major-react branch 4 times, most recently from 063b4b9 to 44fedc1 Compare February 13, 2024 19:49
@renovate renovate bot force-pushed the renovate/major-react branch 3 times, most recently from 3659f39 to 4a53c83 Compare March 14, 2024 10:29
Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/major-react branch from 4a53c83 to 669161a Compare April 30, 2024 07:21
@renovate renovate bot force-pushed the renovate/major-react branch from 669161a to b0a58ec Compare May 29, 2024 21:54
@jellyfin-bot jellyfin-bot added the merge conflict Conflicts prevent merging label Jun 3, 2024
@renovate renovate bot force-pushed the renovate/major-react branch from b0a58ec to dbcbf9e Compare June 3, 2024 19:01
@jellyfin-bot jellyfin-bot removed the merge conflict Conflicts prevent merging label Jun 3, 2024
Copy link

sonarqubecloud bot commented Jun 3, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 5a33239 to 030be00 Compare July 24, 2024 15:19
@renovate renovate bot force-pushed the renovate/major-react branch from 030be00 to e142ed1 Compare August 14, 2024 14:05
Copy link

@renovate renovate bot force-pushed the renovate/major-react branch from e142ed1 to 9a030a8 Compare September 22, 2024 01:08
@renovate renovate bot force-pushed the renovate/major-react branch from 9a030a8 to 3e85109 Compare October 19, 2024 19:26
@renovate renovate bot force-pushed the renovate/major-react branch from 3e85109 to 7e9b09e Compare October 28, 2024 13:02
@jellyfin-bot jellyfin-bot added the merge conflict Conflicts prevent merging label Nov 8, 2024
@renovate renovate bot force-pushed the renovate/major-react branch from 7e9b09e to 191ce52 Compare November 8, 2024 22:42
@jellyfin-bot jellyfin-bot added merge conflict Conflicts prevent merging and removed merge conflict Conflicts prevent merging labels Nov 8, 2024
@renovate renovate bot force-pushed the renovate/major-react branch from 191ce52 to 612a57f Compare November 12, 2024 17:30
@jellyfin-bot jellyfin-bot removed the merge conflict Conflicts prevent merging label Nov 12, 2024
@renovate renovate bot force-pushed the renovate/major-react branch from 612a57f to d37e3f1 Compare November 14, 2024 12:41
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from a39bd67 to 4161956 Compare December 6, 2024 12:20
@renovate renovate bot force-pushed the renovate/major-react branch from 4161956 to b00894f Compare December 16, 2024 20:14
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 npm
Development

Successfully merging this pull request may close these issues.

1 participant