node-red-contrib-tak-registration 0.7.2 → 0.8.3

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.
Files changed (102) hide show
  1. package/README.md +3 -1
  2. package/node_modules/@types/node/README.md +1 -1
  3. package/node_modules/@types/node/child_process.d.ts +5 -0
  4. package/node_modules/@types/node/dgram.d.ts +5 -0
  5. package/node_modules/@types/node/events.d.ts +35 -0
  6. package/node_modules/@types/node/fs/promises.d.ts +5 -0
  7. package/node_modules/@types/node/fs.d.ts +43 -5
  8. package/node_modules/@types/node/globals.d.ts +22 -0
  9. package/node_modules/@types/node/index.d.ts +1 -1
  10. package/node_modules/@types/node/inspector.d.ts +1 -1
  11. package/node_modules/@types/node/module.d.ts +103 -0
  12. package/node_modules/@types/node/net.d.ts +5 -0
  13. package/node_modules/@types/node/package.json +2 -2
  14. package/node_modules/@types/node/stream.d.ts +143 -0
  15. package/node_modules/@types/node/test.d.ts +33 -4
  16. package/node_modules/@types/node/timers.d.ts +12 -2
  17. package/node_modules/@types/node/ts4.8/child_process.d.ts +5 -0
  18. package/node_modules/@types/node/ts4.8/dgram.d.ts +5 -0
  19. package/node_modules/@types/node/ts4.8/events.d.ts +35 -0
  20. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +5 -0
  21. package/node_modules/@types/node/ts4.8/fs.d.ts +43 -5
  22. package/node_modules/@types/node/ts4.8/globals.d.ts +22 -0
  23. package/node_modules/@types/node/ts4.8/inspector.d.ts +1 -1
  24. package/node_modules/@types/node/ts4.8/module.d.ts +103 -0
  25. package/node_modules/@types/node/ts4.8/net.d.ts +5 -0
  26. package/node_modules/@types/node/ts4.8/stream.d.ts +762 -728
  27. package/node_modules/@types/node/ts4.8/test.d.ts +97 -50
  28. package/node_modules/@types/node/ts4.8/timers.d.ts +12 -2
  29. package/node_modules/@types/node/ts4.8/vm.d.ts +2 -1
  30. package/node_modules/@types/node/vm.d.ts +2 -1
  31. package/node_modules/axios/CHANGELOG.md +23 -0
  32. package/node_modules/axios/README.md +33 -5
  33. package/node_modules/axios/dist/axios.js +26 -18
  34. package/node_modules/axios/dist/axios.js.map +1 -1
  35. package/node_modules/axios/dist/axios.min.js +1 -1
  36. package/node_modules/axios/dist/axios.min.js.map +1 -1
  37. package/node_modules/axios/dist/browser/axios.cjs +24 -20
  38. package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
  39. package/node_modules/axios/dist/esm/axios.js +26 -21
  40. package/node_modules/axios/dist/esm/axios.js.map +1 -1
  41. package/node_modules/axios/dist/esm/axios.min.js +1 -1
  42. package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
  43. package/node_modules/axios/dist/node/axios.cjs +27 -21
  44. package/node_modules/axios/dist/node/axios.cjs.map +1 -1
  45. package/node_modules/axios/index.d.cts +1 -0
  46. package/node_modules/axios/index.d.ts +3 -0
  47. package/node_modules/axios/index.js +2 -0
  48. package/node_modules/axios/lib/adapters/http.js +3 -1
  49. package/node_modules/axios/lib/axios.js +3 -0
  50. package/node_modules/axios/lib/core/Axios.js +2 -4
  51. package/node_modules/axios/lib/core/AxiosHeaders.js +11 -1
  52. package/node_modules/axios/lib/defaults/index.js +4 -11
  53. package/node_modules/axios/lib/env/data.js +1 -1
  54. package/node_modules/axios/lib/utils.js +3 -2
  55. package/node_modules/axios/package.json +3 -1
  56. package/node_modules/fast-xml-parser/CHANGELOG.md +561 -0
  57. package/node_modules/fast-xml-parser/README.md +134 -287
  58. package/node_modules/fast-xml-parser/package.json +17 -40
  59. package/node_modules/fast-xml-parser/{cli.js → src/cli/cli.js} +16 -24
  60. package/node_modules/fast-xml-parser/src/cli/man.js +12 -0
  61. package/node_modules/fast-xml-parser/src/fxp.d.ts +108 -0
  62. package/node_modules/fast-xml-parser/src/fxp.js +11 -0
  63. package/node_modules/fast-xml-parser/src/util.js +0 -36
  64. package/node_modules/fast-xml-parser/src/validator.js +15 -5
  65. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +269 -0
  66. package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +131 -0
  67. package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
  68. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +152 -0
  69. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
  70. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +589 -0
  71. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
  72. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
  73. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
  74. package/node_modules/protobufjs/dist/light/protobuf.js +24 -13
  75. package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
  76. package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
  77. package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
  78. package/node_modules/protobufjs/dist/minimal/protobuf.js +12 -7
  79. package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
  80. package/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
  81. package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
  82. package/node_modules/protobufjs/dist/protobuf.js +40 -18
  83. package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
  84. package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
  85. package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
  86. package/node_modules/protobufjs/package.json +1 -1
  87. package/node_modules/protobufjs/src/converter.js +2 -2
  88. package/node_modules/protobufjs/src/parse.js +4 -1
  89. package/node_modules/protobufjs/src/reader.js +8 -3
  90. package/node_modules/protobufjs/src/tokenize.js +2 -4
  91. package/package.json +4 -4
  92. package/tak-ingest.js +4 -3
  93. package/tak-registration.js +14 -5
  94. package/node_modules/fast-xml-parser/src/json2xml.js +0 -280
  95. package/node_modules/fast-xml-parser/src/nimndata.js +0 -144
  96. package/node_modules/fast-xml-parser/src/node2json.js +0 -42
  97. package/node_modules/fast-xml-parser/src/node2json_str.js +0 -63
  98. package/node_modules/fast-xml-parser/src/parser.d.ts +0 -79
  99. package/node_modules/fast-xml-parser/src/parser.js +0 -76
  100. package/node_modules/fast-xml-parser/src/xmlNode.js +0 -17
  101. package/node_modules/fast-xml-parser/src/xmlstr2xmlnode.js +0 -339
  102. /package/node_modules/fast-xml-parser/src/{read.js → cli/read.js} +0 -0
