@backstage/plugin-catalog-backend-module-ldap 0.0.0-nightly-20220216022224 → 0.0.0-nightly-20220217022146
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 +7 -4
- package/package.json +17 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-ldap
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220217022146
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- c77c5c7eb6: Added `backstage.role` to `package.json`
|
|
7
8
|
- 244d24ebc4: Import `Location` from the `@backstage/catalog-client` package.
|
|
8
9
|
- 27eccab216: Replaces use of deprecated catalog-model constants.
|
|
9
10
|
- Updated dependencies
|
|
10
|
-
- @backstage/plugin-catalog-backend@0.0.0-nightly-
|
|
11
|
-
- @backstage/errors@0.0.0-nightly-
|
|
12
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
11
|
+
- @backstage/plugin-catalog-backend@0.0.0-nightly-20220217022146
|
|
12
|
+
- @backstage/errors@0.0.0-nightly-20220217022146
|
|
13
|
+
- @backstage/catalog-model@0.0.0-nightly-20220217022146
|
|
14
|
+
- @backstage/config@0.0.0-nightly-20220217022146
|
|
15
|
+
- @backstage/types@0.0.0-nightly-20220217022146
|
|
13
16
|
|
|
14
17
|
## 0.3.12
|
|
15
18
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-ldap",
|
|
3
3
|
"description": "A Backstage catalog backend modules that helps integrate towards LDAP",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20220217022146",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"main": "dist/index.cjs.js",
|
|
12
12
|
"types": "dist/index.d.ts"
|
|
13
13
|
},
|
|
14
|
+
"backstage": {
|
|
15
|
+
"role": "backend-plugin-module"
|
|
16
|
+
},
|
|
14
17
|
"homepage": "https://backstage.io",
|
|
15
18
|
"repository": {
|
|
16
19
|
"type": "git",
|
|
@@ -21,26 +24,27 @@
|
|
|
21
24
|
"backstage"
|
|
22
25
|
],
|
|
23
26
|
"scripts": {
|
|
24
|
-
"build": "backstage-cli
|
|
25
|
-
"lint": "backstage-cli lint",
|
|
26
|
-
"test": "backstage-cli test",
|
|
27
|
-
"prepack": "backstage-cli prepack",
|
|
28
|
-
"postpack": "backstage-cli postpack",
|
|
29
|
-
"clean": "backstage-cli clean"
|
|
27
|
+
"build": "backstage-cli package build",
|
|
28
|
+
"lint": "backstage-cli package lint",
|
|
29
|
+
"test": "backstage-cli package test",
|
|
30
|
+
"prepack": "backstage-cli package prepack",
|
|
31
|
+
"postpack": "backstage-cli package postpack",
|
|
32
|
+
"clean": "backstage-cli package clean",
|
|
33
|
+
"start": "backstage-cli package start"
|
|
30
34
|
},
|
|
31
35
|
"dependencies": {
|
|
32
|
-
"@backstage/catalog-model": "^0.0.0-nightly-
|
|
33
|
-
"@backstage/config": "^0.
|
|
34
|
-
"@backstage/errors": "^0.0.0-nightly-
|
|
35
|
-
"@backstage/plugin-catalog-backend": "^0.0.0-nightly-
|
|
36
|
-
"@backstage/types": "^0.
|
|
36
|
+
"@backstage/catalog-model": "^0.0.0-nightly-20220217022146",
|
|
37
|
+
"@backstage/config": "^0.0.0-nightly-20220217022146",
|
|
38
|
+
"@backstage/errors": "^0.0.0-nightly-20220217022146",
|
|
39
|
+
"@backstage/plugin-catalog-backend": "^0.0.0-nightly-20220217022146",
|
|
40
|
+
"@backstage/types": "^0.0.0-nightly-20220217022146",
|
|
37
41
|
"@types/ldapjs": "^2.2.0",
|
|
38
42
|
"ldapjs": "^2.2.0",
|
|
39
43
|
"lodash": "^4.17.21",
|
|
40
44
|
"winston": "^3.2.1"
|
|
41
45
|
},
|
|
42
46
|
"devDependencies": {
|
|
43
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
47
|
+
"@backstage/cli": "^0.0.0-nightly-20220217022146",
|
|
44
48
|
"@types/lodash": "^4.14.151"
|
|
45
49
|
},
|
|
46
50
|
"files": [
|