@loopback/core 1.12.1 → 1.12.2
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/extension-point.d.ts +1 -1
- package/package.json +6 -6
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.12.2](https://github.com/strongloop/loopback-next/compare/@loopback/core@1.12.1...@loopback/core@1.12.2) (2020-01-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.12.1](https://github.com/strongloop/loopback-next/compare/@loopback/core@1.12.0...@loopback/core@1.12.1) (2020-01-07)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @loopback/core
|
|
@@ -47,7 +47,7 @@ export declare function extensions(extensionPointName?: string): (target: Object
|
|
|
47
47
|
* extension point
|
|
48
48
|
* @param extensionPointName - Name of the extension point
|
|
49
49
|
*/
|
|
50
|
-
export declare function extensionFilter(extensionPointName: string): import("@loopback/context").
|
|
50
|
+
export declare function extensionFilter(extensionPointName: string): import("@loopback/context").BindingTagFilter;
|
|
51
51
|
/**
|
|
52
52
|
* A factory function to create binding template for extensions of the given
|
|
53
53
|
* extension point
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/core",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "LoopBack 4 core",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=8.9"
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"copyright.owner": "IBM Corp.",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@loopback/context": "^
|
|
22
|
+
"@loopback/context": "^2.0.0",
|
|
23
23
|
"debug": "^4.1.1",
|
|
24
24
|
"p-event": "^4.1.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@loopback/build": "^3.0
|
|
28
|
-
"@loopback/eslint-config": "^5.0.
|
|
29
|
-
"@loopback/testlab": "^1.10.
|
|
27
|
+
"@loopback/build": "^3.1.0",
|
|
28
|
+
"@loopback/eslint-config": "^5.0.2",
|
|
29
|
+
"@loopback/testlab": "^1.10.2",
|
|
30
30
|
"@types/debug": "^4.1.5",
|
|
31
31
|
"@types/node": "^10.17.13"
|
|
32
32
|
},
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"url": "https://github.com/strongloop/loopback-next.git",
|
|
44
44
|
"directory": "packages/core"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "d08f135a0d1040edc61497739a8d86a866e4e29a"
|
|
47
47
|
}
|