|
| 1 | +# Change Log |
| 2 | +All notable changes to this project will be documented in this file. |
| 3 | + |
| 4 | +The format is based on [Keep a Changelog](http://keepachangelog.com) and this project adheres to [Semantic Versioning](http://semver.org). |
| 5 | + |
| 6 | +## [0.3.2](https://github.com/remarkablemark/html-react-parser/compare/v0.3.1...v0.3.2) - 2017-01-26 |
| 7 | +### Fixed |
| 8 | +- Decode HTML entities by default on node (#34) |
| 9 | + |
| 10 | +## [0.3.1](https://github.com/remarkablemark/html-react-parser/compare/v0.3.0...v0.3.1) - 2017-01-10 |
| 11 | +### Changed |
| 12 | +- Updated README by fixing CDN installation instructions and adding JSFiddle |
| 13 | + |
| 14 | +## [0.3.0](https://github.com/remarkablemark/html-react-parser/compare/v0.2.0...v0.3.0) - 2016-11-18 |
| 15 | +### Changed |
| 16 | +- Upgrade `react` and `react-dom` to >15.4 |
| 17 | + |
| 18 | +## [0.2.0](https://github.com/remarkablemark/html-react-parser/compare/v0.1.1...v0.2.0) - 2016-11-18 |
| 19 | +### Added |
| 20 | +- Create npm script `clean` that removes `dist/` directory |
| 21 | + |
| 22 | +### Fixed |
| 23 | +- Silence webpack warning by keeping react <15.4 in this version |
| 24 | + |
| 25 | +## [0.1.1](https://github.com/remarkablemark/html-react-parser/compare/v0.1.0...v0.1.1) - 2016-11-17 |
| 26 | +### Fixed |
| 27 | +- `HTMLDOMPropertyConfig.js` and `SVGDOMPropertyConfig.js` have been moved from `react/lib/` to `react-dom/lib/` in v15.4 |
| 28 | + |
| 29 | +## [0.1.0](https://github.com/remarkablemark/html-react-parser/compare/v0.0.7...v0.1.0) - 2016-10-14 |
| 30 | +### Changed |
| 31 | +- Replace HTML to DOM converter with [html-dom-parser](https://github.com/remarkablemark/html-dom-parser) (#28) |
| 32 | + - Save `html-dom-parser` |
| 33 | + - Remove `domhandler` and `htmlparser2` |
| 34 | +- Update tests and README |
| 35 | + |
| 36 | +## [0.0.7](https://github.com/remarkablemark/html-react-parser/compare/v0.0.6...v0.0.7) - 2016-09-27 |
| 37 | +### Added |
| 38 | +- Examples of using the parser with script tag and RequireJS (#26) |
| 39 | + |
| 40 | +### Changed |
| 41 | +- Update build (#25) |
| 42 | +- Update README description, instructions, and examples (#27) |
| 43 | + |
| 44 | +## [0.0.6](https://github.com/remarkablemark/html-react-parser/compare/v0.0.5...v0.0.6) - 2016-09-27 |
| 45 | +### Added |
| 46 | +- README example with advanced usage of `replace` option from @poacher2k (#17) |
| 47 | +- Contributors section to README (#21) |
| 48 | + |
| 49 | +### Changed |
| 50 | +- Use webpack to build UMD bundle (#22) |
| 51 | + |
| 52 | +### Fixed |
| 53 | +- Regex bug on client parser (#24) |
| 54 | + |
| 55 | +## [0.0.5](https://github.com/remarkablemark/html-react-parser/compare/v0.0.4...v0.0.5) - 2016-08-30 |
| 56 | +### Changed |
| 57 | +- Remove `key` parameter from `replace` and use `React.cloneElement` (#18) |
| 58 | + |
| 59 | +### Fixed |
| 60 | +- Parsing of `<script>` and `<style>` tags (#20) |
| 61 | + |
| 62 | +## [0.0.4](https://github.com/remarkablemark/html-react-parser/compare/v0.0.3...v0.0.4) - 2016-08-29 |
| 63 | +### Added |
| 64 | +- Send coverage report generated by [istanbul](http://gotwarlost.github.io/istanbul/) to [coveralls](https://coveralls.io) (#12) |
| 65 | +- Display badges in README (#13, #15) |
| 66 | +- Update parser's `replace` option with additional 2nd parameter `key` (#16) |
| 67 | + |
| 68 | +### Fixed |
| 69 | +- Void elements (e.g., `<img />`) should not have children (#16) |
| 70 | +- Set default `key` parameter for sibling elements due to [keys warning](https://fb.me/react-warning-keys) (#16) |
| 71 | + |
| 72 | +## [0.0.3](https://github.com/remarkablemark/html-react-parser/compare/v0.0.2...v0.0.3) - 2016-08-24 |
| 73 | +### Added |
| 74 | +- Make package [UMD](https://github.com/ForbesLindesay/umd/blob/master/template.js) compatible (#9) |
| 75 | +- Throw an error if first argument is not a string (#10) |
| 76 | + |
| 77 | +### Changed |
| 78 | +- Differentiate between node and browser environments for parser (#5) |
| 79 | + |
| 80 | +### Fixed |
| 81 | +- HTML to DOM conversion on the client (#10) |
| 82 | + |
| 83 | +## [0.0.2](https://github.com/remarkablemark/html-react-parser/compare/v0.0.1...v0.0.2) - 2016-08-23 |
| 84 | +### Added |
| 85 | +- [ESLint](http://eslint.org) as the linter (#2) |
| 86 | +- [Travis CI](https://travis-ci.org) (#4) |
| 87 | + |
| 88 | +### Fixed |
| 89 | +- `package.json` **peerDependencies** for `react` and `react-dom` |
| 90 | + |
| 91 | +## [0.0.1](https://github.com/remarkablemark/html-react-parser/tree/v0.0.1) - 2016-08-23 |
| 92 | +### Added |
| 93 | +- HTML to React parser which consists of: |
| 94 | + - HTML string to DOM object converter |
| 95 | + - DOM object to React nodes converter |
| 96 | +- Tests |
| 97 | +- README |
0 commit comments