@backstage/plugin-auth-node 0.5.0-next.2 → 0.5.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.
- package/CHANGELOG.md +31 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-auth-node
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 579afd0: **BREAKING**: Sign-in resolvers configured via `.signIn.resolvers` now take precedence over sign-in resolvers passed to `signInResolver` option of `createOAuthProviderFactory`. This effectively makes sign-in resolvers passed via the `signInResolver` the default one, which you can then override through configuration.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 93095ee: Make sure node-fetch is version 2.7.0 or greater
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-plugin-api@0.8.0
|
|
14
|
+
- @backstage/backend-common@0.24.0
|
|
15
|
+
- @backstage/catalog-model@1.6.0
|
|
16
|
+
- @backstage/catalog-client@1.6.6
|
|
17
|
+
- @backstage/config@1.2.0
|
|
18
|
+
- @backstage/errors@1.2.4
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
|
|
21
|
+
## 0.5.0-next.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-plugin-api@0.8.0-next.3
|
|
27
|
+
- @backstage/backend-common@0.23.4-next.3
|
|
28
|
+
- @backstage/catalog-model@1.6.0-next.0
|
|
29
|
+
- @backstage/catalog-client@1.6.6-next.0
|
|
30
|
+
- @backstage/config@1.2.0
|
|
31
|
+
- @backstage/errors@1.2.4
|
|
32
|
+
- @backstage/types@1.1.1
|
|
33
|
+
|
|
3
34
|
## 0.5.0-next.2
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-node",
|
|
3
|
-
"version": "0.5.0
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "node-library",
|
|
6
6
|
"pluginId": "auth",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-common": "^0.
|
|
41
|
-
"@backstage/backend-plugin-api": "^0.8.0
|
|
42
|
-
"@backstage/catalog-client": "^1.6.
|
|
43
|
-
"@backstage/catalog-model": "^1.
|
|
40
|
+
"@backstage/backend-common": "^0.24.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.8.0",
|
|
42
|
+
"@backstage/catalog-client": "^1.6.6",
|
|
43
|
+
"@backstage/catalog-model": "^1.6.0",
|
|
44
44
|
"@backstage/config": "^1.2.0",
|
|
45
45
|
"@backstage/errors": "^1.2.4",
|
|
46
46
|
"@backstage/types": "^1.1.1",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"zod-to-json-schema": "^3.21.4"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.
|
|
60
|
-
"@backstage/cli": "^0.27.0
|
|
59
|
+
"@backstage/backend-test-utils": "^0.5.0",
|
|
60
|
+
"@backstage/cli": "^0.27.0",
|
|
61
61
|
"cookie-parser": "^1.4.6",
|
|
62
62
|
"express-promise-router": "^4.1.1",
|
|
63
63
|
"lodash": "^4.17.21",
|