@backstage/plugin-catalog-node 1.14.0-next.2 → 1.14.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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-catalog-node
2
2
 
3
+ ## 1.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bc13b42: The `catalogServiceRef` now has its own accompanying `CatalogService` interface that requires Backstage `credentials` objects to be passed. This new version of the `catalogServiceRef` has been promoted and is now available via the main `@backstage/plugin-catalog-node` entry point.
8
+
9
+ The old `catalogServiceRef` with the old `CatalogApi` type is still available from the `/alpha` entry point.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/catalog-client@1.8.0
15
+ - @backstage/types@1.2.0
16
+ - @backstage/backend-plugin-api@1.0.2
17
+ - @backstage/plugin-permission-common@0.8.2
18
+ - @backstage/catalog-model@1.7.1
19
+ - @backstage/errors@1.2.5
20
+ - @backstage/plugin-catalog-common@1.1.1
21
+ - @backstage/plugin-permission-node@0.8.5
22
+
3
23
  ## 1.14.0-next.2
4
24
 
5
25
  ### Patch Changes
package/dist/alpha.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
2
2
  import { CatalogApi } from '@backstage/catalog-client';
3
3
  import { Entity, Validators } from '@backstage/catalog-model';
4
- import { CatalogProcessor, EntityProvider, PlaceholderResolver, CatalogProcessorParser, LocationAnalyzer, ScmLocationAnalyzer, EntitiesSearchFilter } from '@backstage/plugin-catalog-node';
4
+ import { CatalogProcessor, EntityProvider, PlaceholderResolver, LocationAnalyzer, ScmLocationAnalyzer, EntitiesSearchFilter, CatalogProcessorParser } from '@backstage/plugin-catalog-node';
5
5
  import { PermissionRuleParams, Permission } from '@backstage/plugin-permission-common';
6
6
  import { PermissionRule } from '@backstage/plugin-permission-node';
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-node",
3
- "version": "1.14.0-next.2",
3
+ "version": "1.14.0",
4
4
  "description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -46,10 +46,21 @@
46
46
  },
47
47
  "main": "./dist/index.cjs.js",
48
48
  "types": "./dist/index.d.ts",
49
+ "typesVersions": {
50
+ "*": {
51
+ "index": [
52
+ "dist/index.d.ts"
53
+ ],
54
+ "alpha": [
55
+ "dist/alpha.d.ts"
56
+ ],
57
+ "testUtils": [
58
+ "dist/testUtils.d.ts"
59
+ ]
60
+ }
61
+ },
49
62
  "files": [
50
- "dist",
51
- "alpha",
52
- "testUtils"
63
+ "dist"
53
64
  ],
54
65
  "scripts": {
55
66
  "build": "backstage-cli package build",
@@ -61,18 +72,18 @@
61
72
  "test": "backstage-cli package test"
62
73
  },
63
74
  "dependencies": {
64
- "@backstage/backend-plugin-api": "1.0.2-next.2",
65
- "@backstage/catalog-client": "1.8.0-next.1",
66
- "@backstage/catalog-model": "1.7.0",
67
- "@backstage/errors": "1.2.4",
68
- "@backstage/plugin-catalog-common": "1.1.0",
69
- "@backstage/plugin-permission-common": "0.8.1",
70
- "@backstage/plugin-permission-node": "0.8.5-next.2",
71
- "@backstage/types": "1.1.1"
75
+ "@backstage/backend-plugin-api": "^1.0.2",
76
+ "@backstage/catalog-client": "^1.8.0",
77
+ "@backstage/catalog-model": "^1.7.1",
78
+ "@backstage/errors": "^1.2.5",
79
+ "@backstage/plugin-catalog-common": "^1.1.1",
80
+ "@backstage/plugin-permission-common": "^0.8.2",
81
+ "@backstage/plugin-permission-node": "^0.8.5",
82
+ "@backstage/types": "^1.2.0"
72
83
  },
73
84
  "devDependencies": {
74
- "@backstage/backend-test-utils": "1.1.0-next.2",
75
- "@backstage/cli": "0.29.0-next.2",
85
+ "@backstage/backend-test-utils": "^1.1.0",
86
+ "@backstage/cli": "^0.29.0",
76
87
  "msw": "^1.0.0"
77
88
  }
78
89
  }
@@ -1,6 +0,0 @@
1
- {
2
- "name": "@backstage/plugin-catalog-node__alpha",
3
- "version": "1.14.0-next.2",
4
- "main": "../dist/alpha.cjs.js",
5
- "types": "../dist/alpha.d.ts"
6
- }
@@ -1,6 +0,0 @@
1
- {
2
- "name": "@backstage/plugin-catalog-node__testutils",
3
- "version": "1.14.0-next.2",
4
- "main": "../dist/testUtils.cjs.js",
5
- "types": "../dist/testUtils.d.ts"
6
- }