Initial commit
[yaffs-website] / node_modules / qs / CHANGELOG.md
1 ## **6.3.2**
2 - [Fix] follow `allowPrototypes` option during merge (#201, #200)
3 - [Dev Deps] update `eslint`
4 - [Fix] chmod a-x
5 - [Fix] support keys starting with brackets (#202, #200)
6 - [Tests] up to `node` `v7.7`, `v6.10`,` v4.8`; disable osx builds since they block linux builds
7
8 ## **6.3.1**
9 - [Fix] ensure that `allowPrototypes: false` does not ever shadow Object.prototype properties (thanks, @snyk!)
10 - [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `browserify`, `iconv-lite`, `qs-iconv`, `tape`
11 - [Tests] on all node minors; improve test matrix
12 - [Docs] document stringify option `allowDots` (#195)
13 - [Docs] add empty object and array values example (#195)
14 - [Docs] Fix minor inconsistency/typo (#192)
15 - [Docs] document stringify option `sort` (#191)
16 - [Refactor] `stringify`: throw faster with an invalid encoder
17 - [Refactor] remove unnecessary escapes (#184)
18 - Remove contributing.md, since `qs` is no longer part of `hapi` (#183)
19
20 ## **6.3.0**
21 - [New] Add support for RFC 1738 (#174, #173)
22 - [New] `stringify`: Add `serializeDate` option to customize Date serialization (#159)
23 - [Fix] ensure `utils.merge` handles merging two arrays
24 - [Refactor] only constructors should be capitalized
25 - [Refactor] capitalized var names are for constructors only
26 - [Refactor] avoid using a sparse array
27 - [Robustness] `formats`: cache `String#replace`
28 - [Dev Deps] update `browserify`, `eslint`, `@ljharb/eslint-config`; add `safe-publish-latest`
29 - [Tests] up to `node` `v6.8`, `v4.6`; improve test matrix
30 - [Tests] flesh out arrayLimit/arrayFormat tests (#107)
31 - [Tests] skip Object.create tests when null objects are not available
32 - [Tests] Turn on eslint for test files (#175)
33
34 ## **6.2.1**
35 - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
36 - [Refactor] Be explicit and use `Object.prototype.hasOwnProperty.call`
37 - [Tests] remove `parallelshell` since it does not reliably report failures
38 - [Tests] up to `node` `v6.3`, `v5.12`
39 - [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `qs-iconv`
40
41 ## [**6.2.0**](https://github.com/ljharb/qs/issues?milestone=36&state=closed)
42 - [New] pass Buffers to the encoder/decoder directly (#161)
43 - [New] add "encoder" and "decoder" options, for custom param encoding/decoding (#160)
44 - [Fix] fix compacting of nested sparse arrays (#150)
45
46 ## [**6.1.0**](https://github.com/ljharb/qs/issues?milestone=35&state=closed)
47 - [New] allowDots option for `stringify` (#151)
48 - [Fix] "sort" option should work at a depth of 3 or more (#151)
49 - [Fix] Restore `dist` directory; will be removed in v7 (#148)
50
51 ## [**6.0.2**](https://github.com/ljharb/qs/issues?milestone=33&state=closed)
52 - Revert ES6 requirement and restore support for node down to v0.8.
53
54 ## [**6.0.1**](https://github.com/ljharb/qs/issues?milestone=32&state=closed)
55 - [**#127**](https://github.com/ljharb/qs/pull/127) Fix engines definition in package.json
56
57 ## [**6.0.0**](https://github.com/ljharb/qs/issues?milestone=31&state=closed)
58 - [**#124**](https://github.com/ljharb/qs/issues/124) Use ES6 and drop support for node < v4
59
60 ## **5.2.1**
61 - [Fix] ensure `key[]=x&key[]&key[]=y` results in 3, not 2, values
62
63 ## [**5.2.0**](https://github.com/ljharb/qs/issues?milestone=30&state=closed)
64 - [**#64**](https://github.com/ljharb/qs/issues/64) Add option to sort object keys in the query string
65
66 ## [**5.1.0**](https://github.com/ljharb/qs/issues?milestone=29&state=closed)
67 - [**#117**](https://github.com/ljharb/qs/issues/117) make URI encoding stringified results optional
68 - [**#106**](https://github.com/ljharb/qs/issues/106) Add flag `skipNulls` to optionally skip null values in stringify
69
70 ## [**5.0.0**](https://github.com/ljharb/qs/issues?milestone=28&state=closed)
71 - [**#114**](https://github.com/ljharb/qs/issues/114) default allowDots to false
72 - [**#100**](https://github.com/ljharb/qs/issues/100) include dist to npm
73
74 ## [**4.0.0**](https://github.com/ljharb/qs/issues?milestone=26&state=closed)
75 - [**#98**](https://github.com/ljharb/qs/issues/98) make returning plain objects and allowing prototype overwriting properties optional
76
77 ## [**3.1.0**](https://github.com/ljharb/qs/issues?milestone=24&state=closed)
78 - [**#89**](https://github.com/ljharb/qs/issues/89) Add option to disable "Transform dot notation to bracket notation"
79
80 ## [**3.0.0**](https://github.com/ljharb/qs/issues?milestone=23&state=closed)
81 - [**#80**](https://github.com/ljharb/qs/issues/80) qs.parse silently drops properties
82 - [**#77**](https://github.com/ljharb/qs/issues/77) Perf boost
83 - [**#60**](https://github.com/ljharb/qs/issues/60) Add explicit option to disable array parsing
84 - [**#74**](https://github.com/ljharb/qs/issues/74) Bad parse when turning array into object
85 - [**#81**](https://github.com/ljharb/qs/issues/81) Add a `filter` option
86 - [**#68**](https://github.com/ljharb/qs/issues/68) Fixed issue with recursion and passing strings into objects.
87 - [**#66**](https://github.com/ljharb/qs/issues/66) Add mixed array and object dot notation support Closes: #47
88 - [**#76**](https://github.com/ljharb/qs/issues/76) RFC 3986
89 - [**#85**](https://github.com/ljharb/qs/issues/85) No equal sign
90 - [**#84**](https://github.com/ljharb/qs/issues/84) update license attribute
91
92 ## [**2.4.1**](https://github.com/ljharb/qs/issues?milestone=20&state=closed)
93 - [**#73**](https://github.com/ljharb/qs/issues/73) Property 'hasOwnProperty' of object #<Object> is not a function
94
95 ## [**2.4.0**](https://github.com/ljharb/qs/issues?milestone=19&state=closed)
96 - [**#70**](https://github.com/ljharb/qs/issues/70) Add arrayFormat option
97
98 ## [**2.3.3**](https://github.com/ljharb/qs/issues?milestone=18&state=closed)
99 - [**#59**](https://github.com/ljharb/qs/issues/59) make sure array indexes are >= 0, closes #57
100 - [**#58**](https://github.com/ljharb/qs/issues/58) make qs usable for browser loader
101
102 ## [**2.3.2**](https://github.com/ljharb/qs/issues?milestone=17&state=closed)
103 - [**#55**](https://github.com/ljharb/qs/issues/55) allow merging a string into an object
104
105 ## [**2.3.1**](https://github.com/ljharb/qs/issues?milestone=16&state=closed)
106 - [**#52**](https://github.com/ljharb/qs/issues/52) Return "undefined" and "false" instead of throwing "TypeError".
107
108 ## [**2.3.0**](https://github.com/ljharb/qs/issues?milestone=15&state=closed)
109 - [**#50**](https://github.com/ljharb/qs/issues/50) add option to omit array indices, closes #46
110
111 ## [**2.2.5**](https://github.com/ljharb/qs/issues?milestone=14&state=closed)
112 - [**#39**](https://github.com/ljharb/qs/issues/39) Is there an alternative to Buffer.isBuffer?
113 - [**#49**](https://github.com/ljharb/qs/issues/49) refactor utils.merge, fixes #45
114 - [**#41**](https://github.com/ljharb/qs/issues/41) avoid browserifying Buffer, for #39
115
116 ## [**2.2.4**](https://github.com/ljharb/qs/issues?milestone=13&state=closed)
117 - [**#38**](https://github.com/ljharb/qs/issues/38) how to handle object keys beginning with a number
118
119 ## [**2.2.3**](https://github.com/ljharb/qs/issues?milestone=12&state=closed)
120 - [**#37**](https://github.com/ljharb/qs/issues/37) parser discards first empty value in array
121 - [**#36**](https://github.com/ljharb/qs/issues/36) Update to lab 4.x
122
123 ## [**2.2.2**](https://github.com/ljharb/qs/issues?milestone=11&state=closed)
124 - [**#33**](https://github.com/ljharb/qs/issues/33) Error when plain object in a value
125 - [**#34**](https://github.com/ljharb/qs/issues/34) use Object.prototype.hasOwnProperty.call instead of obj.hasOwnProperty
126 - [**#24**](https://github.com/ljharb/qs/issues/24) Changelog? Semver?
127
128 ## [**2.2.1**](https://github.com/ljharb/qs/issues?milestone=10&state=closed)
129 - [**#32**](https://github.com/ljharb/qs/issues/32) account for circular references properly, closes #31
130 - [**#31**](https://github.com/ljharb/qs/issues/31) qs.parse stackoverflow on circular objects
131
132 ## [**2.2.0**](https://github.com/ljharb/qs/issues?milestone=9&state=closed)
133 - [**#26**](https://github.com/ljharb/qs/issues/26) Don't use Buffer global if it's not present
134 - [**#30**](https://github.com/ljharb/qs/issues/30) Bug when merging non-object values into arrays
135 - [**#29**](https://github.com/ljharb/qs/issues/29) Don't call Utils.clone at the top of Utils.merge
136 - [**#23**](https://github.com/ljharb/qs/issues/23) Ability to not limit parameters?
137
138 ## [**2.1.0**](https://github.com/ljharb/qs/issues?milestone=8&state=closed)
139 - [**#22**](https://github.com/ljharb/qs/issues/22) Enable using a RegExp as delimiter
140
141 ## [**2.0.0**](https://github.com/ljharb/qs/issues?milestone=7&state=closed)
142 - [**#18**](https://github.com/ljharb/qs/issues/18) Why is there arrayLimit?
143 - [**#20**](https://github.com/ljharb/qs/issues/20) Configurable parametersLimit
144 - [**#21**](https://github.com/ljharb/qs/issues/21) make all limits optional, for #18, for #20
145
146 ## [**1.2.2**](https://github.com/ljharb/qs/issues?milestone=6&state=closed)
147 - [**#19**](https://github.com/ljharb/qs/issues/19) Don't overwrite null values
148
149 ## [**1.2.1**](https://github.com/ljharb/qs/issues?milestone=5&state=closed)
150 - [**#16**](https://github.com/ljharb/qs/issues/16) ignore non-string delimiters
151 - [**#15**](https://github.com/ljharb/qs/issues/15) Close code block
152
153 ## [**1.2.0**](https://github.com/ljharb/qs/issues?milestone=4&state=closed)
154 - [**#12**](https://github.com/ljharb/qs/issues/12) Add optional delim argument
155 - [**#13**](https://github.com/ljharb/qs/issues/13) fix #11: flattened keys in array are now correctly parsed
156
157 ## [**1.1.0**](https://github.com/ljharb/qs/issues?milestone=3&state=closed)
158 - [**#7**](https://github.com/ljharb/qs/issues/7) Empty values of a POST array disappear after being submitted
159 - [**#9**](https://github.com/ljharb/qs/issues/9) Should not omit equals signs (=) when value is null
160 - [**#6**](https://github.com/ljharb/qs/issues/6) Minor grammar fix in README
161
162 ## [**1.0.2**](https://github.com/ljharb/qs/issues?milestone=2&state=closed)
163 - [**#5**](https://github.com/ljharb/qs/issues/5) array holes incorrectly copied into object on large index