@backstage/plugin-catalog-backend 1.1.2-next.2 → 1.1.2

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,27 @@
1
1
  # @backstage/plugin-catalog-backend
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 16a40ac4c0: Fix wrong return type of the `isGroupEntity` function.
8
+ - 55e09b29dd: Fixing broken types for `knex` when checking returned rows
9
+ - 1ccbe081cc: Minor internal tweak to support TypeScript 4.6
10
+ - cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
11
+ - 2909746147: Updated parseEntityTransformParams to handle keys with '.' in them. This will allow for querying of entities based off annotations such as 'backstage.io/orgin-location' or other entity field keys that have '.' in them.
12
+ - 8cc75993a6: Fixed issue in `PermissionEvaluator` instance check that would cause unexpected "invalid union" errors.
13
+ - Updated dependencies
14
+ - @backstage/backend-common@0.13.3
15
+ - @backstage/integration@1.2.0
16
+ - @backstage/plugin-scaffolder-common@1.1.0
17
+ - @backstage/config@1.0.1
18
+ - @backstage/plugin-search-common@0.3.4
19
+ - @backstage/catalog-client@1.0.2
20
+ - @backstage/catalog-model@1.0.2
21
+ - @backstage/plugin-catalog-common@1.0.2
22
+ - @backstage/plugin-permission-common@0.6.1
23
+ - @backstage/plugin-permission-node@0.6.1
24
+
3
25
  ## 1.1.2-next.2
4
26
 
5
27
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend",
3
- "version": "1.1.2-next.2",
3
+ "version": "1.1.2",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend",
3
3
  "description": "The Backstage backend plugin that provides the Backstage catalog",
4
- "version": "1.1.2-next.2",
4
+ "version": "1.1.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,17 +34,17 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.13.3-next.2",
38
- "@backstage/catalog-client": "^1.0.2-next.0",
39
- "@backstage/catalog-model": "^1.0.2-next.0",
40
- "@backstage/config": "^1.0.1-next.0",
37
+ "@backstage/backend-common": "^0.13.3",
38
+ "@backstage/catalog-client": "^1.0.2",
39
+ "@backstage/catalog-model": "^1.0.2",
40
+ "@backstage/config": "^1.0.1",
41
41
  "@backstage/errors": "^1.0.0",
42
- "@backstage/integration": "^1.2.0-next.1",
43
- "@backstage/plugin-catalog-common": "^1.0.2-next.0",
44
- "@backstage/plugin-permission-common": "^0.6.1-next.0",
45
- "@backstage/plugin-permission-node": "^0.6.1-next.1",
46
- "@backstage/plugin-scaffolder-common": "^1.1.0-next.0",
47
- "@backstage/plugin-search-common": "^0.3.4-next.0",
42
+ "@backstage/integration": "^1.2.0",
43
+ "@backstage/plugin-catalog-common": "^1.0.2",
44
+ "@backstage/plugin-permission-common": "^0.6.1",
45
+ "@backstage/plugin-permission-node": "^0.6.1",
46
+ "@backstage/plugin-scaffolder-common": "^1.1.0",
47
+ "@backstage/plugin-search-common": "^0.3.4",
48
48
  "@backstage/types": "^1.0.0",
49
49
  "@types/express": "^4.17.6",
50
50
  "codeowners-utils": "^1.0.2",
@@ -68,10 +68,10 @@
68
68
  "zod": "^3.11.6"
69
69
  },
70
70
  "devDependencies": {
71
- "@backstage/backend-test-utils": "^0.1.24-next.1",
72
- "@backstage/cli": "^0.17.1-next.2",
73
- "@backstage/plugin-permission-common": "^0.6.1-next.0",
74
- "@backstage/plugin-search-backend-node": "0.6.1-next.1",
71
+ "@backstage/backend-test-utils": "^0.1.24",
72
+ "@backstage/cli": "^0.17.1",
73
+ "@backstage/plugin-permission-common": "^0.6.1",
74
+ "@backstage/plugin-search-backend-node": "0.6.1",
75
75
  "@types/core-js": "^2.5.4",
76
76
  "@types/git-url-parse": "^9.0.0",
77
77
  "@types/lodash": "^4.14.151",
@@ -90,5 +90,5 @@
90
90
  "config.d.ts"
91
91
  ],
92
92
  "configSchema": "config.d.ts",
93
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
93
+ "gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
94
94
  }