Skip to content

Commit 704f9f4

Browse files
chore(package): upgrade [email protected], update react version
The latest `html-dom-parser` has an IE9 bug fix. Update semver of `react` and `react-dom` to `^15.4` because `16` no longer exposes `HTMLDOMPropertyConfig` and `SVGDOMPropertyConfig`. Update changelog.
1 parent 2ec232f commit 704f9f4

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com)
55
and this project adheres to [Semantic Versioning](http://semver.org).
66

7+
## [Unreleased](https://github.com/remarkablemark/html-react-parser/compare/v0.3.5...HEAD)
8+
### Changed
9+
- Dependencies
10+
11+
- Fixes IE9 client parser bug
12+
- Set react and react-dom versions to `^15.4`
13+
- Version 16 no longer exposes `HTMLDOMPropertyConfig` and `SVGDOMPropertyConfig`
14+
715
## [0.3.5](https://github.com/remarkablemark/html-react-parser/compare/v0.3.4...v0.3.5) - 2017-06-26
816
### Changed
917
- Dependencies

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@
2929
"converter"
3030
],
3131
"dependencies": {
32-
"html-dom-parser": "0.1.1"
32+
"html-dom-parser": "0.1.2"
3333
},
3434
"devDependencies": {
3535
"coveralls": "^2.13.1",
3636
"eslint": "^4.1.1",
3737
"istanbul": "^0.4.5",
3838
"mocha": "^3.4.2",
39-
"react": ">=15.4",
40-
"react-dom": ">=15.4",
39+
"react": "^15.4",
40+
"react-dom": "^15.4",
4141
"webpack": "^3.0.0"
4242
},
4343
"peerDependencies": {
44-
"react": ">=15.4",
45-
"react-dom": ">=15.4"
44+
"react": "^15.4",
45+
"react-dom": "^15.4"
4646
},
4747
"license": "MIT"
4848
}

0 commit comments

Comments
 (0)