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 dependencies (major) #239

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 6, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
chokidar 3.5.3 -> 4.0.1 age adoption passing confidence
htmr 0.10.1 -> 1.0.2 age adoption passing confidence
node-emoji 1.11.0 -> 2.1.3 age adoption passing confidence
react (source) 16.14.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 16.14.0 -> 18.3.1 age adoption passing confidence
react-router-dom (source) 5.3.4 -> 6.26.2 age adoption passing confidence
react-use 15.3.8 -> 17.5.1 age adoption passing confidence

Release Notes

paulmillr/chokidar (chokidar)

v4.0.1

Compare Source

  • Various fixes and improvements of typescript types

New Contributors

Full Changelog: paulmillr/chokidar@4.0.0...4.0.1

v4.0.0

Compare Source

  • Remove glob support
  • Remove bundled fsevents
  • Decrease dependency count from 13 to 1
  • Rewrite in typescript. Makes emitted types more precise
  • The package became hybrid common.js / ESM
  • Bump minimum node.js requirement to v14+

Special thanks to @​43081j for improvements and help.

Full Changelog: paulmillr/chokidar@3.6.0...4.0.0

v3.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: paulmillr/chokidar@3.5.3...3.6.0

pveyes/htmr (htmr)

v1.0.2

Compare Source

  • Fix peer dependencies for react 18
  • Fix react-native imports
  • Fix item* attributes

v1.0.1

Compare Source

Fix non-boolean attribute treatment #​138

Previously these HTML trigger react warning because it satisfies boolean attribute value requirement (value equals to attribute name, or empty string).

<img alt="alt" />
<div class=""></div>

It's rendered into

// jsx equivalent
<img alt={true} />
<div className={true}></div>

Now htmr will validate whether the attribute is boolean attribute before using boolean value. If not, the attribute will simply be forwarded as is

Example above now rendered as

// jsx equivalent
<img alt="alt" />
<div className=""></div>

v1.0.0

Compare Source

First stable release! 🚀

  • React 17 support
  • Reduced client bundle by relying more on DOM https://github.com/pveyes/htmr/pull/127
  • major update for server dependencies (html-entities
  • CSS custom properties support in style attribute
omnidan/node-emoji (node-emoji)

v2.1.3

Compare Source

Bug Fixes
  • pin skin-tone to ^2.0.0 and add renovate.json ignoreDeps (dcd6c43)

v2.1.2

Compare Source

Bug Fixes
  • add back CJS support, with a test (e2856d9)

v2.1.1

Compare Source

Bug Fixes
  • underlines in README.md badges (05e30ae)

v2.1.0: : TypeScript Types!

Compare Source

What's Changed

New Contributors

Full Changelog: omnidan/node-emoji@v2.0.2...v2.1.0

v2.0.2: 2.0.2

Compare Source

  • completely new codebase
  • ESM support
  • new API and functions

emoji.replace now requires preserveSpaces: true to be passed to preserve spaces:

emoji.replace('I ❤️ coffee!', 'love', { preserveSpaces: true })

v2.0.1

Compare Source

v2.0.0

Compare Source

facebook/react (react)

v18.3.1

Compare Source

v18.3.0

Compare Source

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.

v17.0.2

Compare Source

React DOM

v17.0.1

Compare Source

React DOM

v17.0.0

Compare Source

Today, we are releasing React 17!

Learn more about React 17 and how to update to it on the official React blog.

React
React DOM
React DOM Server
React Test Renderer
Concurrent Mode (Experimental)
facebook/react (react-dom)

v18.3.1

Compare Source

v18.3.0

Compare Source

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.

v17.0.2

Compare Source

React DOM

v17.0.1

Compare Source

React DOM

v17.0.0

Compare Source

Today, we are releasing React 17!

Learn more about React 17 and how to update to it on the official React blog.

React
React DOM

Configuration

📅 Schedule: Branch creation - "after 10pm on sunday,before 5am on sunday" in timezone Asia/Tokyo, 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 force-pushed the renovate/major-dependencies branch from 2b7121c to 312ba39 Compare February 10, 2021 20:22
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 10c321a to 63bad54 Compare March 11, 2021 10:15
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 63bad54 to 4855401 Compare March 23, 2021 00:18
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 4855401 to bcc403e Compare April 6, 2021 10:02
@renovate renovate bot force-pushed the renovate/major-dependencies branch from bcc403e to a42c8ff Compare April 23, 2021 16:05
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a42c8ff to 6243f03 Compare May 10, 2021 06:56
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 6243f03 to d9e8495 Compare August 6, 2021 06:48
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 1100b1c to 41b9a58 Compare September 1, 2021 00:05
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 41b9a58 to 588cf46 Compare September 4, 2021 16:26
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 588cf46 to cf9461c Compare October 19, 2021 03:36
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from f5933a6 to 5141fe7 Compare November 9, 2021 22:51
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 1f06dd5 to 9d6f172 Compare December 17, 2021 19:20
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 8291f21 to 0e1ddd3 Compare December 18, 2021 17:41
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 0e1ddd3 to c116e37 Compare December 30, 2021 14:43
@renovate renovate bot force-pushed the renovate/major-dependencies branch from c116e37 to 4f95cbe Compare February 19, 2022 19:41
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 5fd522f to c7145dd Compare March 5, 2022 16:41
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 801042a to fff0870 Compare March 31, 2022 20:14
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from be8abc3 to f3bd492 Compare April 23, 2022 18:40
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 092773d to 3e29b1f Compare November 28, 2023 10:39
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from edfdc55 to 958a9ea Compare December 1, 2023 21:21
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 958a9ea to fb61514 Compare December 13, 2023 21:41
@renovate renovate bot force-pushed the renovate/major-dependencies branch from fb61514 to 166f0b8 Compare December 21, 2023 17:13
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 475cbf8 to 986aef2 Compare January 13, 2024 16:34
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 80d030c to d1557d8 Compare January 22, 2024 14:46
@renovate renovate bot force-pushed the renovate/major-dependencies branch from d1557d8 to ca915ed Compare February 1, 2024 21:56
@renovate renovate bot force-pushed the renovate/major-dependencies branch from ca915ed to 54ae3e7 Compare February 16, 2024 22:07
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 54ae3e7 to 29fda64 Compare February 28, 2024 22:37
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 29fda64 to 312a885 Compare March 7, 2024 16:02
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 4bb3d43 to 8d2d70a Compare April 26, 2024 19:32
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 8d2d70a to 45ba877 Compare May 10, 2024 20:30
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 45ba877 to 4d763e5 Compare June 24, 2024 21:08
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 4d763e5 to 66fe20a Compare July 3, 2024 13:56
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from e675827 to 197f5c1 Compare July 20, 2024 16:40
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 197f5c1 to d3ea9a4 Compare August 2, 2024 05:13
@renovate renovate bot force-pushed the renovate/major-dependencies branch from d3ea9a4 to db26952 Compare August 15, 2024 18:16
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from e043bd6 to a17c4de Compare September 13, 2024 01:02
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a17c4de to e4ef33f Compare September 22, 2024 14:15
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.

0 participants