@backstage/plugin-scaffolder-backend-module-cookiecutter 0.2.14-next.2 → 0.2.14-next.3

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,18 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-cookiecutter
2
2
 
3
+ ## 0.2.14-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 935b66a646: Change step output template examples to use square bracket syntax.
8
+ - Updated dependencies
9
+ - @backstage/plugin-scaffolder-backend@1.9.0-next.3
10
+ - @backstage/backend-common@0.17.0-next.3
11
+ - @backstage/config@1.0.5-next.1
12
+ - @backstage/errors@1.1.4-next.1
13
+ - @backstage/integration@1.4.1-next.1
14
+ - @backstage/types@1.0.2-next.1
15
+
3
16
  ## 0.2.14-next.2
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -129,7 +129,7 @@ spec:
129
129
  name: Register
130
130
  action: catalog:register
131
131
  input:
132
- repoContentsUrl: ${{ steps.publish.output.repoContentsUrl }}
132
+ repoContentsUrl: ${{ steps['publish'].output.repoContentsUrl }}
133
133
  catalogInfoPath: '/catalog-info.yaml'
134
134
 
135
135
  - name: Results
@@ -141,10 +141,10 @@ spec:
141
141
  output:
142
142
  links:
143
143
  - title: Repository
144
- url: ${{ steps.publish.output.remoteUrl }}
144
+ url: ${{ steps['publish'].output.remoteUrl }}
145
145
  - title: Open in catalog
146
146
  icon: catalog
147
- entityRef: ${{ steps.register.output.entityRef }}
147
+ entityRef: ${{ steps['register'].output.entityRef }}
148
148
  ```
149
149
 
150
150
  You can also visit the `/create/actions` route in your Backstage application to find out more about the parameters this action accepts when it's installed to configure how you like.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-cookiecutter",
3
3
  "description": "A module for the scaffolder backend that lets you template projects using cookiecutter",
4
- "version": "0.2.14-next.2",
4
+ "version": "0.2.14-next.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,11 +23,11 @@
23
23
  "clean": "backstage-cli package clean"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.17.0-next.2",
26
+ "@backstage/backend-common": "^0.17.0-next.3",
27
27
  "@backstage/config": "^1.0.5-next.1",
28
28
  "@backstage/errors": "^1.1.4-next.1",
29
29
  "@backstage/integration": "^1.4.1-next.1",
30
- "@backstage/plugin-scaffolder-backend": "^1.9.0-next.2",
30
+ "@backstage/plugin-scaffolder-backend": "^1.9.0-next.3",
31
31
  "@backstage/types": "^1.0.2-next.1",
32
32
  "command-exists": "^1.2.9",
33
33
  "fs-extra": "10.1.0",
@@ -35,7 +35,7 @@
35
35
  "yn": "^4.0.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@backstage/cli": "^0.21.2-next.2",
38
+ "@backstage/cli": "^0.22.0-next.4",
39
39
  "@types/command-exists": "^1.2.0",
40
40
  "@types/fs-extra": "^9.0.1",
41
41
  "@types/mock-fs": "^4.13.0",