All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
0.4.12 (2023-01-26)
0.4.11 (2023-01-26)
0.4.10 (2023-01-25)
0.4.9 (2018-07-30)
0.4.8 (2018-07-30)
0.4.7 (2018-07-30)
0.4.6 (2018-05-13)
- accidentally left a console (953e564)
- added test case for viewBox (261ffb7)
- moving svg mock to correct place (6ffb148)
- svg attributes now correctly handled (94643e1)
0.4.5 (2018-05-09)
- package: upgrade [email protected] (d065c60)
0.4.4 (2018-05-07)
- package: upgrade [email protected] (b4a1c6e)
0.4.3 (2018-03-27)
- parser: fix boolean attributes parsing (e478a44)
- parser: fix case when style is empty string (fa2a8b4)
0.4.2 (2018-02-20)
- package: upgrade [email protected] and devDependencies (1c236ed)
- release: do not lint standard-version commit message (2d35a1f)
0.4.1 (2017-11-28)
- attributes-to-props.js: Remove unappropriate console logging and remove double quote from tests (10ff149)
- attributes-to-props.js: Use AST to transform style attributes into an style object (68cd565)
- utilities.js: Format string to lowercase before converting to camel case and assert the string is a string (4522666)
0.4.0 - 2017-10-01
- react-dom-core to dependencies (closes #43)
react-dom
16 no longer exposeslib
, which includes the DOM property configs- Upgrade devDependencies of
react
andreact-dom
to 16 - Update README and examples
0.3.6 - 2017-09-30
- Dependencies
- [email protected]
- Fixes IE9 client parser bug
- Set react and react-dom versions to
^15.4
- Version 16 no longer exposes
HTMLDOMPropertyConfig
andSVGDOMPropertyConfig
- Version 16 no longer exposes
- [email protected]
0.3.5 - 2017-06-26
- Dependencies
- [email protected]
- Fixes IE client parser bug
- [email protected]
- [email protected]
- [email protected]
- Update webpack to enable scope hoisting
0.3.4 - 2017-06-17
- Dependencies:
- Dependencies:
- jsdomify
0.3.3 - 2017-01-27
- Created CHANGELOG with details on each version release (#37)
- Update examples to load parser from relative
dist/
directory (#36)
- Removed unnecessary field "browser" in
package.json
(#36)
0.3.2 - 2017-01-26
- Decode HTML entities by default on node (#34)
0.3.1 - 2017-01-10
- Updated README by fixing CDN installation instructions and adding JSFiddle
0.3.0 - 2016-11-18
- Upgrade
react
andreact-dom
to >15.4
0.2.0 - 2016-11-18
- Create npm script
clean
that removesdist/
directory
- Silence webpack warning by keeping react <15.4 in this version
0.1.1 - 2016-11-17
HTMLDOMPropertyConfig.js
andSVGDOMPropertyConfig.js
have been moved fromreact/lib/
toreact-dom/lib/
in v15.4
0.1.0 - 2016-10-14
- Replace HTML to DOM converter with html-dom-parser (#28)
- Save
html-dom-parser
- Remove
domhandler
andhtmlparser2
- Save
- Update tests and README
0.0.7 - 2016-09-27
- Examples of using the parser with script tag and RequireJS (#26)
- Update build (#25)
- Update README description, instructions, and examples (#27)
0.0.6 - 2016-09-27
- README example with advanced usage of
replace
option from @poacher2k (#17) - Contributors section to README (#21)
- Use webpack to build UMD bundle (#22)
- Regex bug on client parser (#24)
0.0.5 - 2016-08-30
- Remove
key
parameter fromreplace
and useReact.cloneElement
(#18)
- Parsing of
<script>
and<style>
tags (#20)
0.0.4 - 2016-08-29
- Send coverage report generated by istanbul to coveralls (#12)
- Display badges in README (#13, #15)
- Update parser's
replace
option with additional 2nd parameterkey
(#16)
- Void elements (e.g.,
<img />
) should not have children (#16) - Set default
key
parameter for sibling elements due to keys warning (#16)
0.0.3 - 2016-08-24
- Make package UMD compatible (#9)
- Throw an error if first argument is not a string (#10)
- Differentiate between node and browser environments for parser (#5)
- HTML to DOM conversion on the client (#10)
0.0.2 - 2016-08-23
package.json
peerDependencies forreact
andreact-dom
0.0.1 - 2016-08-23
- HTML to React parser which consists of:
- HTML string to DOM object converter
- DOM object to React nodes converter
- Tests
- README