@backstage/plugin-scaffolder-backend 1.2.0 → 1.3.0-next.2
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 +66 -0
- package/dist/index.cjs.js +555 -87
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +50 -3
- package/package.json +14 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.3.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ce0d8d7eb1: Fixed a bug in `publish:github` action that didn't permit to add users as collaborators.
|
|
8
|
+
This fix required changing the way parameters are passed to the action.
|
|
9
|
+
In order to add a team as collaborator, now you must use the `team` field instead of `username`.
|
|
10
|
+
In order to add a user as collaborator, you must use the `user` field.
|
|
11
|
+
|
|
12
|
+
It's still possible to use the field `username` but is deprecated in favor of `team`.
|
|
13
|
+
|
|
14
|
+
```yaml
|
|
15
|
+
- id: publish
|
|
16
|
+
name: Publish
|
|
17
|
+
action: publish:github
|
|
18
|
+
input:
|
|
19
|
+
repoUrl: ...
|
|
20
|
+
collaborators:
|
|
21
|
+
- access: ...
|
|
22
|
+
team: my_team
|
|
23
|
+
- access: ...
|
|
24
|
+
user: my_username
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
- 582003a059: - Added an optional `list` method on the `TaskBroker` and `TaskStore` interface to list tasks by an optional `userEntityRef`
|
|
28
|
+
- Implemented a `list` method on the `DatabaseTaskStore` class to list tasks by an optional `userEntityRef`
|
|
29
|
+
- Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/backend-common@0.14.0-next.2
|
|
35
|
+
- @backstage/integration@1.2.1-next.2
|
|
36
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.2
|
|
37
|
+
|
|
38
|
+
## 1.3.0-next.1
|
|
39
|
+
|
|
40
|
+
### Minor Changes
|
|
41
|
+
|
|
42
|
+
- c042c5eaff: Add an option to not protect the default branch.
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
47
|
+
- Updated dependencies
|
|
48
|
+
- @backstage/backend-common@0.13.6-next.1
|
|
49
|
+
- @backstage/catalog-client@1.0.3-next.0
|
|
50
|
+
- @backstage/integration@1.2.1-next.1
|
|
51
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.1
|
|
52
|
+
- @backstage/catalog-model@1.0.3-next.0
|
|
53
|
+
- @backstage/plugin-scaffolder-common@1.1.1-next.0
|
|
54
|
+
|
|
55
|
+
## 1.3.0-next.0
|
|
56
|
+
|
|
57
|
+
### Minor Changes
|
|
58
|
+
|
|
59
|
+
- 72dfcbc8bf: A new scaffolder action has been added: `gerrit:publish`
|
|
60
|
+
|
|
61
|
+
### Patch Changes
|
|
62
|
+
|
|
63
|
+
- 6901f6be4a: Adds more of an explanation when the `publish:github` scaffolder action fails to create a repository.
|
|
64
|
+
- Updated dependencies
|
|
65
|
+
- @backstage/backend-common@0.13.6-next.0
|
|
66
|
+
- @backstage/integration@1.2.1-next.0
|
|
67
|
+
- @backstage/plugin-catalog-backend@1.2.0-next.0
|
|
68
|
+
|
|
3
69
|
## 1.2.0
|
|
4
70
|
|
|
5
71
|
### Minor Changes
|