Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. ## **6.7.0**
  2. - [New] `stringify`/`parse`: add `comma` as an `arrayFormat` option (#276, #219)
  3. - [Fix] correctly parse nested arrays (#212)
  4. - [Fix] `utils.merge`: avoid a crash with a null target and a truthy non-array source, also with an array source
  5. - [Robustness] `stringify`: cache `Object.prototype.hasOwnProperty`
  6. - [Refactor] `utils`: `isBuffer`: small tweak; add tests
  7. - [Refactor] use cached `Array.isArray`
  8. - [Refactor] `parse`/`stringify`: make a function to normalize the options
  9. - [Refactor] `utils`: reduce observable [[Get]]s
  10. - [Refactor] `stringify`/`utils`: cache `Array.isArray`
  11. - [Tests] always use `String(x)` over `x.toString()`
  12. - [Tests] fix Buffer tests to work in node < 4.5 and node < 5.10
  13. - [Tests] temporarily allow coverage to fail
  14. ## **6.6.0**
  15. - [New] Add support for iso-8859-1, utf8 "sentinel" and numeric entities (#268)
  16. - [New] move two-value combine to a `utils` function (#189)
  17. - [Fix] `stringify`: fix a crash with `strictNullHandling` and a custom `filter`/`serializeDate` (#279)
  18. - [Fix] when `parseArrays` is false, properly handle keys ending in `[]` (#260)
  19. - [Fix] `stringify`: do not crash in an obscure combo of `interpretNumericEntities`, a bad custom `decoder`, & `iso-8859-1`
  20. - [Fix] `utils`: `merge`: fix crash when `source` is a truthy primitive & no options are provided
  21. - [refactor] `stringify`: Avoid arr = arr.concat(...), push to the existing instance (#269)
  22. - [Refactor] `parse`: only need to reassign the var once
  23. - [Refactor] `parse`/`stringify`: clean up `charset` options checking; fix defaults
  24. - [Refactor] add missing defaults
  25. - [Refactor] `parse`: one less `concat` call
  26. - [Refactor] `utils`: `compactQueue`: make it explicitly side-effecting
  27. - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`, `iconv-lite`, `safe-publish-latest`, `tape`
  28. - [Tests] up to `node` `v10.10`, `v9.11`, `v8.12`, `v6.14`, `v4.9`; pin included builds to LTS
  29. ## **6.5.2**
  30. - [Fix] use `safer-buffer` instead of `Buffer` constructor
  31. - [Refactor] utils: `module.exports` one thing, instead of mutating `exports` (#230)
  32. - [Dev Deps] update `browserify`, `eslint`, `iconv-lite`, `safer-buffer`, `tape`, `browserify`
  33. ## **6.5.1**
  34. - [Fix] Fix parsing & compacting very deep objects (#224)
  35. - [Refactor] name utils functions
  36. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`
  37. - [Tests] up to `node` `v8.4`; use `nvm install-latest-npm` so newer npm doesn’t break older node
  38. - [Tests] Use precise dist for Node.js 0.6 runtime (#225)
  39. - [Tests] make 0.6 required, now that it’s passing
  40. - [Tests] on `node` `v8.2`; fix npm on node 0.6
  41. ## **6.5.0**
  42. - [New] add `utils.assign`
  43. - [New] pass default encoder/decoder to custom encoder/decoder functions (#206)
  44. - [New] `parse`/`stringify`: add `ignoreQueryPrefix`/`addQueryPrefix` options, respectively (#213)
  45. - [Fix] Handle stringifying empty objects with addQueryPrefix (#217)
  46. - [Fix] do not mutate `options` argument (#207)
  47. - [Refactor] `parse`: cache index to reuse in else statement (#182)
  48. - [Docs] add various badges to readme (#208)
  49. - [Dev Deps] update `eslint`, `browserify`, `iconv-lite`, `tape`
  50. - [Tests] up to `node` `v8.1`, `v7.10`, `v6.11`; npm v4.6 breaks on node < v1; npm v5+ breaks on node < v4
  51. - [Tests] add `editorconfig-tools`
  52. ## **6.4.0**
  53. - [New] `qs.stringify`: add `encodeValuesOnly` option
  54. - [Fix] follow `allowPrototypes` option during merge (#201, #201)
  55. - [Fix] support keys starting with brackets (#202, #200)
  56. - [Fix] chmod a-x
  57. - [Dev Deps] update `eslint`
  58. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  59. - [eslint] reduce warnings
  60. ## **6.3.2**
  61. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  62. - [Dev Deps] update `eslint`
  63. - [Fix] chmod a-x
  64. - [Fix] support keys starting with brackets (#202, #200)
  65. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  66. ## **6.3.1**
  67. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties (thanks, @snyk!)
  68. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `iconv-lite`, `qs-iconv`, `tape`
  69. - [Tests] on all node minors; improve test matrix
  70. - [Docs] document stringify option `allowDots` (#195)
  71. - [Docs] add empty object and array values example (#195)
  72. - [Docs] Fix minor inconsistency/typo (#192)
  73. - [Docs] document stringify option `sort` (#191)
  74. - [Refactor] `stringify`: throw faster with an invalid encoder
  75. - [Refactor] remove unnecessary escapes (#184)
  76. - Remove contributing.md, since `qs` is no longer part of `hapi` (#183)
  77. ## **6.3.0**
  78. - [New] Add support for RFC 1738 (#174, #173)
  79. - [New] `stringify`: Add `serializeDate` option to customize Date serialization (#159)
  80. - [Fix] ensure `utils.merge` handles merging two arrays
  81. - [Refactor] only constructors should be capitalized
  82. - [Refactor] capitalized var names are for constructors only
  83. - [Refactor] avoid using a sparse array
  84. - [Robustness] `formats`: cache `String#replace`
  85. - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`; add `safe-publish-latest`
  86. - [Tests] up to `node` `v6.8`, `v4.6`; improve test matrix
  87. - [Tests] flesh out arrayLimit/arrayFormat tests (#107)
  88. - [Tests] skip Object.create tests when null objects are not available
  89. - [Tests] Turn on eslint for test files (#175)
  90. ## **6.2.3**
  91. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  92. - [Fix] chmod a-x
  93. - [Fix] support keys starting with brackets (#202, #200)
  94. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  95. ## **6.2.2**
  96. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  97. ## **6.2.1**
  98. - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
  99. - [Refactor] Be explicit and use `Object.prototype.hasOwnProperty.call`
  100. - [Tests] remove `parallelshell` since it does not reliably report failures
  101. - [Tests] up to `node` `v6.3`, `v5.12`
  102. - [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `qs-iconv`
  103. ## [**6.2.0**](https://github.com/ljharb/qs/issues?milestone=36&state=closed)
  104. - [New] pass Buffers to the encoder/decoder directly (#161)
  105. - [New] add "encoder" and "decoder" options, for custom param encoding/decoding (#160)
  106. - [Fix] fix compacting of nested sparse arrays (#150)
  107. ## **6.1.2
  108. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  109. - [Fix] chmod a-x
  110. - [Fix] support keys starting with brackets (#202, #200)
  111. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  112. ## **6.1.1**
  113. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  114. ## [**6.1.0**](https://github.com/ljharb/qs/issues?milestone=35&state=closed)
  115. - [New] allowDots option for `stringify` (#151)
  116. - [Fix] "sort" option should work at a depth of 3 or more (#151)
  117. - [Fix] Restore `dist` directory; will be removed in v7 (#148)
  118. ## **6.0.4**
  119. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  120. - [Fix] chmod a-x
  121. - [Fix] support keys starting with brackets (#202, #200)
  122. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  123. ## **6.0.3**
  124. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  125. - [Fix] Restore `dist` directory; will be removed in v7 (#148)
  126. ## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed)
  127. - Revert ES6 requirement and restore support for node down to v0.8.
  128. ## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed)
  129. - [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json
  130. ## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed)
  131. - [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4
  132. ## **5.2.1**
  133. - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
  134. ## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed)
  135. - [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string
  136. ## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed)
  137. - [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional
  138. - [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify
  139. ## [**5.0.0**](https://github.com/ljharb/qs/issues?milestone=28&state=closed)
  140. - [**#114**](https://github.com/ljharb/qs/issues/114) default allowDots to false
  141. - [**#100**](https://github.com/ljharb/qs/issues/100) include dist to npm
  142. ## [**4.0.0**](https://github.com/ljharb/qs/issues?milestone=26&state=closed)
  143. - [**#98**](https://github.com/ljharb/qs/issues/98) make returning plain objects and allowing prototype overwriting properties optional
  144. ## [**3.1.0**](https://github.com/ljharb/qs/issues?milestone=24&state=closed)
  145. - [**#89**](https://github.com/ljharb/qs/issues/89) Add option to disable "Transform dot notation to bracket notation"
  146. ## [**3.0.0**](https://github.com/ljharb/qs/issues?milestone=23&state=closed)
  147. - [**#80**](https://github.com/ljharb/qs/issues/80) qs.parse silently drops properties
  148. - [**#77**](https://github.com/ljharb/qs/issues/77) Perf boost
  149. - [**#60**](https://github.com/ljharb/qs/issues/60) Add explicit option to disable array parsing
  150. - [**#74**](https://github.com/ljharb/qs/issues/74) Bad parse when turning array into object
  151. - [**#81**](https://github.com/ljharb/qs/issues/81) Add a `filter` option
  152. - [**#68**](https://github.com/ljharb/qs/issues/68) Fixed issue with recursion and passing strings into objects.
  153. - [**#66**](https://github.com/ljharb/qs/issues/66) Add mixed array and object dot notation support Closes: #47
  154. - [**#76**](https://github.com/ljharb/qs/issues/76) RFC 3986
  155. - [**#85**](https://github.com/ljharb/qs/issues/85) No equal sign
  156. - [**#84**](https://github.com/ljharb/qs/issues/84) update license attribute
  157. ## [**2.4.1**](https://github.com/ljharb/qs/issues?milestone=20&state=closed)
  158. - [**#73**](https://github.com/ljharb/qs/issues/73) Property 'hasOwnProperty' of object #<Object> is not a function
  159. ## [**2.4.0**](https://github.com/ljharb/qs/issues?milestone=19&state=closed)
  160. - [**#70**](https://github.com/ljharb/qs/issues/70) Add arrayFormat option
  161. ## [**2.3.3**](https://github.com/ljharb/qs/issues?milestone=18&state=closed)
  162. - [**#59**](https://github.com/ljharb/qs/issues/59) make sure array indexes are >= 0, closes #57
  163. - [**#58**](https://github.com/ljharb/qs/issues/58) make qs usable for browser loader
  164. ## [**2.3.2**](https://github.com/ljharb/qs/issues?milestone=17&state=closed)
  165. - [**#55**](https://github.com/ljharb/qs/issues/55) allow merging a string into an object
  166. ## [**2.3.1**](https://github.com/ljharb/qs/issues?milestone=16&state=closed)
  167. - [**#52**](https://github.com/ljharb/qs/issues/52) Return "undefined" and "false" instead of throwing "TypeError".
  168. ## [**2.3.0**](https://github.com/ljharb/qs/issues?milestone=15&state=closed)
  169. - [**#50**](https://github.com/ljharb/qs/issues/50) add option to omit array indices, closes #46
  170. ## [**2.2.5**](https://github.com/ljharb/qs/issues?milestone=14&state=closed)
  171. - [**#39**](https://github.com/ljharb/qs/issues/39) Is there an alternative to Buffer.isBuffer?
  172. - [**#49**](https://github.com/ljharb/qs/issues/49) refactor utils.merge, fixes #45
  173. - [**#41**](https://github.com/ljharb/qs/issues/41) avoid browserifying Buffer, for #39
  174. ## [**2.2.4**](https://github.com/ljharb/qs/issues?milestone=13&state=closed)
  175. - [**#38**](https://github.com/ljharb/qs/issues/38) how to handle object keys beginning with a number
  176. ## [**2.2.3**](https://github.com/ljharb/qs/issues?milestone=12&state=closed)
  177. - [**#37**](https://github.com/ljharb/qs/issues/37) parser discards first empty value in array
  178. - [**#36**](https://github.com/ljharb/qs/issues/36) Update to lab 4.x
  179. ## [**2.2.2**](https://github.com/ljharb/qs/issues?milestone=11&state=closed)
  180. - [**#33**](https://github.com/ljharb/qs/issues/33) Error when plain object in a value
  181. - [**#34**](https://github.com/ljharb/qs/issues/34) use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty
  182. - [**#24**](https://github.com/ljharb/qs/issues/24) Changelog? Semver?
  183. ## [**2.2.1**](https://github.com/ljharb/qs/issues?milestone=10&state=closed)
  184. - [**#32**](https://github.com/ljharb/qs/issues/32) account for circular references properly, closes #31
  185. - [**#31**](https://github.com/ljharb/qs/issues/31) qs.parse stackoverflow on circular objects
  186. ## [**2.2.0**](https://github.com/ljharb/qs/issues?milestone=9&state=closed)
  187. - [**#26**](https://github.com/ljharb/qs/issues/26) Don't use Buffer global if it's not present
  188. - [**#30**](https://github.com/ljharb/qs/issues/30) Bug when merging non-object values into arrays
  189. - [**#29**](https://github.com/ljharb/qs/issues/29) Don't call Utils.clone at the top of Utils.merge
  190. - [**#23**](https://github.com/ljharb/qs/issues/23) Ability to not limit parameters?
  191. ## [**2.1.0**](https://github.com/ljharb/qs/issues?milestone=8&state=closed)
  192. - [**#22**](https://github.com/ljharb/qs/issues/22) Enable using a RegExp as delimiter
  193. ## [**2.0.0**](https://github.com/ljharb/qs/issues?milestone=7&state=closed)
  194. - [**#18**](https://github.com/ljharb/qs/issues/18) Why is there arrayLimit?
  195. - [**#20**](https://github.com/ljharb/qs/issues/20) Configurable parametersLimit
  196. - [**#21**](https://github.com/ljharb/qs/issues/21) make all limits optional, for #18, for #20
  197. ## [**1.2.2**](https://github.com/ljharb/qs/issues?milestone=6&state=closed)
  198. - [**#19**](https://github.com/ljharb/qs/issues/19) Don't overwrite null values
  199. ## [**1.2.1**](https://github.com/ljharb/qs/issues?milestone=5&state=closed)
  200. - [**#16**](https://github.com/ljharb/qs/issues/16) ignore non-string delimiters
  201. - [**#15**](https://github.com/ljharb/qs/issues/15) Close code block
  202. ## [**1.2.0**](https://github.com/ljharb/qs/issues?milestone=4&state=closed)
  203. - [**#12**](https://github.com/ljharb/qs/issues/12) Add optional delim argument
  204. - [**#13**](https://github.com/ljharb/qs/issues/13) fix #11: flattened keys in array are now correctly parsed
  205. ## [**1.1.0**](https://github.com/ljharb/qs/issues?milestone=3&state=closed)
  206. - [**#7**](https://github.com/ljharb/qs/issues/7) Empty values of a POST array disappear after being submitted
  207. - [**#9**](https://github.com/ljharb/qs/issues/9) Should not omit equals signs (=) when value is null
  208. - [**#6**](https://github.com/ljharb/qs/issues/6) Minor grammar fix in README
  209. ## [**1.0.2**](https://github.com/ljharb/qs/issues?milestone=2&state=closed)
  210. - [**#5**](https://github.com/ljharb/qs/issues/5) array holes incorrectly copied into object on large index