@backstage/plugin-scaffolder-backend 0.0.0-nightly-20220606024253 → 0.0.0-nightly-20220609024358

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 +42 -7
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-20220606024253
3
+ ## 0.0.0-nightly-20220609024358
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -35,12 +35,47 @@
35
35
  - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
36
36
  - 6901f6be4a: Adds more of an explanation when the `publish:github` scaffolder action fails to create a repository.
37
37
  - Updated dependencies
38
- - @backstage/backend-common@0.0.0-nightly-20220606024253
39
- - @backstage/integration@0.0.0-nightly-20220606024253
40
- - @backstage/catalog-client@0.0.0-nightly-20220606024253
41
- - @backstage/plugin-catalog-backend@0.0.0-nightly-20220606024253
42
- - @backstage/catalog-model@0.0.0-nightly-20220606024253
43
- - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220606024253
38
+ - @backstage/backend-common@0.0.0-nightly-20220609024358
39
+ - @backstage/integration@0.0.0-nightly-20220609024358
40
+ - @backstage/catalog-client@0.0.0-nightly-20220609024358
41
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-20220609024358
42
+ - @backstage/catalog-model@0.0.0-nightly-20220609024358
43
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-20220609024358
44
+
45
+ ## 1.3.0-next.2
46
+
47
+ ### Minor Changes
48
+
49
+ - ce0d8d7eb1: Fixed a bug in `publish:github` action that didn't permit to add users as collaborators.
50
+ This fix required changing the way parameters are passed to the action.
51
+ In order to add a team as collaborator, now you must use the `team` field instead of `username`.
52
+ In order to add a user as collaborator, you must use the `user` field.
53
+
54
+ It's still possible to use the field `username` but is deprecated in favor of `team`.
55
+
56
+ ```yaml
57
+ - id: publish
58
+ name: Publish
59
+ action: publish:github
60
+ input:
61
+ repoUrl: ...
62
+ collaborators:
63
+ - access: ...
64
+ team: my_team
65
+ - access: ...
66
+ user: my_username
67
+ ```
68
+
69
+ - 582003a059: - Added an optional `list` method on the `TaskBroker` and `TaskStore` interface to list tasks by an optional `userEntityRef`
70
+ - Implemented a `list` method on the `DatabaseTaskStore` class to list tasks by an optional `userEntityRef`
71
+ - Added a route under `/v2/tasks` to list tasks by a `userEntityRef` using the `createdBy` query parameter
72
+
73
+ ### Patch Changes
74
+
75
+ - Updated dependencies
76
+ - @backstage/backend-common@0.14.0-next.2
77
+ - @backstage/integration@1.2.1-next.2
78
+ - @backstage/plugin-catalog-backend@1.2.0-next.2
44
79
 
45
80
  ## 1.3.0-next.1
46
81
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
3
  "description": "The Backstage backend plugin that helps you create new things",
4
- "version": "0.0.0-nightly-20220606024253",
4
+ "version": "0.0.0-nightly-20220609024358",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,14 +34,14 @@
34
34
  "build:assets": "node scripts/build-nunjucks.js"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.0.0-nightly-20220606024253",
38
- "@backstage/catalog-client": "^0.0.0-nightly-20220606024253",
39
- "@backstage/catalog-model": "^0.0.0-nightly-20220606024253",
37
+ "@backstage/backend-common": "^0.0.0-nightly-20220609024358",
38
+ "@backstage/catalog-client": "^0.0.0-nightly-20220609024358",
39
+ "@backstage/catalog-model": "^0.0.0-nightly-20220609024358",
40
40
  "@backstage/config": "^1.0.1",
41
41
  "@backstage/errors": "^1.0.0",
42
- "@backstage/integration": "^0.0.0-nightly-20220606024253",
43
- "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20220606024253",
44
- "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20220606024253",
42
+ "@backstage/integration": "^0.0.0-nightly-20220609024358",
43
+ "@backstage/plugin-catalog-backend": "^0.0.0-nightly-20220609024358",
44
+ "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-20220609024358",
45
45
  "@backstage/types": "^1.0.0",
46
46
  "@gitbeaker/core": "^35.6.0",
47
47
  "@gitbeaker/node": "^35.1.0",
@@ -76,8 +76,8 @@
76
76
  "zod": "^3.11.6"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/backend-test-utils": "^0.0.0-nightly-20220606024253",
80
- "@backstage/cli": "^0.0.0-nightly-20220606024253",
79
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20220609024358",
80
+ "@backstage/cli": "^0.0.0-nightly-20220609024358",
81
81
  "@types/command-exists": "^1.2.0",
82
82
  "@types/fs-extra": "^9.0.1",
83
83
  "@types/git-url-parse": "^9.0.0",