Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. ## **6.10.1**
  2. - [Fix] `stringify`: avoid exception on repeated object values (#402)
  3. ## **6.10.0**
  4. - [New] `stringify`: throw on cycles, instead of an infinite loop (#395, #394, #393)
  5. - [New] `parse`: add `allowSparse` option for collapsing arrays with missing indices (#312)
  6. - [meta] fix README.md (#399)
  7. - [meta] only run `npm run dist` in publish, not install
  8. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `aud`, `has-symbols`, `tape`
  9. - [Tests] fix tests on node v0.6
  10. - [Tests] use `ljharb/actions/node/install` instead of `ljharb/actions/node/run`
  11. - [Tests] Revert "[meta] ignore eclint transitive audit warning"
  12. ## **6.9.6**
  13. - [Fix] restore `dist` dir; mistakenly removed in d4f6c32
  14. ## **6.9.5**
  15. - [Fix] `stringify`: do not encode parens for RFC1738
  16. - [Fix] `stringify`: fix arrayFormat comma with empty array/objects (#350)
  17. - [Refactor] `format`: remove `util.assign` call
  18. - [meta] add "Allow Edits" workflow; update rebase workflow
  19. - [actions] switch Automatic Rebase workflow to `pull_request_target` event
  20. - [Tests] `stringify`: add tests for #378
  21. - [Tests] migrate tests to Github Actions
  22. - [Tests] run `nyc` on all tests; use `tape` runner
  23. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `mkdirp`, `object-inspect`, `tape`; add `aud`
  24. ## **6.9.4**
  25. - [Fix] `stringify`: when `arrayFormat` is `comma`, respect `serializeDate` (#364)
  26. - [Refactor] `stringify`: reduce branching (part of #350)
  27. - [Refactor] move `maybeMap` to `utils`
  28. - [Dev Deps] update `browserify`, `tape`
  29. ## **6.9.3**
  30. - [Fix] proper comma parsing of URL-encoded commas (#361)
  31. - [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336)
  32. ## **6.9.2**
  33. - [Fix] `parse`: Fix parsing array from object with `comma` true (#359)
  34. - [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349)
  35. - [meta] ignore eclint transitive audit warning
  36. - [meta] fix indentation in package.json
  37. - [meta] add tidelift marketing copy
  38. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `object-inspect`, `has-symbols`, `tape`, `mkdirp`, `iconv-lite`
  39. - [actions] add automatic rebasing / merge commit blocking
  40. ## **6.9.1**
  41. - [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335)
  42. - [Fix] `parse`: with comma true, do not split non-string values (#334)
  43. - [meta] add `funding` field
  44. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`
  45. - [Tests] use shared travis-ci config
  46. ## **6.9.0**
  47. - [New] `parse`/`stringify`: Pass extra key/value argument to `decoder` (#333)
  48. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `evalmd`
  49. - [Tests] `parse`: add passing `arrayFormat` tests
  50. - [Tests] add `posttest` using `npx aud` to run `npm audit` without a lockfile
  51. - [Tests] up to `node` `v12.10`, `v11.15`, `v10.16`, `v8.16`
  52. - [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray
  53. ## **6.8.2**
  54. - [Fix] proper comma parsing of URL-encoded commas (#361)
  55. - [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336)
  56. ## **6.8.1**
  57. - [Fix] `parse`: Fix parsing array from object with `comma` true (#359)
  58. - [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349)
  59. - [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335)
  60. - [fix] `parse`: with comma true, do not split non-string values (#334)
  61. - [meta] add tidelift marketing copy
  62. - [meta] add `funding` field
  63. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `safe-publish-latest`, `evalmd`, `has-symbols`, `iconv-lite`, `mkdirp`, `object-inspect`
  64. - [Tests] `parse`: add passing `arrayFormat` tests
  65. - [Tests] use shared travis-ci configs
  66. - [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray
  67. - [actions] add automatic rebasing / merge commit blocking
  68. ## **6.8.0**
  69. - [New] add `depth=false` to preserve the original key; [Fix] `depth=0` should preserve the original key (#326)
  70. - [New] [Fix] stringify symbols and bigints
  71. - [Fix] ensure node 0.12 can stringify Symbols
  72. - [Fix] fix for an impossible situation: when the formatter is called with a non-string value
  73. - [Refactor] `formats`: tiny bit of cleanup.
  74. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `safe-publish-latest`, `iconv-lite`, `tape`
  75. - [Tests] add tests for `depth=0` and `depth=false` behavior, both current and intuitive/intended (#326)
  76. - [Tests] use `eclint` instead of `editorconfig-tools`
  77. - [docs] readme: add security note
  78. - [meta] add github sponsorship
  79. - [meta] add FUNDING.yml
  80. - [meta] Clean up license text so it’s properly detected as BSD-3-Clause
  81. ## **6.7.2**
  82. - [Fix] proper comma parsing of URL-encoded commas (#361)
  83. - [Fix] parses comma delimited array while having percent-encoded comma treated as normal text (#336)
  84. ## **6.7.1**
  85. - [Fix] `parse`: Fix parsing array from object with `comma` true (#359)
  86. - [Fix] `parse`: with comma true, handle field that holds an array of arrays (#335)
  87. - [fix] `parse`: with comma true, do not split non-string values (#334)
  88. - [Fix] `parse`: throw a TypeError instead of an Error for bad charset (#349)
  89. - [Fix] fix for an impossible situation: when the formatter is called with a non-string value
  90. - [Refactor] `formats`: tiny bit of cleanup.
  91. - readme: add security note
  92. - [meta] add tidelift marketing copy
  93. - [meta] add `funding` field
  94. - [meta] add FUNDING.yml
  95. - [meta] Clean up license text so it’s properly detected as BSD-3-Clause
  96. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `safe-publish-latest`, `evalmd`, `iconv-lite`, `mkdirp`, `object-inspect`, `browserify`
  97. - [Tests] `parse`: add passing `arrayFormat` tests
  98. - [Tests] use shared travis-ci configs
  99. - [Tests] `Buffer.from` in node v5.0-v5.9 and v4.0-v4.4 requires a TypedArray
  100. - [Tests] add tests for `depth=0` and `depth=false` behavior, both current and intuitive/intended
  101. - [Tests] use `eclint` instead of `editorconfig-tools`
  102. - [actions] add automatic rebasing / merge commit blocking
  103. ## **6.7.0**
  104. - [New] `stringify`/`parse`: add `comma` as an `arrayFormat` option (#276, #219)
  105. - [Fix] correctly parse nested arrays (#212)
  106. - [Fix] `utils.merge`: avoid a crash with a null target and a truthy non-array source, also with an array source
  107. - [Robustness] `stringify`: cache `Object.prototype.hasOwnProperty`
  108. - [Refactor] `utils`: `isBuffer`: small tweak; add tests
  109. - [Refactor] use cached `Array.isArray`
  110. - [Refactor] `parse`/`stringify`: make a function to normalize the options
  111. - [Refactor] `utils`: reduce observable [[Get]]s
  112. - [Refactor] `stringify`/`utils`: cache `Array.isArray`
  113. - [Tests] always use `String(x)` over `x.toString()`
  114. - [Tests] fix Buffer tests to work in node < 4.5 and node < 5.10
  115. - [Tests] temporarily allow coverage to fail
  116. ## **6.6.0**
  117. - [New] Add support for iso-8859-1, utf8 "sentinel" and numeric entities (#268)
  118. - [New] move two-value combine to a `utils` function (#189)
  119. - [Fix] `stringify`: fix a crash with `strictNullHandling` and a custom `filter`/`serializeDate` (#279)
  120. - [Fix] when `parseArrays` is false, properly handle keys ending in `[]` (#260)
  121. - [Fix] `stringify`: do not crash in an obscure combo of `interpretNumericEntities`, a bad custom `decoder`, & `iso-8859-1`
  122. - [Fix] `utils`: `merge`: fix crash when `source` is a truthy primitive & no options are provided
  123. - [refactor] `stringify`: Avoid arr = arr.concat(...), push to the existing instance (#269)
  124. - [Refactor] `parse`: only need to reassign the var once
  125. - [Refactor] `parse`/`stringify`: clean up `charset` options checking; fix defaults
  126. - [Refactor] add missing defaults
  127. - [Refactor] `parse`: one less `concat` call
  128. - [Refactor] `utils`: `compactQueue`: make it explicitly side-effecting
  129. - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`, `iconv-lite`, `safe-publish-latest`, `tape`
  130. - [Tests] up to `node` `v10.10`, `v9.11`, `v8.12`, `v6.14`, `v4.9`; pin included builds to LTS
  131. ## **6.5.2**
  132. - [Fix] use `safer-buffer` instead of `Buffer` constructor
  133. - [Refactor] utils: `module.exports` one thing, instead of mutating `exports` (#230)
  134. - [Dev Deps] update `browserify`, `eslint`, `iconv-lite`, `safer-buffer`, `tape`, `browserify`
  135. ## **6.5.1**
  136. - [Fix] Fix parsing & compacting very deep objects (#224)
  137. - [Refactor] name utils functions
  138. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`
  139. - [Tests] up to `node` `v8.4`; use `nvm install-latest-npm` so newer npm doesn’t break older node
  140. - [Tests] Use precise dist for Node.js 0.6 runtime (#225)
  141. - [Tests] make 0.6 required, now that it’s passing
  142. - [Tests] on `node` `v8.2`; fix npm on node 0.6
  143. ## **6.5.0**
  144. - [New] add `utils.assign`
  145. - [New] pass default encoder/decoder to custom encoder/decoder functions (#206)
  146. - [New] `parse`/`stringify`: add `ignoreQueryPrefix`/`addQueryPrefix` options, respectively (#213)
  147. - [Fix] Handle stringifying empty objects with addQueryPrefix (#217)
  148. - [Fix] do not mutate `options` argument (#207)
  149. - [Refactor] `parse`: cache index to reuse in else statement (#182)
  150. - [Docs] add various badges to readme (#208)
  151. - [Dev Deps] update `eslint`, `browserify`, `iconv-lite`, `tape`
  152. - [Tests] up to `node` `v8.1`, `v7.10`, `v6.11`; npm v4.6 breaks on node < v1; npm v5+ breaks on node < v4
  153. - [Tests] add `editorconfig-tools`
  154. ## **6.4.0**
  155. - [New] `qs.stringify`: add `encodeValuesOnly` option
  156. - [Fix] follow `allowPrototypes` option during merge (#201, #201)
  157. - [Fix] support keys starting with brackets (#202, #200)
  158. - [Fix] chmod a-x
  159. - [Dev Deps] update `eslint`
  160. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  161. - [eslint] reduce warnings
  162. ## **6.3.2**
  163. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  164. - [Dev Deps] update `eslint`
  165. - [Fix] chmod a-x
  166. - [Fix] support keys starting with brackets (#202, #200)
  167. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  168. ## **6.3.1**
  169. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties (thanks, @snyk!)
  170. - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `iconv-lite`, `qs-iconv`, `tape`
  171. - [Tests] on all node minors; improve test matrix
  172. - [Docs] document stringify option `allowDots` (#195)
  173. - [Docs] add empty object and array values example (#195)
  174. - [Docs] Fix minor inconsistency/typo (#192)
  175. - [Docs] document stringify option `sort` (#191)
  176. - [Refactor] `stringify`: throw faster with an invalid encoder
  177. - [Refactor] remove unnecessary escapes (#184)
  178. - Remove contributing.md, since `qs` is no longer part of `hapi` (#183)
  179. ## **6.3.0**
  180. - [New] Add support for RFC 1738 (#174, #173)
  181. - [New] `stringify`: Add `serializeDate` option to customize Date serialization (#159)
  182. - [Fix] ensure `utils.merge` handles merging two arrays
  183. - [Refactor] only constructors should be capitalized
  184. - [Refactor] capitalized var names are for constructors only
  185. - [Refactor] avoid using a sparse array
  186. - [Robustness] `formats`: cache `String#replace`
  187. - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`; add `safe-publish-latest`
  188. - [Tests] up to `node` `v6.8`, `v4.6`; improve test matrix
  189. - [Tests] flesh out arrayLimit/arrayFormat tests (#107)
  190. - [Tests] skip Object.create tests when null objects are not available
  191. - [Tests] Turn on eslint for test files (#175)
  192. ## **6.2.3**
  193. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  194. - [Fix] chmod a-x
  195. - [Fix] support keys starting with brackets (#202, #200)
  196. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  197. ## **6.2.2**
  198. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  199. ## **6.2.1**
  200. - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
  201. - [Refactor] Be explicit and use `Object.prototype.hasOwnProperty.call`
  202. - [Tests] remove `parallelshell` since it does not reliably report failures
  203. - [Tests] up to `node` `v6.3`, `v5.12`
  204. - [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `qs-iconv`
  205. ## [**6.2.0**](https://github.com/ljharb/qs/issues?milestone=36&state=closed)
  206. - [New] pass Buffers to the encoder/decoder directly (#161)
  207. - [New] add "encoder" and "decoder" options, for custom param encoding/decoding (#160)
  208. - [Fix] fix compacting of nested sparse arrays (#150)
  209. ## **6.1.2
  210. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  211. - [Fix] chmod a-x
  212. - [Fix] support keys starting with brackets (#202, #200)
  213. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  214. ## **6.1.1**
  215. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  216. ## [**6.1.0**](https://github.com/ljharb/qs/issues?milestone=35&state=closed)
  217. - [New] allowDots option for `stringify` (#151)
  218. - [Fix] "sort" option should work at a depth of 3 or more (#151)
  219. - [Fix] Restore `dist` directory; will be removed in v7 (#148)
  220. ## **6.0.4**
  221. - [Fix] follow `allowPrototypes` option during merge (#201, #200)
  222. - [Fix] chmod a-x
  223. - [Fix] support keys starting with brackets (#202, #200)
  224. - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
  225. ## **6.0.3**
  226. - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties
  227. - [Fix] Restore `dist` directory; will be removed in v7 (#148)
  228. ## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed)
  229. - Revert ES6 requirement and restore support for node down to v0.8.
  230. ## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed)
  231. - [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json
  232. ## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed)
  233. - [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4
  234. ## **5.2.1**
  235. - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
  236. ## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed)
  237. - [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string
  238. ## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed)
  239. - [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional
  240. - [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify
  241. ## [**5.0.0**](https://github.com/ljharb/qs/issues?milestone=28&state=closed)
  242. - [**#114**](https://github.com/ljharb/qs/issues/114) default allowDots to false
  243. - [**#100**](https://github.com/ljharb/qs/issues/100) include dist to npm
  244. ## [**4.0.0**](https://github.com/ljharb/qs/issues?milestone=26&state=closed)
  245. - [**#98**](https://github.com/ljharb/qs/issues/98) make returning plain objects and allowing prototype overwriting properties optional
  246. ## [**3.1.0**](https://github.com/ljharb/qs/issues?milestone=24&state=closed)
  247. - [**#89**](https://github.com/ljharb/qs/issues/89) Add option to disable "Transform dot notation to bracket notation"
  248. ## [**3.0.0**](https://github.com/ljharb/qs/issues?milestone=23&state=closed)
  249. - [**#80**](https://github.com/ljharb/qs/issues/80) qs.parse silently drops properties
  250. - [**#77**](https://github.com/ljharb/qs/issues/77) Perf boost
  251. - [**#60**](https://github.com/ljharb/qs/issues/60) Add explicit option to disable array parsing
  252. - [**#74**](https://github.com/ljharb/qs/issues/74) Bad parse when turning array into object
  253. - [**#81**](https://github.com/ljharb/qs/issues/81) Add a `filter` option
  254. - [**#68**](https://github.com/ljharb/qs/issues/68) Fixed issue with recursion and passing strings into objects.
  255. - [**#66**](https://github.com/ljharb/qs/issues/66) Add mixed array and object dot notation support Closes: #47
  256. - [**#76**](https://github.com/ljharb/qs/issues/76) RFC 3986
  257. - [**#85**](https://github.com/ljharb/qs/issues/85) No equal sign
  258. - [**#84**](https://github.com/ljharb/qs/issues/84) update license attribute
  259. ## [**2.4.1**](https://github.com/ljharb/qs/issues?milestone=20&state=closed)
  260. - [**#73**](https://github.com/ljharb/qs/issues/73) Property 'hasOwnProperty' of object #<Object> is not a function
  261. ## [**2.4.0**](https://github.com/ljharb/qs/issues?milestone=19&state=closed)
  262. - [**#70**](https://github.com/ljharb/qs/issues/70) Add arrayFormat option
  263. ## [**2.3.3**](https://github.com/ljharb/qs/issues?milestone=18&state=closed)
  264. - [**#59**](https://github.com/ljharb/qs/issues/59) make sure array indexes are >= 0, closes #57
  265. - [**#58**](https://github.com/ljharb/qs/issues/58) make qs usable for browser loader
  266. ## [**2.3.2**](https://github.com/ljharb/qs/issues?milestone=17&state=closed)
  267. - [**#55**](https://github.com/ljharb/qs/issues/55) allow merging a string into an object
  268. ## [**2.3.1**](https://github.com/ljharb/qs/issues?milestone=16&state=closed)
  269. - [**#52**](https://github.com/ljharb/qs/issues/52) Return "undefined" and "false" instead of throwing "TypeError".
  270. ## [**2.3.0**](https://github.com/ljharb/qs/issues?milestone=15&state=closed)
  271. - [**#50**](https://github.com/ljharb/qs/issues/50) add option to omit array indices, closes #46
  272. ## [**2.2.5**](https://github.com/ljharb/qs/issues?milestone=14&state=closed)
  273. - [**#39**](https://github.com/ljharb/qs/issues/39) Is there an alternative to Buffer.isBuffer?
  274. - [**#49**](https://github.com/ljharb/qs/issues/49) refactor utils.merge, fixes #45
  275. - [**#41**](https://github.com/ljharb/qs/issues/41) avoid browserifying Buffer, for #39
  276. ## [**2.2.4**](https://github.com/ljharb/qs/issues?milestone=13&state=closed)
  277. - [**#38**](https://github.com/ljharb/qs/issues/38) how to handle object keys beginning with a number
  278. ## [**2.2.3**](https://github.com/ljharb/qs/issues?milestone=12&state=closed)
  279. - [**#37**](https://github.com/ljharb/qs/issues/37) parser discards first empty value in array
  280. - [**#36**](https://github.com/ljharb/qs/issues/36) Update to lab 4.x
  281. ## [**2.2.2**](https://github.com/ljharb/qs/issues?milestone=11&state=closed)
  282. - [**#33**](https://github.com/ljharb/qs/issues/33) Error when plain object in a value
  283. - [**#34**](https://github.com/ljharb/qs/issues/34) use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty
  284. - [**#24**](https://github.com/ljharb/qs/issues/24) Changelog? Semver?
  285. ## [**2.2.1**](https://github.com/ljharb/qs/issues?milestone=10&state=closed)
  286. - [**#32**](https://github.com/ljharb/qs/issues/32) account for circular references properly, closes #31
  287. - [**#31**](https://github.com/ljharb/qs/issues/31) qs.parse stackoverflow on circular objects
  288. ## [**2.2.0**](https://github.com/ljharb/qs/issues?milestone=9&state=closed)
  289. - [**#26**](https://github.com/ljharb/qs/issues/26) Don't use Buffer global if it's not present
  290. - [**#30**](https://github.com/ljharb/qs/issues/30) Bug when merging non-object values into arrays
  291. - [**#29**](https://github.com/ljharb/qs/issues/29) Don't call Utils.clone at the top of Utils.merge
  292. - [**#23**](https://github.com/ljharb/qs/issues/23) Ability to not limit parameters?
  293. ## [**2.1.0**](https://github.com/ljharb/qs/issues?milestone=8&state=closed)
  294. - [**#22**](https://github.com/ljharb/qs/issues/22) Enable using a RegExp as delimiter
  295. ## [**2.0.0**](https://github.com/ljharb/qs/issues?milestone=7&state=closed)
  296. - [**#18**](https://github.com/ljharb/qs/issues/18) Why is there arrayLimit?
  297. - [**#20**](https://github.com/ljharb/qs/issues/20) Configurable parametersLimit
  298. - [**#21**](https://github.com/ljharb/qs/issues/21) make all limits optional, for #18, for #20
  299. ## [**1.2.2**](https://github.com/ljharb/qs/issues?milestone=6&state=closed)
  300. - [**#19**](https://github.com/ljharb/qs/issues/19) Don't overwrite null values
  301. ## [**1.2.1**](https://github.com/ljharb/qs/issues?milestone=5&state=closed)
  302. - [**#16**](https://github.com/ljharb/qs/issues/16) ignore non-string delimiters
  303. - [**#15**](https://github.com/ljharb/qs/issues/15) Close code block
  304. ## [**1.2.0**](https://github.com/ljharb/qs/issues?milestone=4&state=closed)
  305. - [**#12**](https://github.com/ljharb/qs/issues/12) Add optional delim argument
  306. - [**#13**](https://github.com/ljharb/qs/issues/13) fix #11: flattened keys in array are now correctly parsed
  307. ## [**1.1.0**](https://github.com/ljharb/qs/issues?milestone=3&state=closed)
  308. - [**#7**](https://github.com/ljharb/qs/issues/7) Empty values of a POST array disappear after being submitted
  309. - [**#9**](https://github.com/ljharb/qs/issues/9) Should not omit equals signs (=) when value is null
  310. - [**#6**](https://github.com/ljharb/qs/issues/6) Minor grammar fix in README
  311. ## [**1.0.2**](https://github.com/ljharb/qs/issues?milestone=2&state=closed)
  312. - [**#5**](https://github.com/ljharb/qs/issues/5) array holes incorrectly copied into object on large index