@backstage/plugin-scaffolder-backend-module-gitlab 0.4.1-next.3 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-gitlab
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - cf96041: Added `gitlab:issue:edit` action to edit existing GitLab issues
9
+ - d44a20a: Added additional plugin metadata to `package.json`.
10
+ - 829e0ec: Add new `gitlab:pipeline:trigger` action to trigger GitLab pipelines.
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.23.0
13
+ - @backstage/backend-plugin-api@0.6.19
14
+ - @backstage/integration@1.12.0
15
+ - @backstage/plugin-scaffolder-node@0.4.5
16
+ - @backstage/config@1.2.0
17
+ - @backstage/errors@1.2.4
18
+
3
19
  ## 0.4.1-next.3
4
20
 
5
21
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -282,6 +282,6 @@ declare const createGitlabRepoPushAction: (options: {
282
282
  * @public
283
283
  * The GitLab Module for the Scaffolder Backend
284
284
  */
285
- declare const gitlabModule: () => _backstage_backend_plugin_api.BackendFeature;
285
+ declare const gitlabModule: _backstage_backend_plugin_api.BackendFeatureCompat;
286
286
 
287
287
  export { IssueStateEvent, IssueType, createGitlabGroupEnsureExistsAction, createGitlabIssueAction, createGitlabProjectAccessTokenAction, createGitlabProjectDeployTokenAction, createGitlabProjectVariableAction, createGitlabRepoPushAction, createPublishGitlabAction, createPublishGitlabMergeRequestAction, createTriggerGitlabPipelineAction, gitlabModule as default, editGitlabIssueAction };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-gitlab",
3
- "version": "0.4.1-next.3",
3
+ "version": "0.4.1",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "scaffolder",
@@ -42,12 +42,12 @@
42
42
  "test": "backstage-cli package test"
43
43
  },
44
44
  "dependencies": {
45
- "@backstage/backend-common": "^0.23.0-next.3",
46
- "@backstage/backend-plugin-api": "^0.6.19-next.3",
45
+ "@backstage/backend-common": "^0.23.0",
46
+ "@backstage/backend-plugin-api": "^0.6.19",
47
47
  "@backstage/config": "^1.2.0",
48
48
  "@backstage/errors": "^1.2.4",
49
- "@backstage/integration": "^1.12.0-next.1",
50
- "@backstage/plugin-scaffolder-node": "^0.4.5-next.3",
49
+ "@backstage/integration": "^1.12.0",
50
+ "@backstage/plugin-scaffolder-node": "^0.4.5",
51
51
  "@gitbeaker/core": "^35.8.0",
52
52
  "@gitbeaker/node": "^35.8.0",
53
53
  "@gitbeaker/rest": "^39.25.0",
@@ -56,9 +56,9 @@
56
56
  "zod": "^3.22.4"
57
57
  },
58
58
  "devDependencies": {
59
- "@backstage/backend-test-utils": "^0.4.0-next.3",
60
- "@backstage/cli": "^0.26.7-next.3",
61
- "@backstage/core-app-api": "^1.12.6-next.0",
62
- "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5-next.3"
59
+ "@backstage/backend-test-utils": "^0.4.0",
60
+ "@backstage/cli": "^0.26.7",
61
+ "@backstage/core-app-api": "^1.12.6",
62
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5"
63
63
  }
64
64
  }