@backstage/plugin-catalog-backend-module-ldap 0.11.0-next.1 → 0.11.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 +32 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-ldap
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 732700a: Updated fix for ldap entity mapping which doesn't require extra config setting of dnCaseSensitive
|
|
8
|
+
- 95ac4a2: Add new ldap vendor config 'LLDAP'
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 5f04976: Fixed a bug that caused missing code in published packages.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-plugin-api@1.1.0
|
|
15
|
+
- @backstage/plugin-catalog-node@1.15.0
|
|
16
|
+
- @backstage/errors@1.2.6
|
|
17
|
+
- @backstage/catalog-model@1.7.2
|
|
18
|
+
- @backstage/config@1.3.1
|
|
19
|
+
- @backstage/types@1.2.0
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.2
|
|
21
|
+
|
|
22
|
+
## 0.11.0-next.2
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-plugin-api@1.1.0-next.2
|
|
28
|
+
- @backstage/errors@1.2.6-next.0
|
|
29
|
+
- @backstage/plugin-catalog-node@1.15.0-next.2
|
|
30
|
+
- @backstage/catalog-model@1.7.2-next.0
|
|
31
|
+
- @backstage/config@1.3.1-next.0
|
|
32
|
+
- @backstage/types@1.2.0
|
|
33
|
+
- @backstage/plugin-catalog-common@1.1.2-next.0
|
|
34
|
+
|
|
3
35
|
## 0.11.0-next.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-ldap",
|
|
3
|
-
"version": "0.11.0
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards LDAP",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "1.1.0
|
|
42
|
-
"@backstage/catalog-model": "1.7.
|
|
43
|
-
"@backstage/config": "1.3.
|
|
44
|
-
"@backstage/errors": "1.2.
|
|
45
|
-
"@backstage/plugin-catalog-common": "1.1.
|
|
46
|
-
"@backstage/plugin-catalog-node": "1.15.0
|
|
47
|
-
"@backstage/types": "1.2.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^1.1.0",
|
|
42
|
+
"@backstage/catalog-model": "^1.7.2",
|
|
43
|
+
"@backstage/config": "^1.3.1",
|
|
44
|
+
"@backstage/errors": "^1.2.6",
|
|
45
|
+
"@backstage/plugin-catalog-common": "^1.1.2",
|
|
46
|
+
"@backstage/plugin-catalog-node": "^1.15.0",
|
|
47
|
+
"@backstage/types": "^1.2.0",
|
|
48
48
|
"@types/ldapjs": "^2.2.5",
|
|
49
49
|
"ldapjs": "^2.3.3",
|
|
50
50
|
"lodash": "^4.17.21",
|
|
51
51
|
"uuid": "^11.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "0.29.
|
|
54
|
+
"@backstage/cli": "^0.29.4",
|
|
55
55
|
"@types/lodash": "^4.14.151"
|
|
56
56
|
},
|
|
57
57
|
"configSchema": "config.d.ts",
|