@xmldom/xmldom 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/index.d.ts +1177 -64
- package/lib/dom.js +10 -20
- package/lib/errors.js +4 -8
- package/lib/index.js +6 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.9.1](https://github.com/xmldom/xmldom/compare/0.9.0...0.9.1)
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- DOMParser.parseFromString requires mimeType as second argument [`#713`](https://github.com/xmldom/xmldom/pull/713)
|
|
12
|
+
- correct spelling of `isHTMLMimeType` in type definition [`#715`](https://github.com/xmldom/xmldom/pull/715) / [`#712`](https://github.com/xmldom/xmldom/issues/712)
|
|
13
|
+
- sync types with exports [`#717`](https://github.com/xmldom/xmldom/pull/717) / [`#285`](https://github.com/xmldom/xmldom/issues/285) / [`#695`](https://github.com/xmldom/xmldom/issues/695)
|
|
14
|
+
|
|
15
|
+
### Other
|
|
16
|
+
|
|
17
|
+
- minimum tested node version is 14 [`#710`](https://github.com/xmldom/xmldom/pull/710)
|
|
18
|
+
|
|
19
|
+
Thank you, [@krystofwoldrich](https://github.com/krystofwoldrich), [@marvinruder](https://github.com/marvinruder),
|
|
20
|
+
[@amacneil](https://github.com/amacneil), [@defunctzombie](https://github.com/defunctzombie),
|
|
21
|
+
[@tjhorner](https://github.com/tjhorner), [@danon](https://github.com/danon), for your contributions
|
|
22
|
+
|
|
23
|
+
|
|
7
24
|
## [0.9.0](https://github.com/xmldom/xmldom/compare/0.9.0-beta.11...0.9.0)
|
|
8
25
|
|
|
9
26
|
- [Discussion](https://github.com/xmldom/xmldom/discussions/435)
|