@backstage/plugin-scaffolder-backend-module-github 0.5.1-next.2 → 0.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-github
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8ce0c4c: Add `github:branch-protection:create` scaffolder action to set branch protection on an existing repository. Example usage:
8
+
9
+ ```yaml
10
+ - id: set-branch-protection
11
+ name: Set Branch Protection
12
+ action: github:branch-protection:create
13
+ input:
14
+ repoUrl: 'github.com?repo=backstage&owner=backstage'
15
+ branch: master
16
+ enforceAdmins: true # default
17
+ requiredApprovingReviewCount: 1 # default
18
+ requireBranchesToBeUpToDate: true # default
19
+ requireCodeOwnerReviews: true
20
+ dismissStaleReviews: true
21
+ requiredConversationResolution: true
22
+ ```
23
+
24
+ - 094eaa3: Remove references to in-repo backend-common
25
+ - Updated dependencies
26
+ - @backstage/plugin-scaffolder-node@0.5.0
27
+ - @backstage/integration@1.15.1
28
+ - @backstage/catalog-client@1.7.1
29
+ - @backstage/backend-plugin-api@1.0.1
30
+ - @backstage/catalog-model@1.7.0
31
+ - @backstage/config@1.2.0
32
+ - @backstage/errors@1.2.4
33
+
3
34
  ## 0.5.1-next.2
4
35
 
5
36
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-github",
3
- "version": "0.5.1-next.2",
3
+ "version": "0.5.1",
4
4
  "description": "The github module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -41,13 +41,13 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@backstage/backend-common": "^0.25.0",
44
- "@backstage/backend-plugin-api": "1.0.1-next.1",
45
- "@backstage/catalog-client": "1.7.1-next.0",
46
- "@backstage/catalog-model": "1.7.0",
47
- "@backstage/config": "1.2.0",
48
- "@backstage/errors": "1.2.4",
49
- "@backstage/integration": "1.15.1-next.1",
50
- "@backstage/plugin-scaffolder-node": "0.5.0-next.2",
44
+ "@backstage/backend-plugin-api": "^1.0.1",
45
+ "@backstage/catalog-client": "^1.7.1",
46
+ "@backstage/catalog-model": "^1.7.0",
47
+ "@backstage/config": "^1.2.0",
48
+ "@backstage/errors": "^1.2.4",
49
+ "@backstage/integration": "^1.15.1",
50
+ "@backstage/plugin-scaffolder-node": "^0.5.0",
51
51
  "@octokit/webhooks": "^10.9.2",
52
52
  "libsodium-wrappers": "^0.7.11",
53
53
  "octokit": "^3.0.0",
@@ -55,9 +55,9 @@
55
55
  "yaml": "^2.0.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-test-utils": "1.0.1-next.2",
59
- "@backstage/cli": "0.28.0-next.2",
60
- "@backstage/plugin-scaffolder-node-test-utils": "0.1.13-next.2",
58
+ "@backstage/backend-test-utils": "^1.0.1",
59
+ "@backstage/cli": "^0.28.0",
60
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.1.13",
61
61
  "@types/libsodium-wrappers": "^0.7.10",
62
62
  "fs-extra": "^11.2.0",
63
63
  "jsonschema": "^1.2.6"