@backstage/plugin-scaffolder-backend 1.3.0-next.0 → 1.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,102 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 35a26131b3: **DEPRECATION**: The `projectid` input parameters to the `publish:gitlab:merge-request`, it's no longer required as it can be decoded from the `repoUrl` input parameter.
8
+ **DEPRECATION**: The `projectid` output of the action in favour of `projectPath`
9
+ - 72dfcbc8bf: A new scaffolder action has been added: `gerrit:publish`
10
+ - ce0d8d7eb1: Fixed a bug in `publish:github` action that didn't permit to add users as collaborators.
11
+ This fix required changing the way parameters are passed to the action.
12
+ In order to add a team as collaborator, now you must use the `team` field instead of `username`.
13
+ In order to add a user as collaborator, you must use the `user` field.
14
+
15
+ It's still possible to use the field `username` but is deprecated in favor of `team`.
16
+
17
+ ```yaml
18
+ - id: publish
19
+ name: Publish
20
+ action: publish:github
21
+ input:
22
+ repoUrl: ...
23
+ collaborators:
24
+ - access: ...
25
+ team: my_team
26
+ - access: ...
27
+ user: my_username
28
+ ```
29
+
30
+ - 582003a059: - Added an optional `list` method on the `TaskBroker` and `TaskStore` interface to list tasks by an optional `userEntityRef`
31
+ - Implemented a `list` method on the `DatabaseTaskStore` class to list tasks by an optional `userEntityRef`
32
+ - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
33
+ - c042c5eaff: Add an option to not protect the default branch.
34
+ - f93af969cd: Added the ability to support running of templates that are not in the `default` namespace
35
+
36
+ ### Patch Changes
37
+
38
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
39
+ - 6901f6be4a: Adds more of an explanation when the `publish:github` scaffolder action fails to create a repository.
40
+ - Updated dependencies
41
+ - @backstage/plugin-catalog-backend@1.2.0
42
+ - @backstage/backend-common@0.14.0
43
+ - @backstage/integration@1.2.1
44
+ - @backstage/catalog-client@1.0.3
45
+ - @backstage/catalog-model@1.0.3
46
+ - @backstage/plugin-scaffolder-common@1.1.1
47
+
48
+ ## 1.3.0-next.2
49
+
50
+ ### Minor Changes
51
+
52
+ - ce0d8d7eb1: Fixed a bug in `publish:github` action that didn't permit to add users as collaborators.
53
+ This fix required changing the way parameters are passed to the action.
54
+ In order to add a team as collaborator, now you must use the `team` field instead of `username`.
55
+ In order to add a user as collaborator, you must use the `user` field.
56
+
57
+ It's still possible to use the field `username` but is deprecated in favor of `team`.
58
+
59
+ ```yaml
60
+ - id: publish
61
+ name: Publish
62
+ action: publish:github
63
+ input:
64
+ repoUrl: ...
65
+ collaborators:
66
+ - access: ...
67
+ team: my_team
68
+ - access: ...
69
+ user: my_username
70
+ ```
71
+
72
+ - 582003a059: - Added an optional `list` method on the `TaskBroker` and `TaskStore` interface to list tasks by an optional `userEntityRef`
73
+ - Implemented a `list` method on the `DatabaseTaskStore` class to list tasks by an optional `userEntityRef`
74
+ - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
75
+
76
+ ### Patch Changes
77
+
78
+ - Updated dependencies
79
+ - @backstage/backend-common@0.14.0-next.2
80
+ - @backstage/integration@1.2.1-next.2
81
+ - @backstage/plugin-catalog-backend@1.2.0-next.2
82
+
83
+ ## 1.3.0-next.1
84
+
85
+ ### Minor Changes
86
+
87
+ - c042c5eaff: Add an option to not protect the default branch.
88
+
89
+ ### Patch Changes
90
+
91
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
92
+ - Updated dependencies
93
+ - @backstage/backend-common@0.13.6-next.1
94
+ - @backstage/catalog-client@1.0.3-next.0
95
+ - @backstage/integration@1.2.1-next.1
96
+ - @backstage/plugin-catalog-backend@1.2.0-next.1
97
+ - @backstage/catalog-model@1.0.3-next.0
98
+ - @backstage/plugin-scaffolder-common@1.1.1-next.0
99
+
3
100
  ## 1.3.0-next.0
4
101
 
5
102
  ### Minor Changes