@backstage/plugin-scaffolder-backend-module-rails 0.3.0 → 0.3.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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-rails
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/backend-common@0.10.9
10
+ - @backstage/config@0.1.15
11
+ - @backstage/errors@0.2.2
12
+ - @backstage/integration@0.7.4
13
+ - @backstage/types@0.1.3
14
+ - @backstage/plugin-scaffolder-backend@0.16.1
15
+
3
16
  ## 0.3.0
4
17
 
5
18
  ### Minor Changes
@@ -0,0 +1,27 @@
1
+ import * as _backstage_plugin_scaffolder_backend from '@backstage/plugin-scaffolder-backend';
2
+ import { UrlReader, ContainerRunner } from '@backstage/backend-common';
3
+ import { JsonObject } from '@backstage/types';
4
+ import { ScmIntegrations } from '@backstage/integration';
5
+
6
+ /**
7
+ * Creates the `fetch:rails` Scaffolder action.
8
+ *
9
+ * @remarks
10
+ *
11
+ * See {@link https://guides.rubyonrails.org/rails_application_templates.html} and {@link https://backstage.io/docs/features/software-templates/writing-custom-actions}.
12
+ *
13
+ * @param options - Configuration of the templater.
14
+ * @public
15
+ */
16
+ declare function createFetchRailsAction(options: {
17
+ reader: UrlReader;
18
+ integrations: ScmIntegrations;
19
+ containerRunner: ContainerRunner;
20
+ }): _backstage_plugin_scaffolder_backend.TemplateAction<{
21
+ url: string;
22
+ targetPath?: string | undefined;
23
+ values: JsonObject;
24
+ imageName?: string | undefined;
25
+ }>;
26
+
27
+ export { createFetchRailsAction };
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.3.0",
4
+ "version": "0.3.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -24,12 +24,12 @@
24
24
  "clean": "backstage-cli package clean"
25
25
  },
26
26
  "dependencies": {
27
- "@backstage/backend-common": "^0.10.8",
28
- "@backstage/config": "^0.1.14",
29
- "@backstage/errors": "^0.2.1",
30
- "@backstage/integration": "^0.7.3",
31
- "@backstage/plugin-scaffolder-backend": "^0.16.0",
32
- "@backstage/types": "^0.1.2",
27
+ "@backstage/backend-common": "^0.10.9",
28
+ "@backstage/config": "^0.1.15",
29
+ "@backstage/errors": "^0.2.2",
30
+ "@backstage/integration": "^0.7.4",
31
+ "@backstage/plugin-scaffolder-backend": "^0.16.1",
32
+ "@backstage/types": "^0.1.3",
33
33
  "command-exists": "^1.2.9",
34
34
  "fs-extra": "^9.0.0"
35
35
  },
@@ -46,5 +46,5 @@
46
46
  "files": [
47
47
  "dist"
48
48
  ],
49
- "gitHead": "4805c3d13ce9bfc369e53c271b1b95e722b3b4dc"
49
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba"
50
50
  }