alp-body-parser 8.1.1 → 9.0.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/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [9.0.0](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.1...alp-body-parser@9.0.0) (2024-01-06)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * merge to alp-node to improve maintenability, remove alp-types
12
+
13
+ ### Features
14
+
15
+ * merge to alp-node to improve maintenability, remove alp-types ([ead9a2f](https://github.com/christophehurpeau/alp/commit/ead9a2fd1bcbedce0be29ea0e444c5cead99c64d))
16
+
17
+ Version bump for dependency: alp-node
18
+
19
+
6
20
  ## [8.1.1](https://github.com/christophehurpeau/alp/compare/alp-body-parser@8.1.0...alp-body-parser@8.1.1) (2024-01-06)
7
21
 
8
22
  Note: no notable changes
package/README.md CHANGED
@@ -23,7 +23,7 @@ npm install --save alp-body-parser
23
23
 
24
24
  ```js
25
25
  import Koa from 'koa';
26
- import config from 'alp-node-config';
26
+ import { config } from 'alp-node';
27
27
  import bodyParser from 'alp-body-parser';
28
28
 
29
29
  const app = new Koa();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-body-parser",
3
- "version": "8.1.1",
3
+ "version": "9.0.0",
4
4
  "description": "body parser in alp framework",
5
5
  "keywords": [
6
6
  "alp",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "prettier": "@pob/root/prettier-config",
61
61
  "peerDependencies": {
62
- "alp-node": "^6.0.0"
62
+ "alp-node": "^7.0.0"
63
63
  },
64
64
  "dependencies": {
65
65
  "@types/co-body": "^6.0.0",