@backstage/plugin-auth-backend-module-guest-provider 0.1.5-next.3 → 0.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-auth-backend-module-guest-provider
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - Updated dependencies
10
+ - @backstage/backend-common@0.23.0
11
+ - @backstage/backend-plugin-api@0.6.19
12
+ - @backstage/plugin-auth-node@0.4.14
13
+ - @backstage/catalog-model@1.5.0
14
+ - @backstage/errors@1.2.4
15
+
3
16
  ## 0.1.5-next.3
4
17
 
5
18
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
2
2
 
3
3
  /** @public */
4
- declare const authModuleGuestProvider: () => _backstage_backend_plugin_api.BackendFeature;
4
+ declare const authModuleGuestProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
5
5
 
6
6
  export { authModuleGuestProvider as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-guest-provider",
3
- "version": "0.1.5-next.3",
3
+ "version": "0.1.5",
4
4
  "description": "The guest-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -34,16 +34,16 @@
34
34
  "test": "backstage-cli package test"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.23.0-next.3",
38
- "@backstage/backend-plugin-api": "^0.6.19-next.3",
37
+ "@backstage/backend-common": "^0.23.0",
38
+ "@backstage/backend-plugin-api": "^0.6.19",
39
39
  "@backstage/catalog-model": "^1.5.0",
40
40
  "@backstage/errors": "^1.2.4",
41
- "@backstage/plugin-auth-node": "^0.4.14-next.3",
41
+ "@backstage/plugin-auth-node": "^0.4.14",
42
42
  "passport-oauth2": "^1.7.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/backend-test-utils": "^0.4.0-next.3",
46
- "@backstage/cli": "^0.26.7-next.3",
45
+ "@backstage/backend-test-utils": "^0.4.0",
46
+ "@backstage/cli": "^0.26.7",
47
47
  "@backstage/config": "^1.2.0",
48
48
  "express": "^4.18.2"
49
49
  },