@backstage/plugin-catalog-backend-module-ldap 0.10.0-next.2 → 0.10.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +18 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @backstage/plugin-catalog-backend-module-ldap
2
2
 
3
+ ## 0.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - a9fc871: Fixed a bug that caused missing code in published packages.
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.0.2
10
+ - @backstage/catalog-model@1.7.1
11
+ - @backstage/config@1.3.0
12
+ - @backstage/errors@1.2.5
13
+ - @backstage/types@1.2.0
14
+ - @backstage/plugin-catalog-common@1.1.1
15
+ - @backstage/plugin-catalog-node@1.14.0
16
+
17
+ ## 0.10.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 415aeb3: Add Support for Google LDAP Vendor
22
+
23
+ ### Patch Changes
24
+
25
+ - 884a86c: Added a `dnCaseSensitive` flag to support LDAP servers with mixed-case attributes.
26
+ - 4e58bc7: Upgrade to uuid v11 internally
27
+ - Updated dependencies
28
+ - @backstage/config@1.3.0
29
+ - @backstage/types@1.2.0
30
+ - @backstage/plugin-catalog-node@1.14.0
31
+ - @backstage/backend-plugin-api@1.0.2
32
+ - @backstage/catalog-model@1.7.1
33
+ - @backstage/errors@1.2.5
34
+ - @backstage/plugin-catalog-common@1.1.1
35
+
3
36
  ## 0.10.0-next.2
4
37
 
5
38
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-ldap",
3
- "version": "0.10.0-next.2",
3
+ "version": "0.10.1",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards LDAP",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -38,21 +38,28 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.0.2-next.2",
42
- "@backstage/catalog-model": "1.7.0",
43
- "@backstage/config": "1.2.0",
44
- "@backstage/errors": "1.2.4",
45
- "@backstage/plugin-catalog-common": "1.1.0",
46
- "@backstage/plugin-catalog-node": "1.14.0-next.2",
47
- "@backstage/types": "1.1.1",
41
+ "@backstage/backend-plugin-api": "^1.0.2",
42
+ "@backstage/catalog-model": "^1.7.1",
43
+ "@backstage/config": "^1.3.0",
44
+ "@backstage/errors": "^1.2.5",
45
+ "@backstage/plugin-catalog-common": "^1.1.1",
46
+ "@backstage/plugin-catalog-node": "^1.14.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
- "uuid": "^9.0.0"
51
+ "uuid": "^11.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@backstage/cli": "0.29.0-next.2",
54
+ "@backstage/cli": "^0.29.2",
55
55
  "@types/lodash": "^4.14.151"
56
56
  },
57
- "configSchema": "config.d.ts"
57
+ "configSchema": "config.d.ts",
58
+ "typesVersions": {
59
+ "*": {
60
+ "index": [
61
+ "dist/index.d.ts"
62
+ ]
63
+ }
64
+ }
58
65
  }