@backstage/plugin-catalog-node 1.1.0-next.2 → 1.1.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,22 @@
1
1
  # @backstage/plugin-catalog-node
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 9743bc788c: Added refresh function to the `EntityProviderConnection` to be able to schedule refreshes from entity providers.
8
+
9
+ ### Patch Changes
10
+
11
+ - 7d7d947352: Adds experimental `catalogServiceRef` for obtaining a `CatalogClient` in the new backend system.
12
+ - 409ed984e8: Updated usage of experimental backend service APIs.
13
+ - 62788b2ee8: The experimental `CatalogProcessingExtensionPoint` now accepts multiple providers and processors at once.
14
+ - Updated dependencies
15
+ - @backstage/backend-plugin-api@0.1.2
16
+ - @backstage/catalog-client@1.1.0
17
+ - @backstage/catalog-model@1.1.1
18
+ - @backstage/errors@1.1.1
19
+
3
20
  ## 1.1.0-next.2
4
21
 
5
22
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-node",
3
- "version": "1.1.0-next.2",
3
+ "version": "1.1.0",
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-node",
3
3
  "description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
4
- "version": "1.1.0-next.2",
4
+ "version": "1.1.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -24,20 +24,20 @@
24
24
  "postpack": "backstage-cli package postpack"
25
25
  },
26
26
  "dependencies": {
27
- "@backstage/backend-plugin-api": "^0.1.2-next.2",
28
- "@backstage/catalog-client": "^1.1.0-next.2",
29
- "@backstage/catalog-model": "^1.1.1-next.0",
30
- "@backstage/errors": "1.1.1-next.0",
27
+ "@backstage/backend-plugin-api": "^0.1.2",
28
+ "@backstage/catalog-client": "^1.1.0",
29
+ "@backstage/catalog-model": "^1.1.1",
30
+ "@backstage/errors": "1.1.1",
31
31
  "@backstage/types": "^1.0.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@backstage/backend-common": "^0.15.1-next.3",
35
- "@backstage/backend-test-utils": "^0.1.28-next.3",
36
- "@backstage/cli": "^0.19.0-next.3"
34
+ "@backstage/backend-common": "^0.15.1",
35
+ "@backstage/backend-test-utils": "^0.1.28",
36
+ "@backstage/cli": "^0.19.0"
37
37
  },
38
38
  "files": [
39
39
  "dist",
40
40
  "alpha"
41
41
  ],
42
- "gitHead": "2f458448f850dc68a711e2f31d14a91f96cf175d"
42
+ "gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
43
43
  }