@backstage/plugin-catalog-backend-module-ldap 0.11.3-next.2 → 0.11.4-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +12 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-catalog-backend-module-ldap
2
2
 
3
+ ## 0.11.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-node@1.16.3-next.0
9
+ - @backstage/backend-plugin-api@1.2.1
10
+ - @backstage/catalog-model@1.7.3
11
+ - @backstage/config@1.3.2
12
+ - @backstage/errors@1.2.7
13
+ - @backstage/types@1.2.1
14
+ - @backstage/plugin-catalog-common@1.1.3
15
+
16
+ ## 0.11.3
17
+
18
+ ### Patch Changes
19
+
20
+ - e43f41b: Fix `config.d.ts` for `ldapOrg` being incorrect. The documentation says a single
21
+ object or an array are accepted, but the definition only allows an object.
22
+ - Updated dependencies
23
+ - @backstage/backend-plugin-api@1.2.1
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
+ - @backstage/plugin-catalog-node@1.16.1
30
+
3
31
  ## 0.11.3-next.2
4
32
 
5
33
  ### 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.3-next.2",
3
+ "version": "0.11.4-next.0",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards LDAP",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -41,12 +41,12 @@
41
41
  "test": "backstage-cli package test"
42
42
  },
43
43
  "dependencies": {
44
- "@backstage/backend-plugin-api": "1.2.1-next.1",
44
+ "@backstage/backend-plugin-api": "1.2.1",
45
45
  "@backstage/catalog-model": "1.7.3",
46
46
  "@backstage/config": "1.3.2",
47
47
  "@backstage/errors": "1.2.7",
48
48
  "@backstage/plugin-catalog-common": "1.1.3",
49
- "@backstage/plugin-catalog-node": "1.16.1-next.1",
49
+ "@backstage/plugin-catalog-node": "1.16.3-next.0",
50
50
  "@backstage/types": "1.2.1",
51
51
  "@types/ldapjs": "^2.2.5",
52
52
  "ldapjs": "^2.3.3",
@@ -54,8 +54,15 @@
54
54
  "uuid": "^11.0.0"
55
55
  },
56
56
  "devDependencies": {
57
- "@backstage/cli": "0.31.0-next.1",
57
+ "@backstage/cli": "0.32.0-next.2",
58
58
  "@types/lodash": "^4.14.151"
59
59
  },
60
- "configSchema": "config.d.ts"
60
+ "configSchema": "config.d.ts",
61
+ "typesVersions": {
62
+ "*": {
63
+ "package.json": [
64
+ "package.json"
65
+ ]
66
+ }
67
+ }
61
68
  }