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 mandelboxes (major) #6372

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 21, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@types/react ^17.0.40 -> ^18.0.0 age adoption passing confidence dependencies major
@types/react-dom ^17.0.13 -> ^18.0.0 age adoption passing confidence dependencies major
copy-webpack-plugin ^7.0.0 -> ^10.0.0 age adoption passing confidence devDependencies major
react (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence dependencies major
react-dom (source) ^17.0.2 -> ^18.0.0 age adoption passing confidence dependencies major
ts-loader ^8.0.17 -> ^9.0.0 age adoption passing confidence devDependencies major
ubuntu 20.04 -> 22.04 age adoption passing confidence stage major
ubuntu 20.04 -> 22.04 age adoption passing confidence final major

Release Notes

webpack-contrib/copy-webpack-plugin

v10.2.4

Compare Source

v10.2.3

Compare Source

v10.2.2

Compare Source

v10.2.1

Compare Source

v10.2.0

Compare Source

Features
  • removed cjs wrapper and generated types in commonjs format (export = and namespaces used in types), now you can directly use exported types (#​654) (5901006)

v10.1.0

Compare Source

Features
Bug Fixes

v10.0.0

Compare Source

⚠ BREAKING CHANGES
  • minimum supported Node.js version is 12.20.0
  • update globby to 12.0.2 version

v9.1.0

Compare Source

Features
Bug Fixes
  • compatibility with Node.js 17 (20af0c7)
9.0.1 (2021-06-25)
Chore
  • update serialize-javascript

v9.0.1

Compare Source

v9.0.0

Compare Source

⚠ BREAKING CHANGES
  • minimum supported Node.js version is 12.13.0
8.1.1 (2021-04-06)
Bug Fixes

v8.1.1

Compare Source

v8.1.0

Compare Source

Features

v8.0.0

Compare Source

⚠ BREAKING CHANGES
  • logic for some placeholders was changed:
    • [hash] and [fullhash] works as in webpack (i.e. it is hash of build, not content hash of file), to migrate change [name].[hash].[ext] to [name].[contenthash][ext]
    • [ext] doesn't require . (dot) before, i.e. change [name].[ext] to [name][ext]
    • [<hashType>:contenthash:<digestType>:<length>] and [<hashType>:hash:<digestType>:<length>] is not supported anymore, you can use output.hashDigest, output.hashDigestLength and output.hashFunction options to setup it
    • [N] was removed in favor of using the to option as a function
    • [folder] was removed
    • [emoji] was removed
Features
facebook/react

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.

TypeStrong/ts-loader

v9.2.8

Compare Source

v9.2.7

Compare Source

v9.2.6

Compare Source

v9.2.5

Compare Source

v9.2.4

Compare Source

v9.2.3

Compare Source

v9.2.2

Compare Source

v9.2.1

Compare Source

v9.2.0

Compare Source

v9.1.2

Compare Source

v9.1.1

Compare Source

v9.1.0

Compare Source

v9.0.2

Compare Source

v9.0.1

Compare Source

v9.0.0

Compare Source

Breaking changes:

  • minimum webpack version: 5
  • minimum node version: 12

Changes:


Configuration

📅 Schedule: 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, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies This PR/Issue updates a dependency file label Apr 21, 2022
@github-actions github-actions bot added the 📁 Repo: mandelboxes This PR/Issue modifies /mandelboxes code label Apr 21, 2022
@renovate renovate bot force-pushed the renovate/major-mandelboxes branch 8 times, most recently from b32bdcf to aa2b218 Compare April 22, 2022 17:08
Copy link
Owner

@philippemnoel philippemnoel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this needs somebody to claim this

@renovate renovate bot force-pushed the renovate/major-mandelboxes branch 7 times, most recently from e794051 to a02c004 Compare April 26, 2022 04:51
@renovate renovate bot force-pushed the renovate/major-mandelboxes branch from a02c004 to 63dc005 Compare April 26, 2022 13:50
@philippemnoel
Copy link
Owner

I guess I'll just close these since nobody has bandwidth to take a look currently

@philippemnoel philippemnoel deleted the renovate/major-mandelboxes branch April 26, 2022 15:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies This PR/Issue updates a dependency file 📁 Repo: mandelboxes This PR/Issue modifies /mandelboxes code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants