@backstage/plugin-catalog-backend-module-gitlab 0.8.0-next.2 → 0.8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-catalog-backend-module-gitlab
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2f51676: allow entity discoverability via gitlab search API
8
+ - ff07934: Added the `{gitlab-integration-host}/user-id` annotation to store GitLab's user ID (immutable) in user entities. Also includes addition of the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by the new ID.
9
+
10
+ ### Patch Changes
11
+
12
+ - cfd8103: Updated imports to use stable catalog extension points from `@backstage/plugin-catalog-node` instead of the deprecated alpha exports.
13
+ - 7455dae: Use node prefix on native imports
14
+ - 7e6b5e5: Fixed GitLab search API scope parameter from `'blob'` to `'blobs'`, resolving 400 errors in discovery provider.
15
+ - Updated dependencies
16
+ - @backstage/integration@1.20.0
17
+ - @backstage/plugin-catalog-node@2.0.0
18
+ - @backstage/backend-plugin-api@1.7.0
19
+ - @backstage/backend-defaults@0.15.2
20
+ - @backstage/plugin-catalog-common@1.1.8
21
+ - @backstage/plugin-events-node@0.4.19
22
+
3
23
  ## 0.8.0-next.2
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gitlab",
3
- "version": "0.8.0-next.2",
3
+ "version": "0.8.0",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards GitLab",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -65,23 +65,23 @@
65
65
  "test": "backstage-cli package test"
66
66
  },
67
67
  "dependencies": {
68
- "@backstage/backend-defaults": "0.15.2-next.1",
69
- "@backstage/backend-plugin-api": "1.7.0-next.1",
70
- "@backstage/catalog-model": "1.7.6",
71
- "@backstage/config": "1.3.6",
72
- "@backstage/integration": "1.20.0-next.2",
73
- "@backstage/plugin-catalog-common": "1.1.8-next.0",
74
- "@backstage/plugin-catalog-node": "2.0.0-next.1",
75
- "@backstage/plugin-events-node": "0.4.19-next.0",
68
+ "@backstage/backend-defaults": "^0.15.2",
69
+ "@backstage/backend-plugin-api": "^1.7.0",
70
+ "@backstage/catalog-model": "^1.7.6",
71
+ "@backstage/config": "^1.3.6",
72
+ "@backstage/integration": "^1.20.0",
73
+ "@backstage/plugin-catalog-common": "^1.1.8",
74
+ "@backstage/plugin-catalog-node": "^2.0.0",
75
+ "@backstage/plugin-events-node": "^0.4.19",
76
76
  "@gitbeaker/rest": "^40.0.3",
77
77
  "lodash": "^4.17.21",
78
78
  "node-fetch": "^2.7.0",
79
79
  "uuid": "^11.0.0"
80
80
  },
81
81
  "devDependencies": {
82
- "@backstage/backend-test-utils": "1.11.0-next.1",
83
- "@backstage/cli": "0.35.4-next.2",
84
- "@backstage/plugin-events-backend-test-utils": "0.1.52-next.0",
82
+ "@backstage/backend-test-utils": "^1.11.0",
83
+ "@backstage/cli": "^0.35.4",
84
+ "@backstage/plugin-events-backend-test-utils": "^0.1.52",
85
85
  "@types/lodash": "^4.14.151",
86
86
  "msw": "^1.0.0"
87
87
  },