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

Mend Renovate

This PR contains the following updates:

Package Change 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.23.0 age adoption passing confidence
react-use 15.3.8 -> 17.5.0 age adoption passing confidence

Release Notes

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
React DOM Server
React Test Renderer
Concurrent Mode (Experimental)
remix-run/react-router (react-router-dom)

v6.23.0

Compare Source

Minor Changes
  • Add a new unstable_dataStrategy configuration option (#​11098)
    • This option allows Data Router applications to take control over the approach for executing route loaders and actions
    • The default implementation is today's behavior, to fetch all loaders in parallel, but this option allows users to implement more advanced data flows including Remix single-fetch, middleware/context APIs, automatic loader caching, and more
Patch Changes
  • Updated dependencies:
    • @remix-run/router@1.16.0
    • react-router@6.23.0

v6.22.3

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/router@1.15.3
    • react-router@6.22.3

v6.22.2

Compare Source

Patch Changes
  • Updated dependencies:
    • @remix-run/router@1.15.2
    • react-router@6.22.2

v6.22.1

Compare Source

v6.22.0

[Compare Source](https://togithub.com/remix-run/rea


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

@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 1059d6e to 0f19479 Compare June 30, 2023 20:44
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 0f19479 to a168150 Compare July 17, 2023 21:47
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a168150 to 40f07e7 Compare August 10, 2023 15:51
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 40f07e7 to 31ff8f3 Compare September 13, 2023 17:41
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 31ff8f3 to adbc945 Compare October 16, 2023 16:10
@renovate renovate bot force-pushed the renovate/major-dependencies branch from adbc945 to 3580c89 Compare October 31, 2023 17:46
@renovate renovate bot force-pushed the renovate/major-dependencies branch 5 times, most recently from 28a7e27 to 092773d Compare November 22, 2023 19:42
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 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 2 times, most recently from 510ceca to 4bb3d43 Compare April 25, 2024 20:01
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 4bb3d43 to 8d2d70a Compare April 26, 2024 19:32
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

0 participants