Skip to content

Commit 7168000

Browse files
committed
Add changelog and bump the version
1 parent 6d1e8df commit 7168000

File tree

2 files changed

+104
-1
lines changed

2 files changed

+104
-1
lines changed

CHANGELOG.md

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
2.9.2 / 2018-01-18
2+
* Remove check if tag starting with "XML"
3+
* Fix: when there are spaces before / after CDATA
4+
5+
2.9.1 / 2018-01-16
6+
* Fix: newline should be replaced with single space
7+
* Fix: for single and multiline comments
8+
* validate xml with CDATA
9+
* Fix: the issue when there is no space between 2 attributes
10+
* Fix: https://github.com/NaturalIntelligence/fast-xml-parser/issues/33: when there is newline char in attr val, it doesn't parse
11+
* Merge pull request: fix ignoreNamespace
12+
* fix: don't wrap attributes if only namespace attrs
13+
* fix: use portfinder for run tests, update deps
14+
* fix: don't treat namespaces as attributes when ignoreNamespace enabled
15+
16+
2.9.0 / 2018-01-10
17+
* Rewrite the validator to handle large files.
18+
Ignore DOCTYPE validation.
19+
* Fix: When attribute value has equal sign
20+
21+
2.8.3 / 2017-12-15
22+
* Fix: when a tag has value along with subtags
23+
24+
2.8.2 / 2017-12-04
25+
* Fix value parsing for IE
26+
27+
2.8.1 / 2017-12-01
28+
* fix: validator should return false instead of err when invalid XML
29+
30+
2.8.0 / 2017-11-29
31+
* Add CLI option to ignore value conversion
32+
* Fix variable name when filename is given on CLI
33+
* Update CLI help text
34+
* Merge pull request: xml2js: Accept standard input
35+
* Test Node 8
36+
* Update dependencies
37+
* Bundle readToEnd
38+
* Add ability to read from standard input
39+
40+
2.7.4 / 2017-09-22
41+
* Merge pull request: Allow wrap attributes with subobject to compatible with other parsers output
42+
43+
2.7.3 / 2017-08-02
44+
* fix: handle CDATA with regx
45+
46+
2.7.2 / 2017-07-30
47+
* Change travis config for yarn caching
48+
* fix validator: when tag property is same as array property
49+
* Merge pull request: Failing test case in validator for valid SVG
50+
51+
2.7.1 / 2017-07-26
52+
* Fix: Handle val 0
53+
54+
2.7.0 / 2017-07-25
55+
* Fix test for arrayMode
56+
* Merge pull request: Add arrayMode option to parse any nodes as arrays
57+
58+
2.6.0 / 2017-07-14
59+
* code improvement
60+
* Add unit tests for value conversion for attr
61+
* Merge pull request: option of an attribute value conversion to a number (textAttrConversion) the same way as the textNodeConversion option does. Default value is false.
62+
63+
2.5.1 / 2017-07-01
64+
* Fix XML element name pattern
65+
* Fix XML element name pattern while parsing
66+
* Fix validation for xml tag element
67+
68+
2.5.0 / 2017-06-25
69+
* Improve Validator performance
70+
* update attr matching regex
71+
* Add perf tests
72+
* Improve atrr regex to handle all cases
73+
74+
2.4.4 / 2017-06-08
75+
* Bug fix: when an attribute has single or double quote in value
76+
77+
2.4.3 / 2017-06-05
78+
* Bug fix: when multiple CDATA tags are given
79+
* Merge pull request: add option "textNodeConversion"
80+
* add option "textNodeConversion"
81+
82+
2.4.1 / 2017-04-14
83+
* fix tests
84+
* Bug fix: preserve initial space of node value
85+
* Handle CDATA
86+
87+
2.3.1 / 2017-03-15
88+
* Bug fix: when single self closing tag
89+
* Merge pull request: fix .codeclimate.yml
90+
* Update .codeclimate.yml - Fixed config so it does not error anymore.
91+
* Update .codeclimate.yml
92+
93+
2.3.0 / 2017-02-26
94+
* Code improvement
95+
* add bithound config
96+
* Update usage
97+
* Update travis to generate bundle js before running tests
98+
* 1.Browserify, 2. add more tests for validator
99+
* Add validator
100+
* Fix CLI default parameter bug
101+
102+
2.2.1 / 2017-02-05
103+
* Bug fix: CLI default option

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fast-xml-parser",
3-
"version": "2.9.2",
3+
"version": "2.9.3",
44
"description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",
55
"main": "./bin/parser.js",
66
"scripts": {

0 commit comments

Comments
 (0)