@backstage/plugin-scaffolder-backend 1.8.0-next.2 → 1.8.1-next.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,90 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
+ ## 1.8.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - cb716004ef: Internal refactor to improve tests
8
+ - 26404430bc: Use Json types from @backstage/types
9
+ - 3280711113: Updated dependency `msw` to `^0.49.0`.
10
+ - 19356df560: Updated dependency `zen-observable` to `^0.9.0`.
11
+ - Updated dependencies
12
+ - @backstage/catalog-client@1.2.0-next.0
13
+ - @backstage/plugin-catalog-backend@1.6.0-next.0
14
+ - @backstage/backend-common@0.16.1-next.0
15
+ - @backstage/integration@1.4.1-next.0
16
+ - @backstage/plugin-auth-node@0.2.8-next.0
17
+ - @backstage/types@1.0.2-next.0
18
+ - @backstage/backend-plugin-api@0.1.5-next.0
19
+ - @backstage/plugin-catalog-node@1.2.2-next.0
20
+ - @backstage/backend-tasks@0.3.8-next.0
21
+ - @backstage/catalog-model@1.1.4-next.0
22
+ - @backstage/config@1.0.5-next.0
23
+ - @backstage/errors@1.1.4-next.0
24
+ - @backstage/plugin-scaffolder-common@1.2.3-next.0
25
+
26
+ ## 1.8.0
27
+
28
+ ### Minor Changes
29
+
30
+ - ea14eb62a2: Added a set of default Prometheus metrics around scaffolding. See below for a list of metrics and an explanation of their labels:
31
+
32
+ - `scaffolder_task_count`: Tracks successful task runs.
33
+
34
+ Labels:
35
+
36
+ - `template`: The entity ref of the scaffolded template
37
+ - `user`: The entity ref of the user that invoked the template run
38
+ - `result`: A string describing whether the task ran successfully, failed, or was skipped
39
+
40
+ - `scaffolder_task_duration`: a histogram which tracks the duration of a task run
41
+
42
+ Labels:
43
+
44
+ - `template`: The entity ref of the scaffolded template
45
+ - `result`: A boolean describing whether the task ran successfully
46
+
47
+ - `scaffolder_step_count`: a count that tracks each step run
48
+
49
+ Labels:
50
+
51
+ - `template`: The entity ref of the scaffolded template
52
+ - `step`: The name of the step that was run
53
+ - `result`: A string describing whether the task ran successfully, failed, or was skipped
54
+
55
+ - `scaffolder_step_duration`: a histogram which tracks the duration of each step run
56
+
57
+ Labels:
58
+
59
+ - `template`: The entity ref of the scaffolded template
60
+ - `step`: The name of the step that was run
61
+ - `result`: A string describing whether the task ran successfully, failed, or was skipped
62
+
63
+ You can find a guide for running Prometheus metrics here: https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md
64
+
65
+ - 5921b5ce49: - The GitLab Project ID for the `publish:gitlab:merge-request` action is now passed through the query parameter `project` in the `repoUrl`. It still allows people to not use the `projectid` and use the `repoUrl` with the `owner` and `repo` query parameters instead. This makes it easier to publish to repositories instead of writing the full path to the project.
66
+ - 5025d2e8b6: Adds the ability to pass (an optional) array of strings that will be applied to the newly scaffolded repository as topic labels.
67
+
68
+ ### Patch Changes
69
+
70
+ - 7573b65232: Internal refactor of imports to avoid circular dependencies
71
+ - 969a8444ea: Updated dependency `esbuild` to `^0.15.0`.
72
+ - 9ff4ff3745: Implement "Branch protection rules" support for "publish:github" action
73
+ - Updated dependencies
74
+ - @backstage/backend-common@0.16.0
75
+ - @backstage/plugin-catalog-backend@1.5.1
76
+ - @backstage/integration@1.4.0
77
+ - @backstage/backend-tasks@0.3.7
78
+ - @backstage/catalog-model@1.1.3
79
+ - @backstage/plugin-auth-node@0.2.7
80
+ - @backstage/types@1.0.1
81
+ - @backstage/backend-plugin-api@0.1.4
82
+ - @backstage/plugin-catalog-node@1.2.1
83
+ - @backstage/catalog-client@1.1.2
84
+ - @backstage/config@1.0.4
85
+ - @backstage/errors@1.1.3
86
+ - @backstage/plugin-scaffolder-common@1.2.2
87
+
3
88
  ## 1.8.0-next.2
4
89
 
5
90
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
- "version": "1.8.0-next.2",
3
+ "version": "1.8.1-next.0",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }