@backstage/plugin-scaffolder-backend-module-rails 0.4.0-next.1 → 0.4.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 +14 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-rails
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 3d001a3bcf: **BREAKING**: Added a new `allowedImageNames` option, which needs to list any image name for it to be allowed as `imageName` input.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-common@0.13.3
|
|
13
|
+
- @backstage/plugin-scaffolder-backend@1.2.0
|
|
14
|
+
- @backstage/integration@1.2.0
|
|
15
|
+
- @backstage/config@1.0.1
|
|
16
|
+
|
|
3
17
|
## 0.4.0-next.1
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-rails",
|
|
3
3
|
"description": "A module for the scaffolder backend that lets you template projects using Rails",
|
|
4
|
-
"version": "0.4.0
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"clean": "backstage-cli package clean"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@backstage/backend-common": "^0.13.3
|
|
28
|
-
"@backstage/config": "^1.0.1
|
|
27
|
+
"@backstage/backend-common": "^0.13.3",
|
|
28
|
+
"@backstage/config": "^1.0.1",
|
|
29
29
|
"@backstage/errors": "^1.0.0",
|
|
30
|
-
"@backstage/integration": "^1.2.0
|
|
31
|
-
"@backstage/plugin-scaffolder-backend": "^1.2.0
|
|
30
|
+
"@backstage/integration": "^1.2.0",
|
|
31
|
+
"@backstage/plugin-scaffolder-backend": "^1.2.0",
|
|
32
32
|
"@backstage/types": "^1.0.0",
|
|
33
33
|
"command-exists": "^1.2.9",
|
|
34
34
|
"fs-extra": "^10.0.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@backstage/cli": "^0.17.1
|
|
37
|
+
"@backstage/cli": "^0.17.1",
|
|
38
38
|
"@types/command-exists": "^1.2.0",
|
|
39
39
|
"@types/fs-extra": "^9.0.1",
|
|
40
40
|
"@types/jest": "^26.0.7",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"files": [
|
|
47
47
|
"dist"
|
|
48
48
|
],
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
|
|
50
50
|
}
|