@backstage/plugin-auth-backend 0.19.0-next.3 → 0.19.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/package.json +18 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,63 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.19.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.1
9
+ - @backstage/plugin-auth-node@0.3.1
10
+ - @backstage/backend-plugin-api@0.6.4
11
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.1
12
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.1
13
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.1
14
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.1
15
+ - @backstage/backend-common@0.19.6
16
+ - @backstage/plugin-catalog-node@1.4.5
17
+
18
+ ## 0.19.0
19
+
20
+ ### Minor Changes
21
+
22
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
23
+
24
+ For example, if you are currently importing the plugin using the following pattern:
25
+
26
+ ```ts
27
+ import { examplePlugin } from '@backstage/plugin-example-backend';
28
+
29
+ backend.add(examplePlugin);
30
+ ```
31
+
32
+ It should be migrated to this:
33
+
34
+ ```ts
35
+ backend.add(import('@backstage/plugin-example-backend'));
36
+ ```
37
+
38
+ ### Patch Changes
39
+
40
+ - 080cc7794700: Migrated the GitLab auth provider to be implemented using the new `@backstage/plugin-auth-backend-module-gitlab-provider` module.
41
+ - 7944d43f4790: Added `authPlugin` export for the new backend system. The plugin does not include any built-in auth providers, they must instead be added by installing additional modules, for example `authModuleGoogleProvider` from `@backstage/plugin-auth-backend-module-google-provider`.
42
+ - 8513cd7d00e3: Deprecated several exports that are now available from `@backstage/plugin-auth-node` instead.
43
+ - 7944d43f4790: Added the ability to disable the built-in auth providers by passing `disableDefaultProviderFactories` to `createRouter`.
44
+ - 7944d43f4790: The algorithm used when generating Backstage tokens can be configured via `auth.identityTokenAlgorithm`.
45
+ - Updated dependencies
46
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0
47
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.0
48
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.0
49
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.0
50
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.0
51
+ - @backstage/backend-common@0.19.5
52
+ - @backstage/plugin-auth-node@0.3.0
53
+ - @backstage/config@1.1.0
54
+ - @backstage/catalog-client@1.4.4
55
+ - @backstage/catalog-model@1.4.2
56
+ - @backstage/errors@1.2.2
57
+ - @backstage/types@1.1.1
58
+ - @backstage/backend-plugin-api@0.6.3
59
+ - @backstage/plugin-catalog-node@1.4.4
60
+
3
61
  ## 0.19.0-next.3
4
62
 
5
63
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend",
3
3
  "description": "A Backstage backend plugin that handles authentication",
4
- "version": "0.19.0-next.3",
4
+ "version": "0.19.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -32,20 +32,20 @@
32
32
  "clean": "backstage-cli package clean"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/backend-common": "^0.19.5-next.3",
36
- "@backstage/backend-plugin-api": "^0.6.3-next.3",
37
- "@backstage/catalog-client": "^1.4.4-next.2",
38
- "@backstage/catalog-model": "^1.4.2-next.2",
39
- "@backstage/config": "^1.1.0-next.2",
40
- "@backstage/errors": "^1.2.2-next.0",
41
- "@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.1.0-next.3",
42
- "@backstage/plugin-auth-backend-module-github-provider": "^0.1.0-next.3",
43
- "@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.0-next.2",
44
- "@backstage/plugin-auth-backend-module-google-provider": "^0.1.0-next.3",
45
- "@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.0-next.0",
46
- "@backstage/plugin-auth-node": "^0.3.0-next.3",
47
- "@backstage/plugin-catalog-node": "^1.4.4-next.3",
48
- "@backstage/types": "^1.1.1-next.0",
35
+ "@backstage/backend-common": "^0.19.6",
36
+ "@backstage/backend-plugin-api": "^0.6.4",
37
+ "@backstage/catalog-client": "^1.4.4",
38
+ "@backstage/catalog-model": "^1.4.2",
39
+ "@backstage/config": "^1.1.0",
40
+ "@backstage/errors": "^1.2.2",
41
+ "@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.1.1",
42
+ "@backstage/plugin-auth-backend-module-github-provider": "^0.1.1",
43
+ "@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.1",
44
+ "@backstage/plugin-auth-backend-module-google-provider": "^0.1.1",
45
+ "@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.1",
46
+ "@backstage/plugin-auth-node": "^0.3.1",
47
+ "@backstage/plugin-catalog-node": "^1.4.5",
48
+ "@backstage/types": "^1.1.1",
49
49
  "@davidzemon/passport-okta-oauth": "^0.0.5",
50
50
  "@google-cloud/firestore": "^6.0.0",
51
51
  "@types/express": "^4.17.6",
@@ -84,9 +84,9 @@
84
84
  "yn": "^4.0.0"
85
85
  },
86
86
  "devDependencies": {
87
- "@backstage/backend-defaults": "^0.2.3-next.3",
88
- "@backstage/backend-test-utils": "^0.2.3-next.3",
89
- "@backstage/cli": "^0.22.13-next.3",
87
+ "@backstage/backend-defaults": "^0.2.4",
88
+ "@backstage/backend-test-utils": "^0.2.5",
89
+ "@backstage/cli": "^0.22.13",
90
90
  "@types/body-parser": "^1.19.0",
91
91
  "@types/cookie-parser": "^1.4.2",
92
92
  "@types/express-session": "^1.17.2",