Releases: xing/hops
Releases · xing/hops
v12.5.4
v13.0.0
13.0.0 (2020-09-28)
Bug Fixes
- jest-preset: fix warning in case of outdated Jest version (4ef9ad8)
- lambda: correct condition (71a55e1)
- lambda: ensure warnings are printed (92cdeb4)
- webpack: replace serialize-error with a custom implementation (65931fc)
- update dependency enhanced-resolve to v5 (4842d30)
- update dependency mini-css-extract-plugin to ^0.11.0 (544ece2)
- update dependency serialize-javascript to v5 (5f22713)
- update dependency webpack-sources to v2 (12134a4)
- webpack: use webpack HMR for node build to fix memory leak (2826fdf)
- remove superfluous dependencies (afb2de0)
- express: disable helmet csp option for now (1683035)
- update dependency cosmiconfig to v7 (44e0f84)
- update dependency find-up to v5 (ce11652)
- update dependency helmet to v4 (712ce25)
- update dependency mini-css-extract-plugin to ^0.10.0 (f77a14f)
- update dependency terser-webpack-plugin to v4 (b0c5132)
- update dependency typescript to v4 (d2ec9fc)
- react-apollo: prevent requests on server when SSR is turned off (6e2cdf9)
- 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)
- react-apollo: import from graphql-tools monorepo package (d31d1b0)
- ensure externals use correct version of packages (e4ec3d7)
- update dependency graphql-tools to v6 (5a4fc78)
- lambda: remove support for the "nodejs10.x"-runtime (8f9d2ac)
- remove support for Node versions 10 & 13 (00e7f2f)
- upgrade jest to v26 (dfaf499)
Features
- jest-preset: print an error when Jest version is unsupported (cb2126a)
- support latest Node.js (v13) (30ca9a4)
Reverts
- Revert "chore: deprecate "hops-mixin" in favor of "hops-bootstrap"" (79438bb)
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
. - lambda: Since Hops dropped support for Node version 10, the
respective runtime on AWS Lambda isn't supported anymore either. If
you're running hops-lambda withnodejs10.x
, please switch to
nodejs12.x
. - Hops does not support the outdated Node versions 10
and 13 anymore. In case you're using one of these, please update your
Node version to the current version 14 or the LTS version 12. - Jest peerDependency has been changed from 24->26
v12.5.3
12.5.3 (2020-09-21)
Bug Fixes
- express: disable helmet csp option for now (c235f32)
- webpack: use webpack HMR for node build to fix memory leak (0c94b54)
- update dependency cosmiconfig to v7 (8849985)
- update dependency find-up to v5 (63f4fa9)
- update dependency helmet to v4 (74634e9)
- update dependency mini-css-extract-plugin to ^0.10.0 (ac54eb0)
- update dependency terser-webpack-plugin to v4 (33324cf)
- update dependency typescript to v4 (b67438a)
v13.0.0-rc.0
13.0.0-rc.0 (2020-09-07)
Bug Fixes
- remove superfluous dependencies (afb2de0)
- express: disable helmet csp option for now (1683035)
- update dependency cosmiconfig to v7 (44e0f84)
- update dependency find-up to v5 (ce11652)
- update dependency helmet to v4 (712ce25)
- update dependency mini-css-extract-plugin to ^0.10.0 (f77a14f)
- update dependency terser-webpack-plugin to v4 (b0c5132)
- update dependency typescript to v4 (d2ec9fc)
Reverts
- Revert "chore: deprecate "hops-mixin" in favor of "hops-bootstrap"" (79438bb)
v13.0.0-alpha.2
13.0.0-alpha.2 (2020-08-17)
Bug Fixes
- react-apollo: prevent requests on server when SSR is turned off (6e2cdf9)
v12.5.2
v13.0.0-alpha.1
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
.
v12.5.1
v13.0.0-alpha.0
13.0.0-alpha.0 (2020-07-23)
Bug Fixes
- react-apollo: import from graphql-tools monorepo package (d31d1b0)
- ensure externals use correct version of packages (e4ec3d7)
- update dependency graphql-tools to v6 (5a4fc78)
- lambda: remove support for the "nodejs10.x"-runtime (8f9d2ac)
- remove support for Node versions 10 & 13 (00e7f2f)
- upgrade jest to v26 (dfaf499)
Features
- support latest Node.js (v13) (30ca9a4)
BREAKING CHANGES
- lambda: Since Hops dropped support for Node version 10, the
respective runtime on AWS Lambda isn't supported anymore either. If
you're running hops-lambda withnodejs10.x
, please switch to
nodejs12.x
. - Hops does not support the outdated Node versions 10
and 13 anymore. In case you're using one of these, please update your
Node version to the current version 14 or the LTS version 12. - Jest peerDependency has been changed from 24->26