alp-body-parser 12.0.0 → 12.1.0
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.
- package/package.json +34 -34
- package/CHANGELOG.md +0 -537
package/package.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-body-parser",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "body parser in alp framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"alp",
|
|
7
7
|
"body-parser"
|
|
8
8
|
],
|
|
9
|
-
"
|
|
9
|
+
"homepage": "https://github.com/christophehurpeau/alp",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/christophehurpeau/alp/issues"
|
|
12
|
+
},
|
|
10
13
|
"license": "ISC",
|
|
14
|
+
"author": "Christophe Hurpeau <christophe@hurpeau.com> (http://christophe.hurpeau.com/)",
|
|
11
15
|
"repository": {
|
|
12
16
|
"type": "git",
|
|
13
17
|
"url": "https://github.com/christophehurpeau/alp.git",
|
|
14
18
|
"directory": "packages/alp-body-parser"
|
|
15
19
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
+
"files": [
|
|
21
|
+
"src",
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
20
24
|
"type": "module",
|
|
21
|
-
"engines": {
|
|
22
|
-
"node": ">=22.18.0"
|
|
23
|
-
},
|
|
24
25
|
"sideEffects": false,
|
|
25
26
|
"main": "./dist/index-node.mjs",
|
|
26
27
|
"types": "./dist/definitions/index.d.ts",
|
|
@@ -33,18 +34,21 @@
|
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
},
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@types/co-body": "^6.1.3",
|
|
39
|
+
"@types/koa": "^3.0.3",
|
|
40
|
+
"co-body": "^6.2.0",
|
|
41
|
+
"koa": "^3.2.1"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@pob/rollup-esbuild": "9.1.1",
|
|
45
|
+
"typescript": "6.0.3"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"alp-node": "^10.0.0"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=22.18.0"
|
|
48
52
|
},
|
|
49
53
|
"pob": {
|
|
50
54
|
"bundler": "rollup-esbuild",
|
|
@@ -60,18 +64,14 @@
|
|
|
60
64
|
],
|
|
61
65
|
"typescript": true
|
|
62
66
|
},
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
},
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@pob/rollup-esbuild": "7.3.2",
|
|
75
|
-
"typescript": "5.9.3"
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "yarn run clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
69
|
+
"build:definitions": "tsc -p tsconfig.json",
|
|
70
|
+
"clean": "yarn clean:build",
|
|
71
|
+
"clean:build": "pob-esbuild-clean-out dist",
|
|
72
|
+
"lint": "yarn run lint:eslint",
|
|
73
|
+
"lint:eslint": "yarn '../..' run eslint --quiet 'packages/alp-body-parser'",
|
|
74
|
+
"tsc": "tsc",
|
|
75
|
+
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,537 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [12.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@11.0.1...alp-body-parser@12.0.0) (2025-11-12)
|
|
7
|
-
|
|
8
|
-
Version bump for dependency: alp-node
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
## [11.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@11.0.0...alp-body-parser@11.0.1) (2025-11-12)
|
|
12
|
-
|
|
13
|
-
Note: no notable changes
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
## [11.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@10.0.0...alp-body-parser@11.0.0) (2025-10-27)
|
|
17
|
-
|
|
18
|
-
### ⚠ BREAKING CHANGES
|
|
19
|
-
|
|
20
|
-
* drop node 20 and build using esbuild
|
|
21
|
-
|
|
22
|
-
### Features
|
|
23
|
-
|
|
24
|
-
* drop node 20 and build using esbuild ([812c4c1](https://github.com/christophehurpeau/alp/commit/812c4c1b0ad19984e389af4382a8d1e60643e4f1))
|
|
25
|
-
|
|
26
|
-
Version bump for dependency: alp-node
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
## [10.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@9.0.0...alp-body-parser@10.0.0) (2025-08-02)
|
|
30
|
-
|
|
31
|
-
### ⚠ BREAKING CHANGES
|
|
32
|
-
|
|
33
|
-
* update dependencies and drop node 20
|
|
34
|
-
* update dev dependencies, replace parse-json-object-as-map with native JSON.parse, update koa
|
|
35
|
-
* update koa
|
|
36
|
-
|
|
37
|
-
### Features
|
|
38
|
-
|
|
39
|
-
* update dependencies and drop node 20 ([fc5b322](https://github.com/christophehurpeau/alp/commit/fc5b322e076e9a3c7c4a235d16734b89fd85e211))
|
|
40
|
-
* update dev dependencies, replace parse-json-object-as-map with native JSON.parse, update koa ([5ae7723](https://github.com/christophehurpeau/alp/commit/5ae77238cafc573fe72c5eb63b103802b8b2e537))
|
|
41
|
-
* update koa ([e678114](https://github.com/christophehurpeau/alp/commit/e67811429d951287de715c3dffdbee7b798f3358))
|
|
42
|
-
|
|
43
|
-
Version bump for dependency: alp-node
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## [9.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.1...alp-body-parser@9.0.0) (2024-01-06)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### ⚠ BREAKING CHANGES
|
|
50
|
-
|
|
51
|
-
* merge to alp-node to improve maintenability, remove alp-types
|
|
52
|
-
|
|
53
|
-
### Features
|
|
54
|
-
|
|
55
|
-
* merge to alp-node to improve maintenability, remove alp-types ([ead9a2f](https://github.com/christophehurpeau/alp/commit/ead9a2fd1bcbedce0be29ea0e444c5cead99c64d))
|
|
56
|
-
|
|
57
|
-
Version bump for dependency: alp-node
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
## [8.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.0...alp-body-parser@8.1.1) (2024-01-06)
|
|
61
|
-
|
|
62
|
-
Note: no notable changes
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
## [8.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.0.1...alp-body-parser@8.1.0) (2023-12-25)
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
### Features
|
|
71
|
-
|
|
72
|
-
* update dependencies ([ddc8f92](https://github.com/christophehurpeau/alp/commit/ddc8f92cccacf6ed2baabf8555f0b37fe281ce9d))
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
## [8.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.0.0...alp-body-parser@8.0.1) (2023-07-29)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
* dedupe and fix update alp ([aed32bc](https://github.com/christophehurpeau/alp/commit/aed32bc12e596acfd60f0d032a8d78a1ef68f9ee))
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
## [8.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@7.2.0...alp-body-parser@8.0.0) (2023-07-29)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
### ⚠ BREAKING CHANGES
|
|
90
|
-
|
|
91
|
-
* drop node 16
|
|
92
|
-
|
|
93
|
-
### Code Refactoring
|
|
94
|
-
|
|
95
|
-
* update to node 18 ([26280d6](https://github.com/christophehurpeau/alp/commit/26280d638aba1bd46fa42ad5a571b9626f1fff6d))
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
## [7.2.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@7.1.2...alp-body-parser@7.2.0) (2023-03-19)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Features
|
|
103
|
-
|
|
104
|
-
* update dev dependencies ([9d7e24f](https://github.com/christophehurpeau/alp/commit/9d7e24f8e504d47feae64ca618dc2b3a69babc38))
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
## [7.1.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@7.1.1...alp-body-parser@7.1.2) (2023-01-31)
|
|
109
|
-
|
|
110
|
-
**Note:** Version bump only for package alp-body-parser
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
## [7.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@7.1.0...alp-body-parser@7.1.1) (2023-01-31)
|
|
117
|
-
|
|
118
|
-
**Note:** Version bump only for package alp-body-parser
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
# [7.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@7.0.0...alp-body-parser@7.1.0) (2023-01-29)
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
### Features
|
|
128
|
-
|
|
129
|
-
* update configs ([e9cbde7](https://github.com/christophehurpeau/alp/commit/e9cbde74ddbbb730bc2b65bb6d0b87f2bba8006e))
|
|
130
|
-
* update nightingale and router-segments ([eb95316](https://github.com/christophehurpeau/alp/commit/eb953169651a5b335d2348f823dc65dc1261cfc0))
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
# [7.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.1.2...alp-body-parser@7.0.0) (2022-11-27)
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
### Features
|
|
140
|
-
|
|
141
|
-
* drop node 14 ([5d5f90b](https://github.com/christophehurpeau/alp/commit/5d5f90b09d8532278aba75a97f10ea90bbb27919))
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
### BREAKING CHANGES
|
|
145
|
-
|
|
146
|
-
* drop node 14
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
## [6.1.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.1.1...alp-body-parser@6.1.2) (2022-10-29)
|
|
153
|
-
|
|
154
|
-
**Note:** Version bump only for package alp-body-parser
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## [6.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.1.0...alp-body-parser@6.1.1) (2022-10-19)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package alp-body-parser
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
# [6.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.6...alp-body-parser@6.1.0) (2022-10-16)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
### Features
|
|
172
|
-
|
|
173
|
-
* update to react 18 ([6ac42b8](https://github.com/christophehurpeau/alp/commit/6ac42b84b80bf76853773f3b93819666684327d1))
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
## [6.0.6](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.5...alp-body-parser@6.0.6) (2022-10-13)
|
|
180
|
-
|
|
181
|
-
**Note:** Version bump only for package alp-body-parser
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
## [6.0.5](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.4...alp-body-parser@6.0.5) (2022-03-05)
|
|
188
|
-
|
|
189
|
-
**Note:** Version bump only for package alp-body-parser
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
## [6.0.4](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.3...alp-body-parser@6.0.4) (2022-02-20)
|
|
196
|
-
|
|
197
|
-
**Note:** Version bump only for package alp-body-parser
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
## [6.0.3](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.2...alp-body-parser@6.0.3) (2022-02-13)
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
### Bug Fixes
|
|
207
|
-
|
|
208
|
-
* dont override react/react-in-jsx-scope ([5d21c9e](https://github.com/christophehurpeau/alp/commit/5d21c9ece092cd3397d1794211dae17cea6649f8))
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
## [6.0.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.1...alp-body-parser@6.0.2) (2022-02-06)
|
|
215
|
-
|
|
216
|
-
**Note:** Version bump only for package alp-body-parser
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
## [6.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@6.0.0...alp-body-parser@6.0.1) (2022-01-15)
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
### Bug Fixes
|
|
226
|
-
|
|
227
|
-
* update peer dependencies ([74892bc](https://github.com/christophehurpeau/alp/commit/74892bc8dd99ca862ba427914eb893b083e9b9da))
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
# [6.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.2.1...alp-body-parser@6.0.0) (2022-01-02)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
### Bug Fixes
|
|
237
|
-
|
|
238
|
-
* update nightingale and fix tests ([3691716](https://github.com/christophehurpeau/alp/commit/36917162d0ee3dccc07384caf018b7760d98b744))
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
### Features
|
|
242
|
-
|
|
243
|
-
* **deps:** update dependency @types/co-body to v6 ([#263](https://github.com/christophehurpeau/alp/issues/263)) ([7f832bd](https://github.com/christophehurpeau/alp/commit/7f832bda15a2a69f9d144e96d91d17a7709bcb0b))
|
|
244
|
-
* use ESM and drop node 12 ([f45054e](https://github.com/christophehurpeau/alp/commit/f45054e931eea88451d183722797eba057511236))
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
### BREAKING CHANGES
|
|
248
|
-
|
|
249
|
-
* requires node 14 and ESM
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
## [5.2.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.2.0...alp-body-parser@5.2.1) (2021-04-10)
|
|
256
|
-
|
|
257
|
-
**Note:** Version bump only for package alp-body-parser
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
# [5.2.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.1.0...alp-body-parser@5.2.0) (2021-03-28)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
### Features
|
|
267
|
-
|
|
268
|
-
* update koa ([8be5ecf](https://github.com/christophehurpeau/alp/commit/8be5ecf11e53a2deced805683195cc5c67ba9ea2))
|
|
269
|
-
* **deps:** update dependency @types/co-body to v5 ([#193](https://github.com/christophehurpeau/alp/issues/193)) ([52d1c87](https://github.com/christophehurpeau/alp/commit/52d1c8768765b907b83f50c00856a9dfb9d2f328))
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
# [5.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.0.3...alp-body-parser@5.1.0) (2021-03-21)
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
### Features
|
|
279
|
-
|
|
280
|
-
* update dependencies and browserlist config ([ec17710](https://github.com/christophehurpeau/alp/commit/ec177106dbfb094fface3d2791800916929305fc))
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
## [5.0.3](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.0.2...alp-body-parser@5.0.3) (2021-01-23)
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
### Bug Fixes
|
|
290
|
-
|
|
291
|
-
* **alp-body-parser:** return parsed body ([7f38264](https://github.com/christophehurpeau/alp/commit/7f38264ee09b153a58c06c12927ade43b9ab8314))
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
## [5.0.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.0.1...alp-body-parser@5.0.2) (2021-01-18)
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
### Bug Fixes
|
|
301
|
-
|
|
302
|
-
* deps and export import browser ([c8e51a6](https://github.com/christophehurpeau/alp/commit/c8e51a61befee852cbdbfb7697c7fd273a8d49ef))
|
|
303
|
-
* multiple stuff ([e914474](https://github.com/christophehurpeau/alp/commit/e9144747913b8edae7dc1ba94767d03e085cbdcd))
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
## [5.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@5.0.0...alp-body-parser@5.0.1) (2021-01-17)
|
|
310
|
-
|
|
311
|
-
**Note:** Version bump only for package alp-body-parser
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
# [5.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.2.0...alp-body-parser@5.0.0) (2021-01-17)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
### Code Refactoring
|
|
321
|
-
|
|
322
|
-
* update dev deps and typescript and eslint ([8cdc20e](https://github.com/christophehurpeau/alp/commit/8cdc20e030769d98d637b9580931cc5cc608278d))
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
### BREAKING CHANGES
|
|
326
|
-
|
|
327
|
-
* requires node 12
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
# [4.2.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.1.1...alp-body-parser@4.2.0) (2021-01-12)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
### Features
|
|
337
|
-
|
|
338
|
-
* **deps:** update dependency @types/co-body to ^0.0.4 [skip ci] ([#168](https://github.com/christophehurpeau/alp/issues/168)) ([472da72](https://github.com/christophehurpeau/alp/commit/472da72e3939127b26d5ce7b26751636bbca6770))
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
## [4.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.1.0...alp-body-parser@4.1.1) (2020-08-08)
|
|
345
|
-
|
|
346
|
-
**Note:** Version bump only for package alp-body-parser
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
# [4.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.0.2...alp-body-parser@4.1.0) (2020-05-30)
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
### Features
|
|
356
|
-
|
|
357
|
-
* update dependencies ([70b1f7f](https://github.com/christophehurpeau/alp/commit/70b1f7f))
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
## [4.0.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.0.1...alp-body-parser@4.0.2) (2020-05-02)
|
|
364
|
-
|
|
365
|
-
**Note:** Version bump only for package alp-body-parser
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
## [4.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@4.0.0...alp-body-parser@4.0.1) (2019-12-16)
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
### Bug Fixes
|
|
375
|
-
|
|
376
|
-
* update pobpack ([6e0b501](https://github.com/christophehurpeau/alp/commit/6e0b501))
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
# [4.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.3.1...alp-body-parser@4.0.0) (2019-12-15)
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
### Features
|
|
386
|
-
|
|
387
|
-
* update dependencies ([2d1539c](https://github.com/christophehurpeau/alp/commit/2d1539c))
|
|
388
|
-
* update dependencies and pob ([edee8ce](https://github.com/christophehurpeau/alp/commit/edee8ce))
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
### BREAKING CHANGES
|
|
392
|
-
|
|
393
|
-
* drop node 8
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
## [3.3.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.3.0...alp-body-parser@3.3.1) (2019-09-15)
|
|
400
|
-
|
|
401
|
-
**Note:** Version bump only for package alp-body-parser
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
# [3.3.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.2.2...alp-body-parser@3.3.0) (2019-09-13)
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
### Features
|
|
411
|
-
|
|
412
|
-
* add react-alp-antd-form and update dependencies ([6f60e46](https://github.com/christophehurpeau/alp/commit/6f60e46))
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
## [3.2.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.2.1...alp-body-parser@3.2.2) (2019-09-09)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
### Bug Fixes
|
|
422
|
-
|
|
423
|
-
* pob update ([ffe6857](https://github.com/christophehurpeau/alp/commit/ffe6857))
|
|
424
|
-
* typescript issues ([23246f6](https://github.com/christophehurpeau/alp/commit/23246f6))
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
## [3.2.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.2.0...alp-body-parser@3.2.1) (2019-05-01)
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
### Bug Fixes
|
|
434
|
-
|
|
435
|
-
* hot loader ([c880769](https://github.com/christophehurpeau/alp/commit/c880769))
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
# [3.2.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.1.3...alp-body-parser@3.2.0) (2019-05-01)
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
### Features
|
|
445
|
-
|
|
446
|
-
* update deps and pobpack ([1e19ea4](https://github.com/christophehurpeau/alp/commit/1e19ea4))
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
## [3.1.3](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.1.2...alp-body-parser@3.1.3) (2019-04-20)
|
|
453
|
-
|
|
454
|
-
**Note:** Version bump only for package alp-body-parser
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
## [3.1.2](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.1.1...alp-body-parser@3.1.2) (2019-04-07)
|
|
461
|
-
|
|
462
|
-
**Note:** Version bump only for package alp-body-parser
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
## [3.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.1.0...alp-body-parser@3.1.1) (2019-04-06)
|
|
469
|
-
|
|
470
|
-
**Note:** Version bump only for package alp-body-parser
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
# [3.1.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.0.1...alp-body-parser@3.1.0) (2019-04-05)
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
### Features
|
|
480
|
-
|
|
481
|
-
* update dependencies ([9278dc6](https://github.com/christophehurpeau/alp/commit/9278dc6))
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
## [3.0.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@3.0.0...alp-body-parser@3.0.1) (2019-03-08)
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
### Bug Fixes
|
|
491
|
-
|
|
492
|
-
* peerdep alp-node ([e0e3670](https://github.com/christophehurpeau/alp/commit/e0e3670))
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
# 3.0.0 (2019-02-17)
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
### Bug Fixes
|
|
502
|
-
|
|
503
|
-
* alp-body-parser return body ([939638e](https://github.com/christophehurpeau/alp/commit/939638e))
|
|
504
|
-
* build ([882938d](https://github.com/christophehurpeau/alp/commit/882938d))
|
|
505
|
-
* package.json to reduce vulnerabilities ([#1](https://github.com/christophehurpeau/alp/issues/1)) ([fab43b1](https://github.com/christophehurpeau/alp/commit/fab43b1))
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
### Features
|
|
509
|
-
|
|
510
|
-
* MongoUsersManager allow to extends user ([c00bc69](https://github.com/christophehurpeau/alp/commit/c00bc69))
|
|
511
|
-
* typescript ([3541e73](https://github.com/christophehurpeau/alp/commit/3541e73))
|
|
512
|
-
* update dependencies ([89f0c58](https://github.com/christophehurpeau/alp/commit/89f0c58))
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
### BREAKING CHANGES
|
|
516
|
-
|
|
517
|
-
* too many breaking changes
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
<a name="2.0.0"></a>
|
|
524
|
-
# [2.0.0](https://github.com/alpjs/alp-body-parser/compare/v1.0.2...v2.0.0) (2017-08-16)
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
### Features
|
|
528
|
-
|
|
529
|
-
* update dependencies ([e37d7e8](https://github.com/alpjs/alp-body-parser/commit/e37d7e8))
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
### v1.0.2
|
|
533
|
-
|
|
534
|
-
- [`c06ac23`](https://github.com/alpjs/alp-body-parser/commit/c06ac236517579f8ba9f2216d0e461d248ef8d75) fix ctx.request (Christophe Hurpeau)
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
### v1.0.1
|