Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 2.36 KB

CHANGELOG.md

File metadata and controls

46 lines (36 loc) · 2.36 KB

React Starter Kit Change Log

All notable changes to this project will be documented in this file.

  • ...

v0.5.1 - 2016-03-02

  • Remove Html React component in favor of compiled Jade templates src/views (e188388f87069cdc7d501b385d6b0e46c98fed60)
  • Add global error handling in Node.js/Express app (e188388f87069cdc7d501b385d6b0e46c98fed60)
  • Add support for Markdown and HTML for static pages (#469, #477)

v0.5.0 - 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 to 3000
  • 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 to client.js (aka client-side code)
  • Integrate CSS Modules and isomorphic-style-loader
  • Move DOMUtils.js to src/core folder; remove src/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

v0.4.1 - 2015-10-04

  • Replace React Hot Loader (depricated) with React Transform
  • Replace index.html template with Html (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