- Updated the list of dependencies
- Fixed README and package.json links (links now default to react-webpack-generators org)
- Added support for missing rest/spread operator (using babel-stage-0 per default now)
- Added back absolute paths to make subroutes in react-router work
- Updated package dev dependencies to latest stable (karma-coverage, karma-mocha)
- Updated karma.conf.js to set test env automatically, adjusted run port to match default webpack port (8000 instead 8080)
- Updated eslint-plugin-react to 5.x
- Updated react to new stable (15.0.0)
- Asset paths are now relative (makes it easier to use bundles in subdirectories)
- Removed loading problems for webpack configurations overriding (see react-webpack-generators/generator-react-webpack#194)
- Added missing loader configuration for movies and svg file types
- Updated dependencies to latests (babel-eslint, eslint, karma-mocha-reporter, normalize.css)
- Emergency fix for correct eslint version (2.3 is currently buggy). Fixes react-webpack-generators/generator-react-webpack#196
- Added mocha to eslint global config as requested in react-webpack-generators/generator-react-webpack#195
- Added babel polyfill to tests per default (provided by Igonato)
- Updated eslint to version 2.0
- Updated glob package to version 7.0
- Refactored webpack config to use Object.assign instead of lodash
- Added dynamic port for webpack dev server (provided by kashiif)
- Removed karma-phantomjs-shim (with PhantomJS 2 there is no need for shims anymore)
- Updated phantomjs to 2.0
- Updated lodash to latest stable version
- Cleaned up formatting of unittests
- Updated core-js to new 2.0 stable
- Moved lodash and react-addons-testutils to devDependencies (provided by harunhasdal)
- Moved run component from
src/components/run.js
tosrc/index.js
(provided by stylesuxx)
- Added support for easier webpack include management (can now be set via cfg/base.js, see README.md)
- Support for config independent settings in
src/config/base.js
(provided by sthzg) - Fixed eslint loader path (provided by HelloYie)
- Added support for babel-eslint (as suggested in react-webpack-generators/generator-react-webpack#173)
- Added babel-eslint (as suggested in react-webpack-generators/generator-react-webpack#173)
- Updated css-loader to current stable (0.23)
- Updated glob to new major (5.x to 6.x)
Upgrades:
- Updated isparta-instrumenter-loader to new version 1.0
Upgrades:
- Updated to babel core version (6.0.x)
- Replaced isparta-loader with the more current (and better maintained) isparta-instrumenter-loader.
Features:
- Added support for bower components in webpack
- Added coverage reporting via karma-coverage
Upgrades:
- Added bugfix for tests in watch mode (could be overridden by config)
- Added new badges to README
- Updated devDependencies to current ones
Upgrades:
- Added webpacks define plugin for dist version
- Added new task
test:watch
to watch for changes
Upgrades:
- Updated React from 0.13 to 0.14 (using
^0.14
) as version string. This included minor code changes for components (now use the splitted "React"-Package) and the runner (Using React-DOM). - Updated the shallow renderer for unit tests.
Backwards incompatible changes:
- Default unit tests do not need to traverse down to
Component._store.props
, but directly toComponent.props
. Please keep this in mind when using properties in your tests.