Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 2.21 KB

CHANGELOG.md

File metadata and controls

102 lines (57 loc) · 2.21 KB

Changelog

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

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[5.1.0] - 2019-09-03

Changed

  • Use a <Head /> component to set document head data via react-helmet instead of writing it directly in <App /> using a separate JSON-like file.
  • Update dependencies.

[5.0.1] - 2019-07-17

Fixed

  • Production builds only load necessary code-split (ie css-modules) CSS files instead of all of them.

Security

[5.0.0] - 2019-06-16

Added

  • react-testing-library replaces enzyme

Removed

  • enzyme

Changed

  • The <ServerDataProvider /> context provider wrapper accepts a prop called value instead of serverCache. Internally, it's context value is now just called data vs dataCache.

Fixed

  • Jest config no longer runs in a "node" environment

Security

[4.1.0] - 2019-06-16

Added

  • Resolve CSS modules by looking for .module.s?css file extension

Changed

  • Client-side webpack config for dev and prod combined into a factory function

[4.0.1] - 2019-06-15

Added

Changed

  • Upgraded css-loader to v3 and change webpack config options
  • Dependencies updated

Fixed

  • The correct route is now rendered on the server (I forgot to pass the URL to react router 🤦)

[4.0.0] - 2019-06-09

Added

  • CHANGELOG.md 😁
  • Client-side data hydration setup using React context
  • Sample todo application
  • Sample API module for making HTTP requests

Changed

  • Fetch data while rendering on the server from any component in the tree
  • Ignore node_modules when watching files with chokidar during development
  • ESLint config now uses eslint-config-react-app
  • Jest config moved out of package.json to jest.config.js
  • Dependencies updated to latest version
  • README updates

Removed

  • redux and react-redux were removed and replaced with React context

Template

[1.0.0] - 2019-06-09

Added

Changed

Deprecated

Removed

Fixed

Security