@@ -0,0 +1,561 @@
1
+ Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.
2
+
3
+ **4.2.7 / 2023-07-30**
4
+ * Fix: builder should set text node correctly when only textnode is present (#589) (By [qianqing](https://github.com/joneqian))
5
+ * Fix: Fix for null and undefined attributes when building xml (#585) (#598). A null or undefined value should be ignored. (By [Eugenio Ceschia](https://github.com/cecia234))
6
+
7
+ **4.2.6 / 2023-07-17**
8
+ * Fix: Remove trailing slash from jPath for self-closing tags (#595) (By [Maciej Radzikowski](https://github.com/m-radzikowski))
9
+
10
+ **4.2.5 / 2023-06-22**
11
+ * change code implementation
12
+
13
+ **4.2.4 / 2023-06-06**
14
+ * fix security bug
15
+
16
+ **4.2.3 / 2023-06-05**
17
+ * fix security bug
18
+
19
+ **4.2.2 / 2023-04-18**
20
+ * fix #562: fix unpaired tag when it comes in last of a nested tag. Also throw error when unpaired tag is used as closing tag
21
+
22
+ **4.2.1 / 2023-04-18**
23
+ * fix: jpath after unpaired tags
24
+
25
+ **4.2.0 / 2023-04-09**
26
+ * support `updateTag` parser property
27
+
28
+ **4.1.4 / 2023-04-08**
29
+ * update typings to let user create XMLBuilder instance without options (#556) (By [Patrick](https://github.com/omggga))
30
+ * fix: IsArray option isn't parsing tags with 0 as value correctly #490 (#557) (By [Aleksandr Murashkin](https://github.com/p-kuen))
31
+ * feature: support `oneListGroup` to group repeated children tags udder single group
32
+
33
+ **4.1.3 / 2023-02-26**
34
+ * fix #546: Support complex entity value
35
+
36
+ **4.1.2 / 2023-02-12**
37
+ * Security Fix
38
+
39
+ **4.1.1 / 2023-02-03**
40
+ * Fix #540: ignoreAttributes breaks unpairedTags
41
+ * Refactor XML builder code
42
+
43
+ **4.1.0 / 2023-02-02**
44
+ * Fix '<' or '>' in DTD comment throwing an error. (#533) (By [Adam Baker](https://github.com/Cwazywierdo))
45
+ * Set "eNotation" to 'true' as default
46
+
47
+ **4.0.15 / 2023-01-25**
48
+ * make "eNotation" optional
49
+
50
+ **4.0.14 / 2023-01-22**
51
+ * fixed: add missed typing "eNotation" to parse values
52
+
53
+ **4.0.13 / 2023-01-07**
54
+ * preserveorder formatting (By [mdeknowis](https://github.com/mdeknowis))
55
+ * support `transformAttributeName` (By [Erik Rothoff Andersson](https://github.com/erkie))
56
+
57
+ **4.0.12 / 2022-11-19**
58
+ * fix typescript
59
+
60
+ **4.0.11 / 2022-10-05**
61
+ * fix #501: parse for entities only once
62
+
63
+ **4.0.10 / 2022-09-14**
64
+ * fix broken links in demo site (By [Yannick Lang](https://github.com/layaxx))
65
+ * fix #491: tagValueProcessor type definition (By [Andrea Francesco Speziale](https://github.com/andreafspeziale))
66
+ * Add jsdocs for tagValueProcessor
67
+
68
+
69
+ **4.0.9 / 2022-07-10**
70
+ * fix #470: stop-tag can have self-closing tag with same name
71
+ * fix #472: stopNode can have any special tag inside
72
+ * Allow !ATTLIST and !NOTATION with DOCTYPE
73
+ * Add transformTagName option to transform tag names when parsing (#469) (By [Erik Rothoff Andersson](https://github.com/erkie))
74
+
75
+ **4.0.8 / 2022-05-28**
76
+ * Fix CDATA parsing returning empty string when value = 0 (#451) (By [ndelanou](https://github.com/ndelanou))
77
+ * Fix stopNodes when same tag appears inside node (#456) (By [patrickshipe](https://github.com/patrickshipe))
78
+ * fix #468: prettify own properties only
79
+
80
+ **4.0.7 / 2022-03-18**
81
+ * support CDATA even if tag order is not preserved
82
+ * support Comments even if tag order is not preserved
83
+ * fix #446: XMLbuilder should not indent XML declaration
84
+
85
+ **4.0.6 / 2022-03-08**
86
+ * fix: call tagValueProcessor only once for array items
87
+ * fix: missing changed for #437
88
+
89
+ **4.0.5 / 2022-03-06**
90
+ * fix #437: call tagValueProcessor from XML builder
91
+
92
+ **4.0.4 / 2022-03-03**
93
+ * fix #435: should skip unpaired and self-closing nodes when set as stopnodes
94
+
95
+ **4.0.3 / 2022-02-15**
96
+ * fix: ReferenceError when Bundled with Strict (#431) (By [Andreas Heissenberger](https://github.com/aheissenberger))
97
+
98
+
99
+ **4.0.2 / 2022-02-04**
100
+ * builder supports `suppressUnpairedNode`
101
+ * parser supports `ignoreDeclaration` and `ignorePiTags`
102
+ * fix: when comment is parsed as text value if given as `<!--> ...` #423
103
+ * builder supports decoding `&`
104
+
105
+ **4.0.1 / 2022-01-08**
106
+ * fix builder for pi tag
107
+ * fix: support suppressBooleanAttrs by builder
108
+
109
+ **4.0.0 / 2022-01-06**
110
+ * Generating different combined, parser only, builder only, validator only browser bundles
111
+ * Keeping cjs modules as they can be imported in cjs and esm modules both. Otherwise refer `esm` branch.
112
+
113
+ **4.0.0-beta.8 / 2021-12-13**
114
+ * call tagValueProcessor for stop nodes
115
+
116
+ **4.0.0-beta.7 / 2021-12-09**
117
+ * fix Validator bug when an attribute has no value but '=' only
118
+ * XML Builder should suppress unpaired tags by default.
119
+ * documents update for missing features
120
+ * refactoring to use Object.assign
121
+ * refactoring to remove repeated code
122
+
123
+ **4.0.0-beta.6 / 2021-12-05**
124
+ * Support PI Tags processing
125
+ * Support `suppressBooleanAttributes` by XML Builder for attributes with value `true`.
126
+
127
+ **4.0.0-beta.5 / 2021-12-04**
128
+ * fix: when a tag with name "attributes"
129
+
130
+ **4.0.0-beta.4 / 2021-12-02**
131
+ * Support HTML document parsing
132
+ * skip stop nodes parsing when building the XML from JS object
133
+ * Support external entites without DOCTYPE
134
+ * update dev dependency: strnum v1.0.5 to fix long number issue
135
+
136
+ **4.0.0-beta.3 / 2021-11-30**
137
+ * support global stopNodes expression like "*.stop"
138
+ * support self-closing and paired unpaired tags
139
+ * fix: CDATA should not be parsed.
140
+ * Fix typings for XMLBuilder (#396)(By [Anders Emil Salvesen](https://github.com/andersem))
141
+ * supports XML entities, HTML entities, DOCTYPE entities
142
+
143
+ **⚠️ 4.0.0-beta.2 / 2021-11-19**
144
+ * rename `attrMap` to `attibutes` in parser output when `preserveOrder:true`
145
+ * supports unpairedTags
146
+
147
+ **⚠️ 4.0.0-beta.1 / 2021-11-18**
148
+ * Parser returns an array now
149
+ * to make the structure common
150
+ * and to return root level detail
151
+ * renamed `cdataTagName` to `cdataPropName`
152
+ * Added `commentPropName`
153
+ * fix typings
154
+
155
+ **⚠️ 4.0.0-beta.0 / 2021-11-16**
156
+ * Name change of many configuration properties.
157
+ * `attrNodeName` to `attributesGroupName`
158
+ * `attrValueProcessor` to `attributeValueProcessor`
159
+ * `parseNodeValue` to `parseTagValue`
160
+ * `ignoreNameSpace` to `removeNSPrefix`
161
+ * `numParseOptions` to `numberParseOptions`
162
+ * spelling correction for `suppressEmptyNode`
163
+ * Name change of cli and browser bundle to **fxparser**
164
+ * `isArray` option is added to parse a tag into array
165
+ * `preserveOrder` option is added to render XML in such a way that the result js Object maintains the order of properties same as in XML.
166
+ * Processing behaviour of `tagValueProcessor` and `attributeValueProcessor` are changes with extra input parameters
167
+ * j2xparser is renamed to XMLBuilder.
168
+ * You need to build XML parser instance for given options first before parsing XML.
169
+ * fix #327, #336: throw error when extra text after XML content
170
+ * fix #330: attribute value can have '\n',
171
+ * fix #350: attrbiutes can be separated by '\n' from tagname
172
+
173
+ 3.21.1 / 2021-10-31
174
+ * Correctly format JSON elements with a text prop but no attribute props ( By [haddadnj](https://github.com/haddadnj) )
175
+
176
+ 3.21.0 / 2021-10-25
177
+ * feat: added option `rootNodeName` to set tag name for array input when converting js object to XML.
178
+ * feat: added option `alwaysCreateTextNode` to force text node creation (by: *@massimo-ua*)
179
+ * ⚠️ feat: Better error location for unclosed tags. (by *@Gei0r*)
180
+ * Some error messages would be changed when validating XML. Eg
181
+ * `{ InvalidXml: "Invalid '[ \"rootNode\"]' found." }` → `{InvalidTag: "Unclosed tag 'rootNode'."}`
182
+ * `{ InvalidTag: "Closing tag 'rootNode' is expected inplace of 'rootnode'." }` → `{ InvalidTag: "Expected closing tag 'rootNode' (opened in line 1) instead of closing tag 'rootnode'."}`
183
+ * ⚠️ feat: Column in error response when validating XML
184
+ ```js
185
+ {
186
+ "code": "InvalidAttr",
187
+ "msg": "Attribute 'abc' is repeated.",
188
+ "line": 1,
189
+ "col": 22
190
+ }
191
+ ```
192
+
193
+ 3.20.1 / 2021-09-25
194
+ * update strnum package
195
+
196
+ 3.20.0 / 2021-09-10
197
+ * Use strnum npm package to parse string to number
198
+ * breaking change: long number will be parsed to scientific notation.
199
+
200
+ 3.19.0 / 2021-03-14
201
+ * License changed to MIT original
202
+ * Fix #321 : namespace tag parsing
203
+
204
+ 3.18.0 / 2021-02-05
205
+ * Support RegEx and function in arrayMode option
206
+ * Fix #317 : validate nested PI tags
207
+
208
+ 3.17.4 / 2020-06-07
209
+ * Refactor some code to support IE11
210
+ * Fix: `<tag >` space as attribute string
211
+
212
+ 3.17.3 / 2020-05-23
213
+ * Fix: tag name separated by \n \t
214
+ * Fix: throw error for unclosed tags
215
+
216
+ 3.17.2 / 2020-05-23
217
+ * Fixed an issue in processing doctype tag
218
+ * Fixed tagName where it should not have whitespace chars
219
+
220
+ 3.17.1 / 2020-05-19
221
+ * Fixed an issue in checking opening tag
222
+
223
+ 3.17.0 / 2020-05-18
224
+ * parser: fix '<' issue when it comes in aatr value
225
+ * parser: refactoring to remove dependency from regex
226
+ * validator: fix IE 11 issue for error messages
227
+ * updated dev dependencies
228
+ * separated benchmark module to sub-module
229
+ * breaking change: comments will not be removed from CDATA data
230
+
231
+ 3.16.0 / 2020-01-12
232
+ * validaor: fix for ampersand characters (#215)
233
+ * refactoring to support unicode chars in tag name
234
+ * update typing for validator error
235
+
236
+ 3.15.1 / 2019-12-09
237
+ * validaor: fix multiple roots are not allowed
238
+
239
+ 3.15.0 / 2019-11-23
240
+ * validaor: improve error messaging
241
+ * validator: add line number in case of error
242
+ * validator: add more error scenarios to make it more descriptive
243
+
244
+ 3.14.0 / 2019-10-25
245
+ * arrayMode for XML to JS obj parsing
246
+
247
+ 3.13.0 / 2019-10-02
248
+ * pass tag/attr name to tag/attr value processor
249
+ * inbuilt optional validation with XML parser
250
+
251
+ 3.12.21 / 2019-10-02
252
+ * Fix validator for unclosed XMLs
253
+ * move nimnjs dependency to dev dependency
254
+ * update dependencies
255
+
256
+ 3.12.20 / 2019-08-16
257
+ * Revert: Fix #167: '>' in attribute value as it is causing high performance degrade.
258
+
259
+ 3.12.19 / 2019-07-28
260
+ * Fix js to xml parser should work for date values. (broken: `tagValueProcessor` will receive the original value instead of string always) (breaking change)
261
+
262
+ 3.12.18 / 2019-07-27
263
+ * remove configstore dependency
264
+
265
+ 3.12.17 / 2019-07-14
266
+ * Fix #167: '>' in attribute value
267
+
268
+ 3.12.16 / 2019-03-23
269
+ * Support a new option "stopNodes". (#150)
270
+ Accept the list of tags which are not required to be parsed. Instead, all the nested tag and data will be assigned as string.
271
+ * Don't show post-install message
272
+
273
+ 3.12.12 / 2019-01-11
274
+ * fix : IE parseInt, parseFloat error
275
+
276
+ 3.12.11 / 2018-12-24
277
+ * fix #132: "/" should not be parsed as boolean attr in case of self closing tags
278
+
279
+ 3.12.9 / 2018-11-23
280
+ * fix #129 : validator should not fail when an atrribute name is 'length'
281
+
282
+ 3.12.8 / 2018-11-22
283
+ * fix #128 : use 'attrValueProcessor' to process attribute value in json2xml parser
284
+
285
+ 3.12.6 / 2018-11-10
286
+ * Fix #126: check for type
287
+
288
+ 3.12.4 / 2018-09-12
289
+ * Fix: include tasks in npm package
290
+
291
+ 3.12.3 / 2018-09-12
292
+ * Fix CLI issue raised in last PR
293
+
294
+ 3.12.2 / 2018-09-11
295
+ * Fix formatting for JSON to XML output
296
+ * Migrate to webpack (PR merged)
297
+ * fix cli (PR merged)
298
+
299
+ 3.12.0 / 2018-08-06
300
+ * Support hexadecimal values
301
+ * Support true number parsing
302
+
303
+ 3.11.2 / 2018-07-23
304
+ * Update Demo for more options
305
+ * Update license information
306
+ * Update readme for formatting, users, and spelling mistakes
307
+ * Add missing typescript definition for j2xParser
308
+ * refactoring: change filenames
309
+
310
+ 3.11.1 / 2018-06-05
311
+ * fix #93: read the text after self closing tag
312
+
313
+ 3.11.0 / 2018-05-20
314
+ * return defaultOptions if there are not options in buildOptions function
315
+ * added localeRange declaration in parser.d.ts
316
+ * Added support of cyrillic characters in validator XML
317
+ * fixed bug in validator work when XML data with byte order marker
318
+
319
+ 3.10.0 / 2018-05-13
320
+ * Added support of cyrillic characters in parsing XML to JSON
321
+
322
+ 3.9.11 / 2018-05-09
323
+ * fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/80 fix nimn chars
324
+ * update package information
325
+ * fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/86: json 2 xml parser : property with null value should be parsed to self closing tag.
326
+ * update online demo
327
+ * revert zombiejs to old version to support old version of node
328
+ * update dependencies
329
+
330
+ 3.3.10 / 2018-04-23
331
+ * fix #77 : parse even if closing tag has space before '>'
332
+ * include all css & js lib in demo app
333
+ * remove babel dependencies until needed
334
+
335
+ 3.3.9 / 2018-04-18
336
+ * fix #74 : TS2314 TypeScript compiler error
337
+
338
+ 3.3.8 / 2018-04-17
339
+ * fix #73 : IE doesn't support Object.assign
340
+
341
+ 3.3.7 / 2018-04-14
342
+ * fix: use let insted of const in for loop of validator
343
+ * Merge pull request
344
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/71 from bb/master
345
+ first draft of typings for typescript
346
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/69
347
+ * Merge pull request
348
+ https://github.com/NaturalIntelligence/fast-xml-parser/issues/70 from bb/patch-1
349
+ fix some typos in readme
350
+
351
+ 3.3.6 / 2018-03-21
352
+ * change arrow functions to full notation for IE compatibility
353
+
354
+ 3.3.5 / 2018-03-15
355
+ * fix https://github.com/NaturalIntelligence/fast-xml-parser/issues/67 : attrNodeName invalid behavior
356
+ * fix: remove decodeHTML char condition
357
+
358
+ 3.3.4 / 2018-03-14
359
+ * remove dependency on "he" package
360
+ * refactor code to separate methods in separate files.
361
+ * draft code for transforming XML to json string. It is not officially documented due to performance issue.
362
+
363
+ 3.3.0 / 2018-03-05
364
+ * use common default options for XML parsing for consistency. And add `parseToNimn` method.
365
+ * update nexttodo
366
+ * update README about XML to Nimn transformation and remove special notes about 3.x release
367
+ * update CONTRIBUTING.ms mentioning nexttodo
368
+ * add negative case for XML PIs
369
+ * validate xml processing instruction tags https://github.com/NaturalIntelligence/fast-xml-parser/issues/62
370
+ * nimndata: handle array with object
371
+ * nimndata: node with nested node and text node
372
+ * nimndata: handle attributes and text node
373
+ * nimndata: add options, handle array
374
+ * add xml to nimn data converter
375
+ * x2j: direct access property with tagname
376
+ * update changelog
377
+ * fix validator when single quote presents in value enclosed with double quotes or vice versa
378
+ * Revert "remove unneded nimnjs dependency, move opencollective to devDependencies and replace it
379
+ with more light opencollective-postinstall"
380
+ This reverts commit d47aa7181075d82db4fee97fd8ea32b056fe3f46.
381
+ * Merge pull request: https://github.com/NaturalIntelligence/fast-xml-parser/issues/63 from HaroldPutman/suppress-undefined
382
+ Keep undefined nodes out of the XML output : This is useful when you are deleting nodes from the JSON and rewriting XML.
383
+
384
+ 3.2.4 / 2018-03-01
385
+ * fix #59 fix in validator when open quote presents in attribute value
386
+ * Create nexttodo.md
387
+ * exclude static from bitHound tests
388
+ * add package lock
389
+
390
+ 3.2.3 / 2018-02-28
391
+ * Merge pull request from Delagen/master: fix namespaces can contain the same characters as xml names
392
+
393
+ 3.2.2 / 2018-02-22
394
+ * fix: attribute xmlns should not be removed if ignoreNameSpace is false
395
+ * create CONTRIBUTING.md
396
+
397
+ 3.2.1 / 2018-02-17
398
+ * fix: empty attribute should be parsed
399
+
400
+ 3.2.0 / 2018-02-16
401
+ * Merge pull request : Dev to Master
402
+ * Update README and version
403
+ * j2x:add performance test
404
+ * j2x: Remove extra empty line before closing tag
405
+ * j2x: suppress empty nodes to self closing node if configured
406
+ * j2x: provide option to give indentation depth
407
+ * j2x: make optional formatting
408
+ * j2x: encodeHTMLchat
409
+ * j2x: handle cdata tag
410
+ * j2x: handle grouped attributes
411
+ * convert json to xml
412
+ - nested object
413
+ - array
414
+ - attributes
415
+ - text value
416
+ * small refactoring
417
+ * Merge pull request: Update cli.js to let user validate XML file or data
418
+ * Add option for rendering CDATA as separate property
419
+
420
+ 3.0.1 / 2018-02-09
421
+ * fix CRLF: replace it with single space in attributes value only.
422
+
423
+ 3.0.0 / 2018-02-08
424
+ * change online tool with new changes
425
+ * update info about new options
426
+ * separate tag value processing to separate function
427
+ * make HTML decoding optional
428
+ * give an option to allow boolean attributes
429
+ * change cli options as per v3
430
+ * Correct comparison table format on README
431
+ * update v3 information
432
+ * some performance improvement changes
433
+ * Make regex object local to the method and move some common methods to util
434
+ * Change parser to
435
+ - handle multiple instances of CDATA
436
+ - make triming of value optionals
437
+ - HTML decode attribute and text value
438
+ - refactor code to separate files
439
+ * Ignore newline chars without RE (in validator)
440
+ * validate for XML prolog
441
+ * Validate DOCTYPE without RE
442
+ * Update validator to return error response
443
+ * Update README to add detail about V3
444
+ * Separate xmlNode model class
445
+ * include vscode debug config
446
+ * fix for repeated object
447
+ * fix attribute regex for boolean attributes
448
+ * Fix validator for invalid attributes
449
+ 2.9.4 / 2018-02-02
450
+ * Merge pull request: Decode HTML characters
451
+ * refactor source folder name
452
+ * ignore bundle / browser js to be published to npm
453
+ 2.9.3 / 2018-01-26
454
+ * Merge pull request: Correctly remove CRLF line breaks
455
+ * Enable to parse attribute in online editor
456
+ * Fix testing demo app test
457
+ * Describe parsing options
458
+ * Add options for online demo
459
+ 2.9.2 / 2018-01-18
460
+ * Remove check if tag starting with "XML"
461
+ * Fix: when there are spaces before / after CDATA
462
+
463
+ 2.9.1 / 2018-01-16
464
+ * Fix: newline should be replaced with single space
465
+ * Fix: for single and multiline comments
466
+ * validate xml with CDATA
467
+ * Fix: the issue when there is no space between 2 attributes
468
+ * Fix: https://github.com/NaturalIntelligence/fast-xml-parser/issues/33: when there is newline char in attr val, it doesn't parse
469
+ * Merge pull request: fix ignoreNamespace
470
+ * fix: don't wrap attributes if only namespace attrs
471
+ * fix: use portfinder for run tests, update deps
472
+ * fix: don't treat namespaces as attributes when ignoreNamespace enabled
473
+
474
+ 2.9.0 / 2018-01-10
475
+ * Rewrite the validator to handle large files.
476
+ Ignore DOCTYPE validation.
477
+ * Fix: When attribute value has equal sign
478
+
479
+ 2.8.3 / 2017-12-15
480
+ * Fix: when a tag has value along with subtags
481
+
482
+ 2.8.2 / 2017-12-04
483
+ * Fix value parsing for IE
484
+
485
+ 2.8.1 / 2017-12-01
486
+ * fix: validator should return false instead of err when invalid XML
487
+
488
+ 2.8.0 / 2017-11-29
489
+ * Add CLI option to ignore value conversion
490
+ * Fix variable name when filename is given on CLI
491
+ * Update CLI help text
492
+ * Merge pull request: xml2js: Accept standard input
493
+ * Test Node 8
494
+ * Update dependencies
495
+ * Bundle readToEnd
496
+ * Add ability to read from standard input
497
+
498
+ 2.7.4 / 2017-09-22
499
+ * Merge pull request: Allow wrap attributes with subobject to compatible with other parsers output
500
+
501
+ 2.7.3 / 2017-08-02
502
+ * fix: handle CDATA with regx
503
+
504
+ 2.7.2 / 2017-07-30
505
+ * Change travis config for yarn caching
506
+ * fix validator: when tag property is same as array property
507
+ * Merge pull request: Failing test case in validator for valid SVG
508
+
509
+ 2.7.1 / 2017-07-26
510
+ * Fix: Handle val 0
511
+
512
+ 2.7.0 / 2017-07-25
513
+ * Fix test for arrayMode
514
+ * Merge pull request: Add arrayMode option to parse any nodes as arrays
515
+
516
+ 2.6.0 / 2017-07-14
517
+ * code improvement
518
+ * Add unit tests for value conversion for attr
519
+ * 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.
520
+
521
+ 2.5.1 / 2017-07-01
522
+ * Fix XML element name pattern
523
+ * Fix XML element name pattern while parsing
524
+ * Fix validation for xml tag element
525
+
526
+ 2.5.0 / 2017-06-25
527
+ * Improve Validator performance
528
+ * update attr matching regex
529
+ * Add perf tests
530
+ * Improve atrr regex to handle all cases
531
+
532
+ 2.4.4 / 2017-06-08
533
+ * Bug fix: when an attribute has single or double quote in value
534
+
535
+ 2.4.3 / 2017-06-05
536
+ * Bug fix: when multiple CDATA tags are given
537
+ * Merge pull request: add option "textNodeConversion"
538
+ * add option "textNodeConversion"
539
+
540
+ 2.4.1 / 2017-04-14
541
+ * fix tests
542
+ * Bug fix: preserve initial space of node value
543
+ * Handle CDATA
544
+
545
+ 2.3.1 / 2017-03-15
546
+ * Bug fix: when single self closing tag
547
+ * Merge pull request: fix .codeclimate.yml
548
+ * Update .codeclimate.yml - Fixed config so it does not error anymore.
549
+ * Update .codeclimate.yml
550
+
551
+ 2.3.0 / 2017-02-26
552
+ * Code improvement
553
+ * add bithound config
554
+ * Update usage
555
+ * Update travis to generate bundle js before running tests
556
+ * 1.Browserify, 2. add more tests for validator
557
+ * Add validator
558
+ * Fix CLI default parameter bug
559
+
560
+ 2.2.1 / 2017-02-05
561
+ * Bug fix: CLI default option