@backstage/plugin-catalog-backend-module-ldap 0.11.1 → 0.11.2-next.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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-catalog-backend-module-ldap
2
2
 
3
+ ## 0.11.2-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 636744a: Make `ldapOrg` config key optional
8
+ - Updated dependencies
9
+ - @backstage/plugin-catalog-node@1.16.0-next.1
10
+ - @backstage/backend-plugin-api@1.2.0-next.0
11
+ - @backstage/catalog-model@1.7.3
12
+ - @backstage/config@1.3.2
13
+ - @backstage/errors@1.2.7
14
+ - @backstage/types@1.2.1
15
+ - @backstage/plugin-catalog-common@1.1.3
16
+
17
+ ## 0.11.2-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/plugin-catalog-node@1.15.2-next.0
23
+ - @backstage/backend-plugin-api@1.2.0-next.0
24
+ - @backstage/catalog-model@1.7.3
25
+ - @backstage/config@1.3.2
26
+ - @backstage/errors@1.2.7
27
+ - @backstage/types@1.2.1
28
+ - @backstage/plugin-catalog-common@1.1.3
29
+
3
30
  ## 0.11.1
4
31
 
5
32
  ### Patch Changes
package/config.d.ts CHANGED
@@ -437,7 +437,7 @@ export interface Config {
437
437
  /**
438
438
  * LdapOrg provider key
439
439
  */
440
- ldapOrg: {
440
+ ldapOrg?: {
441
441
  /**
442
442
  * Id of the LdapOrg provider
443
443
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-ldap",
3
- "version": "0.11.1",
3
+ "version": "0.11.2-next.1",
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.1",
42
- "@backstage/catalog-model": "^1.7.3",
43
- "@backstage/config": "^1.3.2",
44
- "@backstage/errors": "^1.2.7",
45
- "@backstage/plugin-catalog-common": "^1.1.3",
46
- "@backstage/plugin-catalog-node": "^1.15.1",
47
- "@backstage/types": "^1.2.1",
41
+ "@backstage/backend-plugin-api": "1.2.0-next.0",
42
+ "@backstage/catalog-model": "1.7.3",
43
+ "@backstage/config": "1.3.2",
44
+ "@backstage/errors": "1.2.7",
45
+ "@backstage/plugin-catalog-common": "1.1.3",
46
+ "@backstage/plugin-catalog-node": "1.16.0-next.1",
47
+ "@backstage/types": "1.2.1",
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.5",
54
+ "@backstage/cli": "0.30.0-next.1",
55
55
  "@types/lodash": "^4.14.151"
56
56
  },
57
57
  "configSchema": "config.d.ts",