@backstage/plugin-auth-backend 0.0.0-nightly-20220704025427 → 0.0.0-nightly-20220705025009
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 +7 -6
- package/dist/index.cjs.js +1 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +18 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220705025009
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -15,14 +15,15 @@
|
|
|
15
15
|
### Patch Changes
|
|
16
16
|
|
|
17
17
|
- f2cf79d62e: Added an option for the auth backend router to select the algorithm for the JWT token signing keys
|
|
18
|
+
- 8e03db907a: Auth provider now also export createAuthProviderIntegration
|
|
18
19
|
- 679b32172e: Updated dependency `knex` to `^2.0.0`.
|
|
19
20
|
- 859346bfbb: Updated dependency `google-auth-library` to `^8.0.0`.
|
|
20
21
|
- Updated dependencies
|
|
21
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
22
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
23
|
-
- @backstage/errors@0.0.0-nightly-
|
|
24
|
-
- @backstage/catalog-client@0.0.0-nightly-
|
|
25
|
-
- @backstage/plugin-auth-node@0.0.0-nightly-
|
|
22
|
+
- @backstage/backend-common@0.0.0-nightly-20220705025009
|
|
23
|
+
- @backstage/catalog-model@0.0.0-nightly-20220705025009
|
|
24
|
+
- @backstage/errors@0.0.0-nightly-20220705025009
|
|
25
|
+
- @backstage/catalog-client@0.0.0-nightly-20220705025009
|
|
26
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20220705025009
|
|
26
27
|
|
|
27
28
|
## 0.15.0-next.1
|
|
28
29
|
|
package/dist/index.cjs.js
CHANGED
|
@@ -2770,6 +2770,7 @@ exports.AtlassianAuthProvider = AtlassianAuthProvider;
|
|
|
2770
2770
|
exports.CatalogIdentityClient = CatalogIdentityClient;
|
|
2771
2771
|
exports.OAuthAdapter = OAuthAdapter;
|
|
2772
2772
|
exports.OAuthEnvironmentHandler = OAuthEnvironmentHandler;
|
|
2773
|
+
exports.createAuthProviderIntegration = createAuthProviderIntegration;
|
|
2773
2774
|
exports.createOriginFilter = createOriginFilter;
|
|
2774
2775
|
exports.createRouter = createRouter;
|
|
2775
2776
|
exports.defaultAuthProviderFactories = defaultAuthProviderFactories;
|