@backstage-community/plugin-quay-backend 1.0.0 → 1.1.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.
- package/CHANGELOG.md +22 -0
- package/package.json +17 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage-community/plugin-quay-backend
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f84ad73: chore: remove homepage field from package.json
|
|
8
|
+
- Updated dependencies [f84ad73]
|
|
9
|
+
- @backstage-community/plugin-quay-common@1.7.1
|
|
10
|
+
|
|
11
|
+
## 1.1.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 110b103: Add scalprum configuration for generating OCI artifacts
|
|
16
|
+
- 1f3ea2f: Backstage version bump to v1.36.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- acf8999: Added missing `@backstage/plugin-permission-node` dependency
|
|
21
|
+
- Updated dependencies [973a5ef]
|
|
22
|
+
- Updated dependencies [1f3ea2f]
|
|
23
|
+
- @backstage-community/plugin-quay-common@1.7.0
|
|
24
|
+
|
|
3
25
|
## 1.0.0
|
|
4
26
|
|
|
5
27
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-quay-backend",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"@backstage-community/plugin-quay",
|
|
23
23
|
"@backstage-community/plugin-quay-backend",
|
|
24
24
|
"@backstage-community/plugin-quay-common"
|
|
25
|
-
]
|
|
25
|
+
],
|
|
26
|
+
"features": {
|
|
27
|
+
".": "@backstage/BackendFeature"
|
|
28
|
+
}
|
|
26
29
|
},
|
|
27
30
|
"scripts": {
|
|
28
31
|
"start": "backstage-cli package start",
|
|
@@ -34,17 +37,18 @@
|
|
|
34
37
|
"postpack": "backstage-cli package postpack"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
|
-
"@backstage-community/plugin-quay-common": "^1.
|
|
38
|
-
"@backstage/backend-defaults": "^0.
|
|
39
|
-
"@backstage/backend-plugin-api": "^1.
|
|
40
|
+
"@backstage-community/plugin-quay-common": "^1.7.1",
|
|
41
|
+
"@backstage/backend-defaults": "^0.8.1",
|
|
42
|
+
"@backstage/backend-plugin-api": "^1.2.0",
|
|
40
43
|
"@backstage/config": "^1.3.2",
|
|
41
|
-
"@backstage/plugin-catalog-node": "^1.
|
|
44
|
+
"@backstage/plugin-catalog-node": "^1.16.0",
|
|
42
45
|
"@backstage/plugin-permission-common": "^0.8.4",
|
|
46
|
+
"@backstage/plugin-permission-node": "^0.8.7",
|
|
43
47
|
"express": "^4.17.1",
|
|
44
48
|
"express-promise-router": "^4.1.0"
|
|
45
49
|
},
|
|
46
50
|
"devDependencies": {
|
|
47
|
-
"@backstage/cli": "^0.
|
|
51
|
+
"@backstage/cli": "^0.30.0",
|
|
48
52
|
"@types/express": "^4.17.6",
|
|
49
53
|
"@types/supertest": "^2.0.12",
|
|
50
54
|
"supertest": "^6.2.4"
|
|
@@ -53,11 +57,16 @@
|
|
|
53
57
|
"dist"
|
|
54
58
|
],
|
|
55
59
|
"configSchema": "config.d.ts",
|
|
56
|
-
"homepage": "https://red.ht/rhdh",
|
|
57
60
|
"bugs": "https://github.com/backstage/community-plugins/issues",
|
|
58
61
|
"maintainers": [
|
|
59
62
|
"@karthikjeeyar"
|
|
60
63
|
],
|
|
64
|
+
"scalprum": {
|
|
65
|
+
"name": "backstage-community.plugin-quay-backend",
|
|
66
|
+
"exposedModules": {
|
|
67
|
+
"PluginRoot": "./src/index.ts"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
61
70
|
"author": "Red Hat",
|
|
62
71
|
"typesVersions": {
|
|
63
72
|
"*": {
|