v13.0.0-alpha.1
Pre-release
Pre-release
herschel666
released this
31 Jul 11:56
·
782 commits
to master
since this release
13.0.0-alpha.1 (2020-07-31)
Bug Fixes
- react: declare propTypes for Import component (a929c7d)
- react: remove support of react-helmet (3ea3cc5)
- react: require export resolver function in importComponent (ff71be6)
- react: require module loader function in importComponent (dd6e501)
- react-apollo: remove support for shouldPrefetchOnServer (e52a467)
- redux: remove support for shouldPrefetchOnServer (1e2e1f2)
- webpack: reset stats promise on watch run events (0cd654d)
- update dependency archiver to v5 (30740dc)
BREAKING CHANGES
- react: Hops does not support the synchronous
react-helmet
-package anymore; you have thus to update your
import
-statements to import theHelmet
-component from
react-helmet-async
instead. - react:
importComponent
does not accept a module identifier
as the first argument anymore, but requires you to pass in a function,
that returns thePromise
of the dynamic import of the module. - react:
importComponent
now requires the second argument,
that resolves a named export, to be a function. - redux: Replace the outdated
shouldPrefetchOnServer
in your Hops
configuration with the new config valueallowServerSideDataFetching
. - react-apollo: Replace the outdated
shouldPrefetchOnServer
in your Hops
configuration with the new config valueallowServerSideDataFetching
.