@backstage/plugin-scaffolder-backend-module-gitlab 0.4.5-next.3 → 0.4.5

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 +24 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-gitlab
2
2
 
3
+ ## 0.4.5
4
+
5
+ ### Patch Changes
6
+
7
+ - da97131: Added test cases for gitlab:issues:create examples
8
+ - fad1b90: Allow the `createGitlabProjectVariableAction` to use oauth tokens
9
+ - aab708e: Added test cases for gitlab:issue:edit examples
10
+ - ef742dc: Added test cases for gitlab:projectAccessToken:create example
11
+ - 1ba4c2f: Added test cases for gitlab:pipeline:trigger examples
12
+ - a6603e4: Add custom action for merge request: **auto**
13
+
14
+ The **Auto** action selects the committed action between _create_ and _update_.
15
+
16
+ The **Auto** action fetches files using the **/projects/repository/tree endpoint**.
17
+ After fetching, it checks if the file exists locally and in the repository. If it does, it chooses **update**; otherwise, it chooses **create**.
18
+
19
+ - Updated dependencies
20
+ - @backstage/backend-plugin-api@0.8.0
21
+ - @backstage/backend-common@0.24.0
22
+ - @backstage/plugin-scaffolder-node@0.4.9
23
+ - @backstage/integration@1.14.0
24
+ - @backstage/config@1.2.0
25
+ - @backstage/errors@1.2.4
26
+
3
27
  ## 0.4.5-next.3
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-gitlab",
3
- "version": "0.4.5-next.3",
3
+ "version": "0.4.5",
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.4-next.3",
46
- "@backstage/backend-plugin-api": "^0.8.0-next.3",
45
+ "@backstage/backend-common": "^0.24.0",
46
+ "@backstage/backend-plugin-api": "^0.8.0",
47
47
  "@backstage/config": "^1.2.0",
48
48
  "@backstage/errors": "^1.2.4",
49
- "@backstage/integration": "^1.14.0-next.0",
50
- "@backstage/plugin-scaffolder-node": "^0.4.9-next.3",
49
+ "@backstage/integration": "^1.14.0",
50
+ "@backstage/plugin-scaffolder-node": "^0.4.9",
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.5-next.3",
60
- "@backstage/cli": "^0.27.0-next.4",
61
- "@backstage/core-app-api": "^1.14.2-next.0",
62
- "@backstage/plugin-scaffolder-node-test-utils": "^0.1.10-next.3"
59
+ "@backstage/backend-test-utils": "^0.5.0",
60
+ "@backstage/cli": "^0.27.0",
61
+ "@backstage/core-app-api": "^1.14.2",
62
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.1.10"
63
63
  }
64
64
  }