Skip to content

Releases: xing/hops

v12.5.4

09 Oct 09:24
Compare
Choose a tag to compare

12.5.4 (2020-10-09)

Bug Fixes

  • webpack: replace serialize-error with a custom implementation (32ad089)

v13.0.0

28 Sep 12:42
ea2d2b0
Compare
Choose a tag to compare

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 the Helmet-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 the Promise 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 value allowServerSideDataFetching.
  • react-apollo: Replace the outdated shouldPrefetchOnServer in your Hops
    configuration with the new config value allowServerSideDataFetching.
  • 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 with nodejs10.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

21 Sep 13:04
Compare
Choose a tag to compare

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

07 Sep 13:07
92230c1
Compare
Choose a tag to compare
v13.0.0-rc.0 Pre-release
Pre-release

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

17 Aug 12:37
Compare
Choose a tag to compare
v13.0.0-alpha.2 Pre-release
Pre-release

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

17 Aug 12:28
Compare
Choose a tag to compare

12.5.2 (2020-08-17)

Bug Fixes

  • react-apollo: prevent requests on server when SSR is turned off (c21d481)

v13.0.0-alpha.1

31 Jul 11:56
Compare
Choose a tag to compare
v13.0.0-alpha.1 Pre-release
Pre-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 the Helmet-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 the Promise 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 value allowServerSideDataFetching.
  • react-apollo: Replace the outdated shouldPrefetchOnServer in your Hops
    configuration with the new config value allowServerSideDataFetching.

v12.5.1

29 Jul 12:35
05a996b
Compare
Choose a tag to compare

12.5.1 (2020-07-29)

Bug Fixes

  • react: declare propTypes for Import component (2dfd706)
  • webpack: reset stats promise on watch run events (0fea0ab)
  • update dependency archiver to v5 (ecaaf96)

v13.0.0-alpha.0

23 Jul 16:11
6171238
Compare
Choose a tag to compare
v13.0.0-alpha.0 Pre-release
Pre-release

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 with nodejs10.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.0

13 Jul 15:41
6b43b93
Compare
Choose a tag to compare

12.5.0 (2020-07-13)

Bug Fixes

  • update dependency ts-loader to v8 (7b21f60)
  • webpack: re-enable the --fast-build CLI flag (7bdb297)
  • update dependency serialize-javascript to v4 (15d9272)
  • update dependency terser-webpack-plugin to v3 (29e5598)
  • update dependency yargs to v15 (c19be89)

Features

  • webpack: allow to run webpack builds in parallel (0e30a8b)
  • webpack: enable parallel builds by default (bf1469c)