Skip to content

Releases: combine/universal-react-redux

v4.1.0

15 Aug 01:13
Compare
Choose a tag to compare

This is a maintenance release.

Improvements

  • Simplify and remove unused css resources in common/css, and add the existing files to sass-resources-loader. See webpack/constants.js.
  • Only use dotenv-safe in development environment. In production, it is assumed that environment variables will actually be set in the OS, as opposed to using a .env file.
  • Properly support redux-devtools-extension.

New Features

  • Use react-helmet to manage document titles.
  • Add redux-thunk middleware to for asynchronous actions, and add an example showing how to use it to fetch todo items.
  • Add a server-side API (dummy response data) to fetch todos, using async/await.
  • Update server-side code to support the fetchData() method in a given component tree, so that we can render components server-side that require fetched data.

v4.0.0

26 Jun 19:26
Compare
Choose a tag to compare
  • Upgrade to webpack 3
  • Remove redux-devtools (please install the Chrome Extension instead)
  • Fix vendor chunking and split vendor/app js and css bundles
  • Add semantic-ui-react styles and components.

v3.0.0

30 Apr 07:45
Compare
Choose a tag to compare
  • Switch to react-router v4 (breaking changes -- refactors routing)
  • Remove Example container and replace with a quick & simple Todo app.
  • Switch to react-hot-loader v3 (currently in beta)
  • Switch to react-router-redux v5-alpha.
  • Fixed production build script
  • General housecleaning

v2.3.0

09 Jan 03:29
Compare
Choose a tag to compare
  • Adds better-npm-run
  • Switch to webpack's node API for building rather than the CLI to enable cross-platform support (Windows)
  • Update to webpack-2.1.0-beta.28 (will update to 2.2 soon)

v2.2.0

30 Nov 19:25
Compare
Choose a tag to compare

Changes:

  • Remove redux-localstorage due to it being out of the scope of being a barebones package (Thanks @kartiklad) #23
  • Added support for Webpack 2 (beta.27) #24
  • Update package dependencies

v2.1.2

02 Nov 18:48
Compare
Choose a tag to compare
  • Updated package dependencies, including react-router to 3.0.0.
  • Updated .nvmrc to point at Node LTS version (6.9.1)

v2.1.1

27 Oct 02:50
Compare
Choose a tag to compare
  • Updated package.json scripts to use yarn run and yarn bin.
  • Added an .eslintignore file.
  • Updated README.md

v2.1.0

18 Oct 02:56
Compare
Choose a tag to compare
  • Add yarn.lock for support with yarn.
  • Update package dependencies.
  • Remove deprecated .development() method in webpack-isomorphic-tools.

v2.0.0

05 Sep 04:54
Compare
Choose a tag to compare

Changes:

  • Adds support for css-modules (Universal)
  • Re-organize folder structure
  • Remove bootstrap dependency - we'll leave this up to the user to implement
  • Update .nvmrc to use Node 6.4.0.
  • Remove Cordova support (again). See the feature/cordova branch for support.
  • Chunk vendor files into its vendor.js and application files into app.js.
  • Universally resolve module requires into common/ directory, removes need to require modules relatively, e.g. require('../../../Component')

v1.0.1

17 Jun 20:37
Compare
Choose a tag to compare
  • Force NODE_ENV to be set on npm run scripts.
  • Update README.