@loopback/express 3.2.1 → 3.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +27 -27
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ # [3.3.0](https://github.com/strongloop/loopback-next/compare/@loopback/express@3.2.1...@loopback/express@3.3.0) (2021-05-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * support node v16 ([ac99415](https://github.com/strongloop/loopback-next/commit/ac994154543bde22b4482ba98813351656db1b55))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.2.1](https://github.com/strongloop/loopback-next/compare/@loopback/express@3.2.0...@loopback/express@3.2.1) (2021-04-06)
7
18
 
8
19
  **Note:** Version bump only for package @loopback/express
package/package.json CHANGED
@@ -1,15 +1,23 @@
1
1
  {
2
2
  "name": "@loopback/express",
3
- "version": "3.2.1",
4
3
  "description": "Integrate with Express and expose middleware infrastructure for sequence and interceptors",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
4
+ "version": "3.3.0",
7
5
  "keywords": [
8
6
  "loopback-extension",
9
7
  "loopback"
10
8
  ],
9
+ "license": "MIT",
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "author": "IBM Corp.",
13
+ "copyright.owner": "IBM Corp.",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/strongloop/loopback-next.git",
17
+ "directory": "packages/express"
18
+ },
11
19
  "engines": {
12
- "node": "^10.16 || 12 || 14 || 15"
20
+ "node": "^10.16 || 12 || 14 || 16"
13
21
  },
14
22
  "scripts": {
15
23
  "build": "lb-tsc",
@@ -19,22 +27,20 @@
19
27
  "test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js",
20
28
  "clean": "lb-clean dist *.tsbuildinfo .eslintcache"
21
29
  },
22
- "repository": {
23
- "type": "git",
24
- "url": "https://github.com/strongloop/loopback-next.git",
25
- "directory": "packages/express"
26
- },
27
- "author": "IBM Corp.",
28
- "copyright.owner": "IBM Corp.",
29
- "license": "MIT",
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
+ "files": [
34
+ "README.md",
35
+ "dist",
36
+ "src",
37
+ "!*/__tests__"
38
+ ],
33
39
  "peerDependencies": {
34
- "@loopback/core": "^2.15.1"
40
+ "@loopback/core": "^2.16.0"
35
41
  },
36
42
  "dependencies": {
37
- "@loopback/http-server": "^2.4.1",
43
+ "@loopback/http-server": "^2.5.0",
38
44
  "@types/body-parser": "^1.19.0",
39
45
  "@types/express": "^4.17.11",
40
46
  "@types/express-serve-static-core": "^4.17.19",
@@ -45,25 +51,19 @@
45
51
  "http-errors": "^1.8.0",
46
52
  "on-finished": "^2.3.0",
47
53
  "toposort": "^2.0.2",
48
- "tslib": "^2.1.0"
54
+ "tslib": "^2.2.0"
49
55
  },
50
56
  "devDependencies": {
51
- "@loopback/build": "^6.3.1",
52
- "@loopback/core": "^2.15.1",
53
- "@loopback/testlab": "^3.3.1",
57
+ "@loopback/build": "^6.4.0",
58
+ "@loopback/core": "^2.16.0",
59
+ "@loopback/testlab": "^3.4.0",
54
60
  "@types/debug": "^4.1.5",
55
- "@types/node": "^10.17.56",
61
+ "@types/node": "^10.17.59",
56
62
  "@types/on-finished": "^2.3.1",
57
63
  "@types/toposort": "^2.0.3",
58
64
  "http-errors": "^1.8.0",
59
65
  "source-map-support": "^0.5.19",
60
- "typescript": "~4.2.3"
66
+ "typescript": "~4.2.4"
61
67
  },
62
- "files": [
63
- "README.md",
64
- "dist",
65
- "src",
66
- "!*/__tests__"
67
- ],
68
- "gitHead": "156ca0fcf8fa246ca380ab28b44b3708896be2b6"
68
+ "gitHead": "2ca802912d8c7750d0256f3c3d493c4525415201"
69
69
  }