All notable changes to this project will be documented in this file.
- Split the
App
component intoApp
setting context variables andLayout
setting general look and feel of the app (BREAKING CHANGE) - Upgrade
history
npm module to v4.x, updateLink
component (BREAKING CHANGE) - Remove
core/createHistory.js
in favor of initializing a new history instance insideserver.js
andclient.js
(BREAKING CHANGE) - Remove Jade dependency in favor of React-based templates:
src/views/index.jade => src/components/Html
(BREAKING CHANGE) #711 - Update
isomorphic-style-loader
tov1.0.0
, it adds comparability with ES2015+ decorators. Code such asexport default withStyles(MyComponent, style1, style2)
must be replaced withexport default withStyles(style1, style2)(MyComponent)
(BREAKING CHANGE). - Replace Jest with Mocha, Chai, Sinon. Unit test files must be renamed from
MyComponent/__test__/MyComponent-test.js
toMyComponent/MyComponent.test.js
(BREAKING CHANGE). - Remove
actions
,stores
folders since there is no Flux library included into the kit - Rename
server
variable inserver.js
toapp
- Integrate Sequelize to make the project compatible with different types of databases
- Rename
onSetTitle
,onSetMeta
context variables tosetTitle
,setMeta
- Move
Content
component tosrc/routes/content
- Move
ErrorPage
component tosrc/routes/error
- Move the list of top-level routes to
src/routes/index
- Update routing to use
universal-router
library - Move Babel, ESLint and JSCS configurations to
package.json
#497 - Convert
Feedback
,Footer
,Header
, andNavigation
to functional stateless components - Move page / screen components into the
src/routes
folder along with the routing information for them (BREAKING CHANGE). 6553936
2016-03-02
- Remove
Html
React component in favor of compiled Jade templates (src/views
) (BREAKING CHANGE). e188388 - Add global error handling in Node.js/Express app. e188388
- Add support for Markdown and HTML for static pages. #469, #477
2016-02-27
- Replace RESTful API endpoint (
src/api
) with GraphQL (src/data
) - Add a sample GraphQL endpoint localhost:3000/graphql
- Change the default Node.js server port from
5000
to3000
- Add a JWT-based authentication cookies (see
src/server.js
) - Add a reference implementation of Facebook authentication strategy (
src/core/passport.js
) - Add a sample database client utility for PostgreSQL (
src/core/db.js
) - Optimize the
tools/start.js
script that launches dev server with Browsersync and HMR - Replace Superagent with WHATWG Fetch library
- Rename
app.js
toclient.js
(aka client-side code) - Integrate CSS Modules and isomorphic-style-loader
- Move
DOMUtils.js
tosrc/core
folder; removesrc/utils
folder - Replace cssnext with precss
- Update build automation scripts to use plain functions
- Add support of
--release
and--verbose
flags to build scripts - Add
CHANGELOG.md
file with a list of notable changes to this project
2015-10-04
- Replace React Hot Loader (deprecated) with React Transform
- Replace
index.html
template withHtml
(shell) React component - Update the deployment script (
tools/deploy.js
), add Git-based deployment example - Update ESLint and JSCS settings to use AirBnb JavaScript style guide
- Update
docs/how-to-configure-text-editors.md
to cover Atom editor - Update NPM production and dev dependencies to use the latest versions