@xmldom/xmldom 0.9.9 → 0.9.10

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 CHANGED
@@ -4,6 +4,55 @@ 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.10](https://github.com/xmldom/xmldom/compare/0.9.9...0.9.10)
8
+
9
+ ### Fixed
10
+
11
+ - Security: `XMLSerializer.serializeToString()` (and `Node.toString()`, `NodeList.toString()`) now accept a `requireWellFormed` option. When `{ requireWellFormed: true }` is passed, the serializer throws `InvalidStateError` for injection-prone node content, preventing XML injection via attacker-controlled node data. [`GHSA-j759-j44w-7fr8`](https://github.com/xmldom/xmldom/security/advisories/GHSA-j759-j44w-7fr8) [`GHSA-x6wf-f3px-wcqx`](https://github.com/xmldom/xmldom/security/advisories/GHSA-x6wf-f3px-wcqx) [`GHSA-f6ww-3ggp-fr8h`](https://github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h)
12
+ - Comment: throws when `data` contains `--` anywhere, ends with `-`, or contains characters outside the XML `Char` production
13
+ - ProcessingInstruction: throws when target contains `:` or matches `xml` (case-insensitive), or `data` contains characters outside the XML `Char` production or contains `?>`
14
+ - DocumentType: throws when `publicId` fails `PubidLiteral`, `systemId` fails `SystemLiteral`, or `internalSubset` contains `]>`
15
+ - Security: DOM traversal operations (`XMLSerializer.serializeToString()`, `Node.prototype.normalize()`, `Node.prototype.cloneNode(true)`, `Document.prototype.importNode(node, true)`, `node.textContent` getter, `getElementsByTagName()` / `getElementsByTagNameNS()` / `getElementsByClassName()` / `getElementById()`, `Node.prototype.isEqualNode()`) are now iterative. Previously, deeply nested DOM trees would exhaust the JavaScript call stack and throw an unrecoverable `RangeError`. [`GHSA-2v35-w6hq-6mfw`](https://github.com/xmldom/xmldom/security/advisories/GHSA-2v35-w6hq-6mfw)
16
+ - `isEqualNode` now correctly returns `false` for CDATASection nodes with different `data`
17
+
18
+ ### Deprecated
19
+
20
+ - The `splitCDATASections` serializer option is deprecated and will be removed in the next breaking release. The automatic splitting of `"]]>"` in `CDATASection` data was introduced as a workaround; use `requireWellFormed: true` or ensure `CDATASection` data does not contain `"]]>"` before serialization.
21
+
22
+ ### Chore
23
+
24
+ - updated dependencies
25
+
26
+ Thank you,
27
+ [@Jvr2022](https://github.com/Jvr2022),
28
+ [@praveen-kv](https://github.com/praveen-kv),
29
+ [@TharVid](https://github.com/TharVid),
30
+ [@decsecre583](https://github.com/decsecre583),
31
+ [@tlsbollei](https://github.com/tlsbollei),
32
+ [@KarimTantawey](https://github.com/KarimTantawey),
33
+ for your contributions
34
+
35
+
36
+ ## [0.8.13](https://github.com/xmldom/xmldom/compare/0.8.12...0.8.13)
37
+
38
+ ### Fixed
39
+
40
+ - Security: `XMLSerializer.serializeToString()` (and `Node.toString()`, `NodeList.toString()`) now accept a `requireWellFormed` option (fourth argument, after `isHtml` and `nodeFilter`). When `{ requireWellFormed: true }` is passed, the serializer throws `InvalidStateError` for injection-prone node content, preventing XML injection via attacker-controlled node data. [`GHSA-j759-j44w-7fr8`](https://github.com/xmldom/xmldom/security/advisories/GHSA-j759-j44w-7fr8) [`GHSA-x6wf-f3px-wcqx`](https://github.com/xmldom/xmldom/security/advisories/GHSA-x6wf-f3px-wcqx) [`GHSA-f6ww-3ggp-fr8h`](https://github.com/xmldom/xmldom/security/advisories/GHSA-f6ww-3ggp-fr8h)
41
+ - Comment: throws when `data` contains `-->`
42
+ - ProcessingInstruction: throws when `data` contains `?>`
43
+ - DocumentType: throws when `publicId` fails `PubidLiteral`, `systemId` fails `SystemLiteral`, or `internalSubset` contains `]>`
44
+ - Security: DOM traversal operations (`XMLSerializer.serializeToString()`, `Node.prototype.normalize()`, `Node.prototype.cloneNode(true)`, `Document.prototype.importNode(node, true)`, `node.textContent` getter, `getElementsByTagName()` / `getElementsByTagNameNS()` / `getElementsByClassName()` / `getElementById()`) are now iterative. Previously, deeply nested DOM trees would exhaust the JavaScript call stack and throw an unrecoverable `RangeError`. [`GHSA-2v35-w6hq-6mfw`](https://github.com/xmldom/xmldom/security/advisories/GHSA-2v35-w6hq-6mfw)
45
+
46
+ Thank you,
47
+ [@Jvr2022](https://github.com/Jvr2022),
48
+ [@praveen-kv](https://github.com/praveen-kv),
49
+ [@TharVid](https://github.com/TharVid),
50
+ [@decsecre583](https://github.com/decsecre583),
51
+ [@tlsbollei](https://github.com/tlsbollei),
52
+ [@KarimTantawey](https://github.com/KarimTantawey),
53
+ for your contributions
54
+
55
+
7
56
  ## [0.9.9](https://github.com/xmldom/xmldom/compare/0.9.8...0.9.9)
8
57
 
9
58
  ### Added
@@ -164,11 +213,6 @@ Thank you,
164
213
  [@benkroeger](https://github.com/benkroeger),
165
214
  for your contributions.
166
215
 
167
- # Changelog
168
-
169
- All notable changes to this project will be documented in this file.
170
-
171
- This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
172
216
 
173
217
  ## [0.9.2](https://github.com/xmldom/xmldom/compare/0.9.1...0.9.2)
174
218
 
@@ -615,27 +659,21 @@ Thank you [@niklasl](https://github.com/niklasl), [@cburatto](https://github.com
615
659
 
616
660
  Thank you [@marrus-sh](https://github.com/marrus-sh), [@victorandree](https://github.com/victorandree), [@mdierolf](https://github.com/mdierolf), [@tsabbay](https://github.com/tsabbay), [@fatihpense](https://github.com/fatihpense) for your contributions
617
661
 
618
- ## 0.7.5
619
-
620
- [Commits](https://github.com/xmldom/xmldom/compare/0.7.4...0.7.5)
662
+ ## [0.7.5](https://github.com/xmldom/xmldom/compare/0.7.4...0.7.5)
621
663
 
622
664
  ### Fixes:
623
665
 
624
666
  - Preserve default namespace when serializing [`#319`](https://github.com/xmldom/xmldom/issues/319) / [`#321`](https://github.com/xmldom/xmldom/pull/321)
625
667
  Thank you, [@lupestro](https://github.com/lupestro)
626
668
 
627
- ## 0.7.4
628
-
629
- [Commits](https://github.com/xmldom/xmldom/compare/0.7.3...0.7.4)
669
+ ## [0.7.4](https://github.com/xmldom/xmldom/compare/0.7.3...0.7.4)
630
670
 
631
671
  ### Fixes:
632
672
 
633
673
  - Restore ability to parse `__prototype__` attributes [`#315`](https://github.com/xmldom/xmldom/pull/315)
634
674
  Thank you, [@dsimpsonOMF](https://github.com/dsimpsonOMF)
635
675
 
636
- ## 0.7.3
637
-
638
- [Commits](https://github.com/xmldom/xmldom/compare/0.7.2...0.7.3)
676
+ ## [0.7.3](https://github.com/xmldom/xmldom/compare/0.7.2...0.7.3)
639
677
 
640
678
  ### Fixes:
641
679
 
@@ -659,18 +697,14 @@ Thank you [@marrus-sh](https://github.com/marrus-sh), [@victorandree](https://gi
659
697
  - Split test and lint scripts [`#297`](https://github.com/xmldom/xmldom/pull/297)
660
698
  - Switch to stryker dashboard owned by org [`#292`](https://github.com/xmldom/xmldom/pull/292)
661
699
 
662
- ## 0.7.2
663
-
664
- [Commits](https://github.com/xmldom/xmldom/compare/0.7.1...0.7.2)
700
+ ## [0.7.2](https://github.com/xmldom/xmldom/compare/0.7.1...0.7.2)
665
701
 
666
702
  ### Fixes:
667
703
 
668
704
  - Types: Add index.d.ts to packaged files [`#288`](https://github.com/xmldom/xmldom/pull/288)
669
705
  Thank you, [@forty](https://github.com/forty)
670
706
 
671
- ## 0.7.1
672
-
673
- [Commits](https://github.com/xmldom/xmldom/compare/0.7.0...0.7.1)
707
+ ## [0.7.1](https://github.com/xmldom/xmldom/compare/0.7.0...0.7.1)
674
708
 
675
709
  ### Fixes:
676
710
 
@@ -680,12 +714,10 @@ Thank you [@marrus-sh](https://github.com/marrus-sh), [@victorandree](https://gi
680
714
  ### Chore:
681
715
  - package.json: remove author, maintainers, etc. [`#279`](https://github.com/xmldom/xmldom/pull/279)
682
716
 
683
- ## 0.7.0
684
-
685
- [Commits](https://github.com/xmldom/xmldom/compare/0.6.0...0.7.0)
717
+ ## [0.7.0](https://github.com/xmldom/xmldom/compare/0.6.0...0.7.0)
686
718
 
687
719
  Due to [`#271`](https://github.com/xmldom/xmldom/issue/271) this version was published as
688
- - unscoped `xmldom` package to github (git tags [`0.7.0`](https://github.com/xmldom/xmldom/tree/0.7.0) and [`0.7.0+unscoped`](https://github.com/xmldom/xmldom/tree/0.7.0%2Bunscoped))
720
+ - unscoped `xmldom` package to **github** (git tags [`0.7.0`](https://github.com/xmldom/xmldom/tree/0.7.0) and [`0.7.0+unscoped`](https://github.com/xmldom/xmldom/tree/0.7.0%2Bunscoped))
689
721
  - scoped `@xmldom/xmldom` package to npm (git tag `0.7.0+scoped`)
690
722
  For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issuecomment-902172483)
691
723
 
@@ -711,9 +743,9 @@ For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issu
711
743
 
712
744
  - Describe relations with and between specs: [`#211`](https://github.com/xmldom/xmldom/pull/211), [`#247`](https://github.com/xmldom/xmldom/pull/247)
713
745
 
714
- ## 0.6.0
746
+ ## [0.6.0](https://github.com/xmldom/xmldom/compare/0.5.0...0.6.0)
715
747
 
716
- [Commits](https://github.com/xmldom/xmldom/compare/0.5.0...0.6.0)
748
+ Published to npm: 2021-04-17 16:41 UTC by @karfau as `xmldom`
717
749
 
718
750
  ### Fixes
719
751
 
@@ -722,9 +754,9 @@ For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issu
722
754
  Thank you, [@pdecat](https://github.com/pdecat) and [@FranckDepoortere](https://github.com/FranckDepoortere)
723
755
  - Escape `<` to `&lt;` when serializing attribute values [`#198`](https://github.com/xmldom/xmldom/issues/198) / [`#199`](https://github.com/xmldom/xmldom/pull/199)
724
756
 
725
- ## 0.5.0
757
+ ## [0.5.0](https://github.com/xmldom/xmldom/compare/0.4.0...0.5.0)
726
758
 
727
- [Commits](https://github.com/xmldom/xmldom/compare/0.4.0...0.5.0)
759
+ Published to npm: 2021-03-09 03:59 UTC by @brodybits as `xmldom`
728
760
 
729
761
  ### Fixes
730
762
  - Avoid misinterpretation of malicious XML input - [`GHSA-h6q6-9hqw-rwfv`](https://github.com/xmldom/xmldom/security/advisories/GHSA-h6q6-9hqw-rwfv) (CVE-2021-21366)
@@ -752,9 +784,9 @@ For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issu
752
784
  ### Docs
753
785
  - Update MDN links in `readme.md` [`#188`](https://github.com/xmldom/xmldom/pull/188)
754
786
 
755
- ## 0.4.0
787
+ ## [0.4.0](https://github.com/xmldom/xmldom/compare/0.3.0...0.4.0)
756
788
 
757
- [Commits](https://github.com/xmldom/xmldom/compare/0.3.0...0.4.0)
789
+ Published to npm: 2020-10-27 00:44 UTC by @brodybits as `xmldom`
758
790
 
759
791
  ### Fixes
760
792
  - **BREAKING** Restore `&nbsp;` behavior from v0.1.27 [`#67`](https://github.com/xmldom/xmldom/pull/67)
@@ -788,9 +820,9 @@ For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issu
788
820
  ### Other
789
821
  - Remove files that are not of any use [`#131`](https://github.com/xmldom/xmldom/pull/131), [`#65`](https://github.com/xmldom/xmldom/pull/65), [`#33`](https://github.com/xmldom/xmldom/pull/33)
790
822
 
791
- ## 0.3.0
823
+ ## [0.3.0](https://github.com/xmldom/xmldom/compare/0.2.1...0.3.0)
792
824
 
793
- [Commits](https://github.com/xmldom/xmldom/compare/0.2.1...0.3.0)
825
+ Published to npm: 2020-03-04 16:32 UTC by @kethinov as `xmldom`
794
826
 
795
827
  - **BREAKING** Node >=10.x is now required.
796
828
  - **BREAKING** Remove `component.json` (deprecated package manager https://github.com/componentjs/guide)
@@ -802,26 +834,34 @@ For more details look at [`#278`](https://github.com/xmldom/xmldom/pull/278#issu
802
834
  - Move CHANGELOG to markdown file.
803
835
  - Move LICENSE to markdown file.
804
836
 
805
- ## 0.2.1
837
+ ## [0.2.1](https://github.com/xmldom/xmldom/compare/0.2.0...0.2.1)
806
838
 
807
- [Commits](https://github.com/xmldom/xmldom/compare/0.2.0...0.2.1)
839
+ Published to npm: 2019-12-20 00:40 UTC by @brodybits as `xmldom`
808
840
 
809
841
  - Correct `homepage`, `repository` and `bugs` URLs in `package.json`.
810
842
 
811
- ## 0.2.0
843
+ ## [0.2.0](https://github.com/xmldom/xmldom/compare/v0.1.27...0.2.0)
812
844
 
813
- [Commits](https://github.com/xmldom/xmldom/compare/v0.1.27...0.2.0)
845
+ Published to npm: 2019-12-20 00:19 UTC by @brodybits as `xmldom`
814
846
 
815
847
  - Includes all **BREAKING** changes introduced in [`xmldom-alpha@v0.1.28`](#0128) by the original authors.
816
848
  - **POSSIBLY BREAKING** [remove the `Object.create` check from the `_extends` method of `dom.js` that added a `__proto__` property](https://github.com/xmldom/xmldom/commit/0be2ae910a8a22c9ec2cac042e04de4c04317d2a#diff-7d1c5d97786fdf9af5446a241d0b6d56L19-L22) ().
817
849
  - **POSSIBLY BREAKING** [remove code that added a `__proto__` property](https://github.com/xmldom/xmldom/commit/366159a76a181ce9a0d83f5dc48205686cfaf9cc)
818
850
  - formatting/corrections in `package.json`
819
851
 
820
- ## 0.1.31
852
+ ## [0.1.31](https://github.com/xmldom/xmldom/compare/0.1.30...0.1.31)
853
+
854
+ Published to npm: 2019-12-19 22:34 UTC by @brodybits as `xmldom`
855
+
856
+ ## [0.1.30](https://github.com/xmldom/xmldom/compare/0.1.29...0.1.30)
857
+
858
+ Published to npm: 2019-12-19 22:30 UTC by @brodybits as `xmldom`
821
859
 
822
- [Commits](https://github.com/xmldom/xmldom/compare/v0.1.27...v0.1.31)
860
+ ## [0.1.29](https://github.com/xmldom/xmldom/compare/0.1.27...0.1.29)
823
861
 
824
- The patch versions (`v0.1.29` - `v0.1.31`) that have been released on the [v0.1.x branch](https://github.com/xmldom/xmldom/tree/0.1.x), to reflect the changed maintainers, **are branched off from [`v0.1.27`](#0127) so they don't include the breaking changes introduced in [`xmldom-alpha@v0.1.28`](#0128)**:
862
+ Published to npm: 2019-12-19 22:26 UTC by @brodybits as `xmldom`
863
+
864
+ The patch versions (`0.1.29` - `0.1.31`) that have been released on the [v0.1.x branch](https://github.com/xmldom/xmldom/tree/0.1.x), to reflect the changed maintainers, **are branched off from [`0.1.27`](#0127) so they don't include the breaking changes introduced in [`xmldom-alpha@v0.1.28`](#0128)**:
825
865
 
826
866
  ## Maintainer changes
827
867
 
@@ -836,12 +876,9 @@ It is currently not planned to continue publishing the `xmldom-alpha` package.
836
876
  The new maintainers did not invest time to understand changes that led to the last `xmldom` version [`0.1.27`](#0127) published by the original maintainer, but consider it the basis for their work.
837
877
  A timeline of all the changes that happened from that version until `0.3.0` is available in <https://github.com/xmldom/xmldom/issues/62>. Any related questions should be asked there.
838
878
 
839
- ## 0.1.28
840
-
841
- [Commits](https://github.com/xmldom/xmldom/compare/v0.1.27...xmldom-alpha@v0.1.28)
879
+ ## [0.1.28](https://github.com/xmldom/xmldom/compare/v0.1.27...xmldom-alpha@v0.1.28)
842
880
 
843
- Published by @jindw on the 9th of May 2017 as
844
- - `xmldom-alpha@0.1.28`
881
+ Published to npm: 2017-05-08 02:51 UTC by @jindw as `xmldom-alpha`
845
882
 
846
883
  - **BREAKING** includes [regression regarding `&nbsp;` (issue #57)](https://github.com/xmldom/xmldom/issues/57)
847
884
  - [Fix `license` field in `package.json`](https://github.com/jindw/xmldom/pull/178)
@@ -849,45 +886,48 @@ Published by @jindw on the 9th of May 2017 as
849
886
  - Fix `dom.js` serialization issue for missing document element ([example that failed on `toString()` before this change](https://github.com/xmldom/xmldom/blob/a58dcf7a265522e80ce520fe3be0cddb1b976f6f/test/parse/unclosedcomment.js#L10-L11))
850
887
  - Add new module `entities.js`
851
888
 
852
- ## 0.1.27
889
+ ## [0.1.27](https://github.com/xmldom/xmldom/compare/0.1.26...0.1.27)
890
+
891
+ Published to npm: 2016-11-28 03:56 UTC by @jindw as `xmldom` and `xmldom-alpha`
853
892
 
854
- Published by @jindw on the 28th of Nov 2016 as
855
- - `xmldom@0.1.27`
856
- - `xmldom-alpha@0.1.27`
893
+ Tags `0.1.24`, `0.1.25`, `0.1.26`, and `0.1.27` all point to the same git commit (`b53aa82`). These four versions were published within 24 hours in November 2016 with version bumps applied only to the working directory, not committed to git.
857
894
 
858
895
  - Various bug fixes.
859
896
 
860
- ## 0.1.26
897
+ ## [0.1.26](https://github.com/xmldom/xmldom/compare/0.1.25...0.1.26)
861
898
 
862
- Published on the 18th of Nov 2016
863
- as `xmldom@0.1.26`
899
+ Published to npm: 2016-11-28 03:47 UTC by @jindw as `xmldom`
900
+
901
+ Tags `0.1.24`, `0.1.25`, `0.1.26`, and `0.1.27` all point to the same git commit (`b53aa82`). These four versions were published within 24 hours in November 2016 with version bumps applied only to the working directory, not committed to git.
864
902
 
865
903
  - Details unknown
866
904
 
867
- ## 0.1.25
905
+ ## [0.1.25](https://github.com/xmldom/xmldom/compare/0.1.24...0.1.25)
906
+
907
+ Published to npm: 2016-11-28 03:35 UTC by @jindw as `xmldom`
868
908
 
869
- Published on the 18th of Nov 2016 as
870
- - `xmldom@0.1.25`
909
+ Tags `0.1.24`, `0.1.25`, `0.1.26`, and `0.1.27` all point to the same git commit (`b53aa82`). These four versions were published within 24 hours in November 2016 with version bumps applied only to the working directory, not committed to git.
871
910
 
872
911
  - Details unknown
873
912
 
874
- ## 0.1.24
913
+ ## [0.1.24](https://github.com/xmldom/xmldom/compare/0.1.22...0.1.24)
875
914
 
876
- Published on the 27th of November 2016 as
877
- - `xmldom@0.1.24`
878
- - `xmldom-alpha@0.1.24`
915
+ Published to npm: 2016-11-27 14:00 UTC by @jindw as `xmldom` and `xmldom-alpha`
916
+
917
+ Tags `0.1.24`, `0.1.25`, `0.1.26`, and `0.1.27` all point to the same git commit (`b53aa82`). These four versions were published within 24 hours in November 2016 with version bumps applied only to the working directory, not committed to git.
879
918
 
880
919
  - Added node filter.
881
920
 
882
- ## 0.1.23
921
+ ## [0.1.23](https://github.com/xmldom/xmldom/compare/0.1.22...0.1.23)
883
922
 
884
- Published on the 5th of May 2016 as
885
- - `xmldom-alpha@0.1.23`
923
+ Published to npm: 2016-05-20 04:24 UTC by @jindw as `xmldom-alpha`
886
924
 
887
925
  - Add namespace support for nest node serialize.
888
926
  - Various other bug fixes.
889
927
 
890
- ## 0.1.22
928
+ ## [0.1.22](https://github.com/xmldom/xmldom/compare/0.1.21...0.1.22)
929
+
930
+ Published to npm: 2016-01-30 11:50 UTC by @jindw as `xmldom`
891
931
 
892
932
  - Merge XMLNS serialization.
893
933
  - Remove \r from source string.
@@ -895,11 +935,15 @@ Published on the 5th of May 2016 as
895
935
  - Switch references to nodeType to use named constants.
896
936
  - Add nodelist toString support.
897
937
 
898
- ## 0.1.21
938
+ ## [0.1.21](https://github.com/xmldom/xmldom/compare/0.1.20...0.1.21)
939
+
940
+ Published to npm: 2016-01-13 11:41 UTC by @jindw as `xmldom`
899
941
 
900
942
  - Fix serialize bug.
901
943
 
902
- ## 0.1.20
944
+ ## [0.1.20](https://github.com/xmldom/xmldom/compare/0.1.19...0.1.20)
945
+
946
+ Published to npm: 2016-01-10 08:23 UTC by @jindw as `xmldom`
903
947
 
904
948
  - Optimize invalid XML support.
905
949
  - Add toString sorter for attributes output.
@@ -909,31 +953,103 @@ Published on the 5th of May 2016 as
909
953
  - Add support for HTML entities for HTML docs only.
910
954
  - Fix TypeError when Document is created with DocumentType.
911
955
 
912
- ## 0.1.19
956
+ ## [0.1.19](https://github.com/xmldom/xmldom/compare/0.1.18...0.1.19)
957
+
958
+ Published to npm: 2014-01-28 15:15 UTC by @jindw as `xmldom`
913
959
 
914
960
  - Fix [infinite loop on unclosed comment (jindw/xmldom#68)](https://github.com/jindw/xmldom/issues/68)
915
961
  - Add error report for unclosed tag.
916
962
  - Various other fixes.
917
963
 
918
- ## 0.1.18
964
+ ## [0.1.18](https://github.com/xmldom/xmldom/compare/0.1.17...0.1.18)
965
+
966
+ Published to npm: 2014-01-17 06:59 UTC by @bigeasy as `xmldom`
919
967
 
920
968
  - Add default `ns` support.
921
969
  - parseFromString now renders entirely plain text documents as textNode.
922
970
  - Enable option to ignore white space on parsing.
923
971
 
924
- ## 0.1.17
972
+ ## [0.1.17](https://github.com/xmldom/xmldom/compare/0.1.16...0.1.17)
973
+
974
+ Published to npm: 2013-12-16 03:07 UTC by @jindw as `xmldom`
975
+
976
+ No version bump commit for 0.1.17 was found in git history. The tag `0.1.17` points to the commit immediately preceding the 0.1.18 version bump (`87f63e6`, parent of `9ddac14`), which is the last committed state before the next version.
925
977
 
926
- **Details missing for this and potential earlier version**
978
+ ## [0.1.16](https://github.com/xmldom/xmldom/compare/0.1.15...0.1.16)
927
979
 
928
- ## 0.1.16
980
+ Published to npm: 2013-05-04 15:00 UTC by @bigeasy as `xmldom`
929
981
 
930
982
  - Correctly handle multibyte Unicode greater than two byts. #57. #56.
931
983
  - Initial unit testing and test coverage. #53. #46. #19.
932
984
  - Create Bower `component.json` #52.
933
985
 
934
- ## 0.1.8
986
+ ## [0.1.15](https://github.com/xmldom/xmldom/compare/0.1.14...0.1.15)
987
+
988
+ Published to npm: 2013-04-03 02:41 UTC by @bigeasy as `xmldom`
989
+
990
+ ## [0.1.14](https://github.com/xmldom/xmldom/compare/0.1.13...0.1.14)
991
+
992
+ Published to npm: 2013-03-31 15:31 UTC by @bigeasy as `xmldom`
993
+
994
+ ## [0.1.13](https://github.com/xmldom/xmldom/compare/0.1.12...0.1.13)
995
+
996
+ Published to npm: 2012-10-02 11:35 UTC by @jindw as `xmldom`
997
+
998
+ ## [0.1.12](https://github.com/xmldom/xmldom/compare/0.1.11...0.1.12)
999
+
1000
+ Published to npm: 2012-09-03 15:02 UTC as `xmldom`
1001
+
1002
+ No version bump commit for 0.1.12 was found in git history. The tag `0.1.12` points to the commit immediately preceding the 0.1.13 version bump (`47fa9b8`, parent of `eb17b3a`), which is the last committed state before the next version.
1003
+
1004
+ ## [0.1.11](https://github.com/xmldom/xmldom/compare/0.1.10...0.1.11)
1005
+
1006
+ Published to npm: 2012-06-18 10:45 UTC by @jindw as `xmldom`
1007
+
1008
+ ## [0.1.10](https://github.com/xmldom/xmldom/compare/0.1.9...0.1.10)
1009
+
1010
+ Published to npm: 2012-06-14 02:54 UTC by @jindw as `xmldom`
1011
+
1012
+ ## [0.1.9](https://github.com/xmldom/xmldom/compare/0.1.8...0.1.9)
1013
+
1014
+ Published to npm: 2012-06-08 06:18 UTC by @jindw as `xmldom`
1015
+
1016
+ ## [0.1.8](https://github.com/xmldom/xmldom/compare/0.1.7...0.1.8)
1017
+
1018
+ Published to npm: 2012-05-29 13:30 UTC by @jindw as `xmldom`
935
1019
 
936
1020
  - Add: some test case from node-o3-xml(excludes xpath support)
937
1021
  - Fix: remove existed attribute before setting (bug introduced in v0.1.5)
938
1022
  - Fix: index direct access for childNodes and any NodeList collection(not w3c standard)
939
1023
  - Fix: remove last child bug
1024
+
1025
+ ## [0.1.7](https://github.com/xmldom/xmldom/compare/0.1.6...0.1.7)
1026
+
1027
+ Published to npm: 2012-05-29 03:05 UTC by @jindw as `xmldom`
1028
+
1029
+ ## [0.1.6](https://github.com/xmldom/xmldom/compare/0.1.5...0.1.6)
1030
+
1031
+ Published to npm: 2012-05-28 12:49 UTC by @jindw as `xmldom`
1032
+
1033
+ ## [0.1.5](https://github.com/xmldom/xmldom/compare/0.1.4...0.1.5)
1034
+
1035
+ Published to npm: 2012-05-25 17:43 UTC by @jindw as `xmldom`
1036
+
1037
+ ## [0.1.4](https://github.com/xmldom/xmldom/compare/0.1.3...0.1.4)
1038
+
1039
+ Published to npm: 2012-05-22 16:41 UTC by @jindw as `xmldom`
1040
+
1041
+ ## [0.1.3](https://github.com/xmldom/xmldom/compare/0.1.2...0.1.3)
1042
+
1043
+ Published to npm: 2012-05-22 16:39 UTC by @jindw as `xmldom`
1044
+
1045
+ ## [0.1.2](https://github.com/xmldom/xmldom/compare/0.1.1...0.1.2)
1046
+
1047
+ Published to npm: 2012-02-03 10:49 UTC by @jindw as `xmldom`
1048
+
1049
+ ## [0.1.1](https://github.com/xmldom/xmldom/compare/0.1.0...0.1.1)
1050
+
1051
+ Published to npm: 2012-01-10 07:18 UTC by @jindw as `xmldom`
1052
+
1053
+ ## [0.1.0](https://github.com/xmldom/xmldom/commit/5d770d4)
1054
+
1055
+ Published to npm: 2012-01-06 09:49 UTC by @jindw as `xmldom`