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) - autoclosed #214

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 12, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@testing-library/react ^12.1.2 -> ^14.0.0 age adoption passing confidence
@types/react (source) ^17.0.34 -> ^18.0.0 age adoption passing confidence
@types/react-dom (source) ^17.0.11 -> ^18.0.0 age adoption passing confidence
react (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence
react-dom (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence

Release Notes

testing-library/react-testing-library

v14.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES

v13.4.0

Compare Source

Features
  • renderHook: allow passing of all render options to renderHook (#​1118) (27a9584)

v13.3.0

Compare Source

Features

v13.2.0

Compare Source

Features

v13.1.1

Compare Source

Bug Fixes

v13.1.0

Compare Source

Features

v13.0.1

Compare Source

Bug Fixes

v13.0.0

Compare Source

Features
BREAKING CHANGES
facebook/react

v18.2.0

Compare Source

React DOM
React DOM Server
Server Components (Experimental)

v18.1.0

Compare Source

React DOM
React DOM Server
ESLint Plugin: React Hooks
Use Subscription

v18.0.0

Compare Source

Below is a list of all new features, APIs, deprecations, and breaking changes.
Read React 18 release post and React 18 upgrade guide for more information.

New Features
React
  • useId is a new hook for generating unique IDs on both the client and server, while avoiding hydration mismatches. It is primarily useful for component libraries integrating with accessibility APIs that require unique IDs. This solves an issue that already exists in React 17 and below, but it’s even more important in React 18 because of how the new streaming server renderer delivers HTML out-of-order.
  • startTransition and useTransition let you mark some state updates as not urgent. Other state updates are considered urgent by default. React will allow urgent state updates (for example, updating a text input) to interrupt non-urgent state updates (for example, rendering a list of search results).
  • useDeferredValue lets you defer re-rendering a non-urgent part of the tree. It is similar to debouncing, but has a few advantages compared to it. There is no fixed time delay, so React will attempt the deferred render right after the first render is reflected on the screen. The deferred render is interruptible and doesn't block user input.
  • useSyncExternalStore is a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need for useEffect when implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.
  • useInsertionEffect is a new hook that allows CSS-in-JS libraries to address performance issues of injecting styles in render. Unless you’ve already built a CSS-in-JS library we don’t expect you to ever use this. This hook will run after the DOM is mutated, but before layout effects read the new layout. This solves an issue that already exists in React 17 and below, but is even more important in React 18 because React yields to the browser during concurrent rendering, giving it a chance to recalculate layout.
React DOM Client

These new APIs are now exported from react-dom/client:

  • createRoot: New method to create a root to render or unmount. Use it instead of ReactDOM.render. New features in React 18 don't work without it.
  • hydrateRoot: New method to hydrate a server rendered application. Use it instead of ReactDOM.hydrate in conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.

Both createRoot and hydrateRoot accept a new option called onRecoverableError in case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will use reportError, or console.error in the older browsers.

React DOM Server

These new APIs are now exported from react-dom/server and have full support for streaming Suspense on the server:

  • renderToPipeableStream: for streaming in Node environments.
  • renderToReadableStream: for modern edge runtime environments, such as Deno and Cloudflare workers.

The existing renderToString method keeps working but is discouraged.


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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 57da71d to cc5758e Compare April 13, 2022 12:37
@codecov
Copy link

codecov bot commented Apr 13, 2022

Codecov Report

Patch coverage has no change and project coverage change: +0.02 🎉

Comparison is base (7f79bfc) 92.24% compared to head (a7d907c) 92.26%.

❗ Current head a7d907c differs from pull request most recent head b0e3515. Consider uploading reports for the commit b0e3515 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #214      +/-   ##
==========================================
+ Coverage   92.24%   92.26%   +0.02%     
==========================================
  Files          66       66              
  Lines        1805     1811       +6     
  Branches      332      332              
==========================================
+ Hits         1665     1671       +6     
  Misses        139      139              
  Partials        1        1              

see 8 files with indirect coverage changes

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@icecream17
Copy link
Owner

icecream17 commented Apr 14, 2022

Everything is OK for update**
But the build size is ~2.5Kb larger, and each byte costs 5µs, and (60.32 - 57.84)kB * 5µs/byte is 12.4 milliseconds!!!!!
Plus there are still those act warnings

Edit: now it's at 60.7 - 57.86 => +14.2ms

@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 22961f0 to 1a2661f Compare May 12, 2022 21:22
@renovate renovate bot force-pushed the renovate/major-react branch 3 times, most recently from 5ab36b5 to 1a66419 Compare June 20, 2022 14:41
@renovate renovate bot force-pushed the renovate/major-react branch 3 times, most recently from a265144 to 789c9f3 Compare July 11, 2022 13:18
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 5b6513a to 12378fa Compare August 5, 2022 10:48
@renovate renovate bot changed the title Update react (major) Update react to v13 (major) Aug 9, 2022
@renovate renovate bot changed the title Update react to v13 (major) Update react (major) Aug 10, 2022
@renovate renovate bot force-pushed the renovate/major-react branch 3 times, most recently from f5024dc to c344774 Compare September 20, 2022 01:37
@icecream17
Copy link
Owner

Although the best plan for the future would be to go to something like preact, and also split the sudoku code up into website code and sudoku API/solver code. So even though a react upgrade takes 0 effort I'm probably not going to merge this unless it becomes an improvement

@renovate renovate bot changed the title Update react (major) Update react (major) - autoclosed Oct 14, 2022
@renovate renovate bot closed this Oct 14, 2022
@renovate renovate bot deleted the renovate/major-react branch October 14, 2022 21:34
@renovate renovate bot changed the title Update react (major) - autoclosed Update react (major) Oct 14, 2022
@renovate renovate bot reopened this Oct 14, 2022
@renovate renovate bot restored the renovate/major-react branch October 14, 2022 21:37
@renovate renovate bot force-pushed the renovate/major-react branch 3 times, most recently from cf4ead4 to 2ed86db Compare October 29, 2022 00:38
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 19b96fd to eaa082b Compare January 19, 2023 00:08
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from a7d907c to 3841157 Compare February 17, 2023 02:14
@renovate renovate bot force-pushed the renovate/major-react branch 2 times, most recently from 1555c97 to 4041620 Compare March 29, 2023 18:19
@renovate renovate bot changed the title Update react (major) Update react (major) - autoclosed Apr 6, 2023
@renovate renovate bot closed this Apr 6, 2023
@renovate renovate bot deleted the renovate/major-react branch April 6, 2023 11:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant