@backstage/plugin-catalog-backend 1.17.0-next.1 → 1.17.0-next.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,30 @@
1
1
  # @backstage/plugin-catalog-backend
2
2
 
3
+ ## 1.17.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 9aac2b0: Use `--cwd` as the first `yarn` argument
8
+ - Updated dependencies
9
+ - @backstage/repo-tools@0.6.0-next.2
10
+ - @backstage/backend-common@0.21.0-next.2
11
+ - @backstage/plugin-search-backend-module-catalog@0.1.14-next.2
12
+ - @backstage/backend-plugin-api@0.6.10-next.2
13
+ - @backstage/backend-tasks@0.5.15-next.2
14
+ - @backstage/plugin-auth-node@0.4.4-next.2
15
+ - @backstage/plugin-permission-node@0.7.21-next.2
16
+ - @backstage/backend-openapi-utils@0.1.3-next.2
17
+ - @backstage/plugin-catalog-node@1.6.2-next.2
18
+ - @backstage/plugin-events-node@0.2.19-next.2
19
+ - @backstage/config@1.1.1
20
+ - @backstage/catalog-client@1.6.0-next.1
21
+ - @backstage/catalog-model@1.4.4-next.0
22
+ - @backstage/errors@1.2.3
23
+ - @backstage/integration@1.9.0-next.0
24
+ - @backstage/types@1.1.1
25
+ - @backstage/plugin-catalog-common@1.0.21-next.0
26
+ - @backstage/plugin-permission-common@0.7.12
27
+
3
28
  ## 1.17.0-next.1
4
29
 
5
30
  ### Minor Changes
package/README.md CHANGED
@@ -27,7 +27,7 @@ restoring the plugin, if you previously removed it.
27
27
 
28
28
  ```bash
29
29
  # From your Backstage root directory
30
- yarn add --cwd packages/backend @backstage/plugin-catalog-backend
30
+ yarn --cwd packages/backend add @backstage/plugin-catalog-backend
31
31
  ```
32
32
 
33
33
  ### Adding the plugin to your `packages/backend`
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend",
3
- "version": "1.17.0-next.1",
3
+ "version": "1.17.0-next.2",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/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.17.0-next.1",
4
+ "version": "1.17.0-next.2",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -40,25 +40,27 @@
40
40
  "test": "backstage-cli package test",
41
41
  "prepack": "backstage-cli package prepack",
42
42
  "postpack": "backstage-cli package postpack",
43
- "clean": "backstage-cli package clean"
43
+ "clean": "backstage-cli package clean",
44
+ "generate": "backstage-repo-tools package schema openapi generate --server --client-package packages/catalog-client"
44
45
  },
45
46
  "dependencies": {
46
- "@backstage/backend-common": "^0.21.0-next.1",
47
- "@backstage/backend-openapi-utils": "^0.1.3-next.1",
48
- "@backstage/backend-plugin-api": "^0.6.10-next.1",
49
- "@backstage/backend-tasks": "^0.5.15-next.1",
47
+ "@backstage/backend-common": "^0.21.0-next.2",
48
+ "@backstage/backend-openapi-utils": "^0.1.3-next.2",
49
+ "@backstage/backend-plugin-api": "^0.6.10-next.2",
50
+ "@backstage/backend-tasks": "^0.5.15-next.2",
50
51
  "@backstage/catalog-client": "^1.6.0-next.1",
51
52
  "@backstage/catalog-model": "^1.4.4-next.0",
52
53
  "@backstage/config": "^1.1.1",
53
54
  "@backstage/errors": "^1.2.3",
54
55
  "@backstage/integration": "^1.9.0-next.0",
55
- "@backstage/plugin-auth-node": "^0.4.4-next.1",
56
+ "@backstage/plugin-auth-node": "^0.4.4-next.2",
56
57
  "@backstage/plugin-catalog-common": "^1.0.21-next.0",
57
- "@backstage/plugin-catalog-node": "^1.6.2-next.1",
58
- "@backstage/plugin-events-node": "^0.2.19-next.1",
58
+ "@backstage/plugin-catalog-node": "^1.6.2-next.2",
59
+ "@backstage/plugin-events-node": "^0.2.19-next.2",
59
60
  "@backstage/plugin-permission-common": "^0.7.12",
60
- "@backstage/plugin-permission-node": "^0.7.21-next.1",
61
- "@backstage/plugin-search-backend-module-catalog": "^0.1.14-next.1",
61
+ "@backstage/plugin-permission-node": "^0.7.21-next.2",
62
+ "@backstage/plugin-search-backend-module-catalog": "^0.1.14-next.2",
63
+ "@backstage/repo-tools": "^0.6.0-next.2",
62
64
  "@backstage/types": "^1.1.1",
63
65
  "@opentelemetry/api": "^1.3.0",
64
66
  "@types/express": "^4.17.6",
@@ -83,8 +85,8 @@
83
85
  "zod": "^3.22.4"
84
86
  },
85
87
  "devDependencies": {
86
- "@backstage/backend-test-utils": "^0.3.0-next.1",
87
- "@backstage/cli": "^0.25.2-next.1",
88
+ "@backstage/backend-test-utils": "^0.3.0-next.2",
89
+ "@backstage/cli": "^0.25.2-next.2",
88
90
  "@backstage/plugin-permission-common": "^0.7.12",
89
91
  "@types/core-js": "^2.5.4",
90
92
  "@types/git-url-parse": "^9.0.0",