@backstage/plugin-scaffolder-backend-module-github 0.3.0-next.2 → 0.3.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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-github
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 403394a: Allow empty author info in createPullRequest action for Github
8
+
9
+ ### Patch Changes
10
+
11
+ - f145a04: Added handling for dry run to githubPullRequest and githubWebhook and added tests for this functionality
12
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
13
+ - d44a20a: Added additional plugin metadata to `package.json`.
14
+ - Updated dependencies
15
+ - @backstage/backend-common@0.23.0
16
+ - @backstage/backend-plugin-api@0.6.19
17
+ - @backstage/integration@1.12.0
18
+ - @backstage/plugin-scaffolder-node@0.4.5
19
+ - @backstage/config@1.2.0
20
+ - @backstage/errors@1.2.4
21
+
22
+ ## 0.3.0-next.3
23
+
24
+ ### Patch Changes
25
+
26
+ - d44a20a: Added additional plugin metadata to `package.json`.
27
+ - Updated dependencies
28
+ - @backstage/backend-plugin-api@0.6.19-next.3
29
+ - @backstage/integration@1.12.0-next.1
30
+ - @backstage/plugin-scaffolder-node@0.4.5-next.3
31
+ - @backstage/backend-common@0.23.0-next.3
32
+ - @backstage/config@1.2.0
33
+ - @backstage/errors@1.2.4
34
+
3
35
  ## 0.3.0-next.2
4
36
 
5
37
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -373,6 +373,6 @@ declare function getOctokitOptions(options: {
373
373
  * @public
374
374
  * The GitHub Module for the Scaffolder Backend
375
375
  */
376
- declare const githubModule: () => _backstage_backend_plugin_api.BackendFeature;
376
+ declare const githubModule: _backstage_backend_plugin_api.BackendFeatureCompat;
377
377
 
378
378
  export { type CreateGithubPullRequestActionOptions, createGithubActionsDispatchAction, createGithubAutolinksAction, createGithubDeployKeyAction, createGithubEnvironmentAction, createGithubIssuesLabelAction, createGithubRepoCreateAction, createGithubRepoPushAction, createGithubWebhookAction, createPublishGithubAction, createPublishGithubPullRequestAction, githubModule as default, getOctokitOptions };
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-github",
3
- "version": "0.3.0-next.2",
3
+ "version": "0.3.0",
4
4
  "description": "The github module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
- "role": "backend-plugin-module"
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "scaffolder",
8
+ "pluginPackage": "@backstage/plugin-scaffolder-backend"
7
9
  },
8
10
  "publishConfig": {
9
11
  "access": "public"
@@ -37,12 +39,12 @@
37
39
  "test": "backstage-cli package test"
38
40
  },
39
41
  "dependencies": {
40
- "@backstage/backend-common": "^0.23.0-next.2",
41
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
42
+ "@backstage/backend-common": "^0.23.0",
43
+ "@backstage/backend-plugin-api": "^0.6.19",
42
44
  "@backstage/config": "^1.2.0",
43
45
  "@backstage/errors": "^1.2.4",
44
- "@backstage/integration": "^1.12.0-next.0",
45
- "@backstage/plugin-scaffolder-node": "^0.4.5-next.2",
46
+ "@backstage/integration": "^1.12.0",
47
+ "@backstage/plugin-scaffolder-node": "^0.4.5",
46
48
  "@octokit/webhooks": "^10.0.0",
47
49
  "libsodium-wrappers": "^0.7.11",
48
50
  "octokit": "^3.0.0",
@@ -50,9 +52,9 @@
50
52
  "yaml": "^2.0.0"
51
53
  },
52
54
  "devDependencies": {
53
- "@backstage/backend-test-utils": "^0.4.0-next.2",
54
- "@backstage/cli": "^0.26.7-next.2",
55
- "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5-next.2",
55
+ "@backstage/backend-test-utils": "^0.4.0",
56
+ "@backstage/cli": "^0.26.7",
57
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5",
56
58
  "@types/libsodium-wrappers": "^0.7.10",
57
59
  "fs-extra": "^11.2.0",
58
60
  "jsonschema": "^1.2.6"