Skip to content

Latest commit

 

History

History
164 lines (105 loc) · 6.15 KB

CHANGELOG.md

File metadata and controls

164 lines (105 loc) · 6.15 KB

Changelog

3.0.0 (2019-06-07)

TypeScript was used in production for over a month now and would consider it stable 🎉

  • Updated dependencies
  • Added TypesSript support for Storybook

3.0.0-beta.1 (2019-05-03)

  • Fix #48. Create a single history for the store and pass initial request so SSR works for routes

3.0.0-beta.0 (2019-05-02)

  • Dropped Flow Type in favor of TypeScript (sorry Flow, but the battle is lost)

2.9.0 (2019-04-28)

  • Experimentally added dependency-cruiser
  • Updated dependencies to their most recent versions

2.8.0 (2019-04-09)

  • Regular depdency update (noteworthy: react-redux v7!)

2.7.0 (2019-04-03)

2.6.0 (2019-03-21)

  • Updated dependencies. Noteworthy update: React Router v5!
  • Using TerserPlugin for minification for more reliability
  • Removed duplicate use of postcss-custom-properties
  • Fixed a few issues with Plop and Plop templates
  • Using pretty-add when adding new Plop generated files (still buggy)

2.5.1 (2019-02-06)

  • Added a stylelint warning for css shorthand properties which override no-shorthand properties
  • Re-added ejs to file-loader exclusion list because it otherwise breaks HTMLWebpackPlugin
  • Added HOST and DEVSERVER_HOST to use a different host than http://localhost

2.5.0 (2019-02-06)

  • Upgraded to React and ReactDOM 16.8.0 (with official Hooks support)

2.4.0 (2019-02-05)

  • Upgraded to immer 2.0.0
  • Increased minimum required version for Node (now: >=8.11.3) and Yarn (now: 1.12.3) since earlier versions might cause problems under certain circumstances
  • Added concurrently for script concurrency and yarn-or-npm
  • Added stylelint and a (yet) minimalistic stylelint config

2.3.0 (2019-02-01)

  • Temporarily(?) dropped express-manifest-helpers dependency due to unresolved security issue
  • Changed case of translations from kebab-case to snake_case (en-US ➡ en_US)
  • Added immer as dependency
  • Updated Jest to Jest 24 and dropped [email protected] as it is no longer needed in Jest 24

2.2.0 (2019-01-23)

2.1.0 (2018-12-17)

  • Replaced deprecated react-router-redux with connected-react-router
  • Update all dependencies to their most recent version
  • Renamed __CLIENT__ global to __BROWSER__
  • Added missing __SERVER__ and __BROWSER__ globals to ESLint config
  • Using exportOnlyLocals: true instead of require('css-loader/locals') in loaders.js since it was changed in css-loader
  • Fixed an incorrect babel-plugin (182d46f thanks andriibyk)
  • Removed an unnecessary double require.resolve (ea2dfdd thanks andriibyk)
  • Fixed #26 (thanks gswirrl)

2.0.2 (2018-10-26)

  • Added eslint-plugin-react-hooks
  • Updated React + React DOM to 16.6.0
  • Updated all other dependencies to their most recent version
  • ESLint config has been cleaned up a bit

2.0.1 (2018-10-10)

  • Moved Husky config to its own .huskyrc file

2.0.0 (2018-10-10)

  • BREAKING: files containing css modules must now be named .module.css (Tweet)
  • Added .mjs to the include list for babel-loader
  • Removed .ejs from the exclude list in the file-loader config (why was it even there?)
  • Removed the externalCssLoader as css files can now be loaded from everywhere
  • Added OMIT_SOURCEMAP environment variable to disable generation of source maps (no matter what env you are working in)
  • Updated all dependencies to their most recent versions
  • Configured babel-loader so SVGs can be imported as React component

1.8.0 (2018-10-01)

  • Added CaseSensitivePathsPlugin to Webpack config

1.7.0 (2018-09-10)

  • Added Plop as CLI tool to create new components and reducers.

1.6.0 (2018-08-28)

  • Updated Babel to v 7.0.0 final 🎉

1.5.1 (2018-08-17)

  • Added install-deps-postmerge as postmerge hook so changed dependencies get installed (or removed) automatically

1.5.0

  • Large dependency update. Everything should be up-to-date again. React 16.4.2, Webpack 4.16.5, ESlint 5.

1.4.1 (2018-05-24)

  • Updated React to 16.4.0

1.4.0 (2018-05-23)

  • Added a basic Webpack config to support Storybook integration.

1.3.0 (2018-05-23)

  • Added opt-in solution for serving a client side only version
  • Writing client build files to build/client/static instead of build/client
  • Bugfix: added missing <!doctype html> to the server response

1.2.2 (2018-05-18)

  • Updated Webpack to 4.8.3
  • Updated React and ReactDOM to 16.3.2
  • Updated all other deps to their most recent version
  • Fixed some annoyances with HMR in combination with Redux and React Router

1.2.1 (2018-04-17)

  • Updated Webpack to 4.6.0
  • Updated Redux to 4.0.0

1.2.0 (2018-04-17)

  • Added Jest

1.1.0 (2018-04-01)

  • Replaced ExtractTextWebpackPlugin with (now working) MiniCSSExtractPlugin
  • Added script to generate production build and made some improvements to the development script
  • Added React-Helmet
  • Improved server side rendering by using a configurable HTML component
  • Webpack updated to ^4.4.1
  • React + React-DOM updated to ^16.3.0
  • Allowed configuration of webpack stats in config/webpack.config.js
  • Several minor improvements, cleanups and fixes

1.0.0 (2018-03-15)

Initial release