@loopback/express 1.4.0 → 1.4.1
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 +8 -0
- package/dist/types.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [1.4.1](https://github.com/strongloop/loopback-next/compare/@loopback/express@1.4.0...@loopback/express@1.4.1) (2020-08-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/express
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.4.0](https://github.com/strongloop/loopback-next/compare/@loopback/express@1.3.0...@loopback/express@1.4.0) (2020-08-19)
|
|
7
15
|
|
|
8
16
|
|
package/dist/types.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.MiddlewareGroups = exports.MIDDLEWARE_CONTEXT = exports.DEFAULT_MIDDLEWARE_CHAIN = exports.MiddlewareChain = exports.MiddlewareContext = void 0;
|
|
7
|
+
exports.MiddlewareGroups = exports.MIDDLEWARE_CONTEXT = exports.DEFAULT_MIDDLEWARE_CHAIN = exports.MiddlewareChain = exports.MiddlewareContext = exports.Router = void 0;
|
|
8
8
|
const tslib_1 = require("tslib");
|
|
9
9
|
const core_1 = require("@loopback/core");
|
|
10
10
|
const on_finished_1 = tslib_1.__importDefault(require("on-finished"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/express",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Integrate with Express and expose middleware infrastructure for sequence and interceptors",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"!*/__tests__"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@loopback/core": "^2.9.
|
|
41
|
-
"@loopback/http-server": "^2.
|
|
40
|
+
"@loopback/core": "^2.9.5",
|
|
41
|
+
"@loopback/http-server": "^2.2.0",
|
|
42
42
|
"@types/body-parser": "^1.19.0",
|
|
43
43
|
"@types/express": "^4.17.7",
|
|
44
44
|
"@types/express-serve-static-core": "^4.17.9",
|
|
@@ -52,15 +52,15 @@
|
|
|
52
52
|
"tslib": "^2.0.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@loopback/build": "^6.2.
|
|
56
|
-
"@loopback/testlab": "^3.2.
|
|
55
|
+
"@loopback/build": "^6.2.2",
|
|
56
|
+
"@loopback/testlab": "^3.2.4",
|
|
57
57
|
"@types/debug": "^4.1.5",
|
|
58
58
|
"@types/node": "^10.17.28",
|
|
59
59
|
"@types/on-finished": "^2.3.1",
|
|
60
60
|
"@types/toposort": "^2.0.3",
|
|
61
61
|
"http-errors": "^1.8.0",
|
|
62
62
|
"source-map-support": "^0.5.19",
|
|
63
|
-
"typescript": "~
|
|
63
|
+
"typescript": "~4.0.2"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "a3f54273814de63819e0d8bc86509f8a737800bb"
|
|
66
66
|
}
|