@backstage/plugin-auth-node 0.0.0-nightly-20231016021307 → 0.0.0-nightly-20231020021216
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 +25 -12
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-auth-node
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20231020021216
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.0.0-nightly-20231020021216
|
|
9
|
+
- @backstage/config@1.1.1
|
|
10
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20231020021216
|
|
11
|
+
- @backstage/catalog-client@1.4.5
|
|
12
|
+
- @backstage/catalog-model@1.4.3
|
|
13
|
+
- @backstage/errors@1.2.3
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
|
|
16
|
+
## 0.4.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
6
19
|
|
|
7
|
-
-
|
|
20
|
+
- 6f142d5356: **BREAKING**: The recently introduced `ProxyAuthenticator.initialize()` method is no longer `async` to match the way the OAuth equivalent is implemented.
|
|
8
21
|
|
|
9
22
|
### Patch Changes
|
|
10
23
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
- Updated dependencies
|
|
15
|
-
- @backstage/backend-common@0.
|
|
16
|
-
- @backstage/catalog-model@
|
|
17
|
-
- @backstage/errors@
|
|
18
|
-
- @backstage/backend-plugin-api@0.
|
|
19
|
-
- @backstage/catalog-client@
|
|
20
|
-
- @backstage/config@
|
|
24
|
+
- 6c2b0793bf: Fix for persisted scopes not being properly restored on sign-in.
|
|
25
|
+
- 8b8b1d23ae: Fixed cookie persisted scope not returned in OAuth refresh handler response.
|
|
26
|
+
- ae34255836: Adding optional audience parameter to OAuthState type declaration
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/backend-common@0.19.8
|
|
29
|
+
- @backstage/catalog-model@1.4.3
|
|
30
|
+
- @backstage/errors@1.2.3
|
|
31
|
+
- @backstage/backend-plugin-api@0.6.6
|
|
32
|
+
- @backstage/catalog-client@1.4.5
|
|
33
|
+
- @backstage/config@1.1.1
|
|
21
34
|
- @backstage/types@1.1.1
|
|
22
35
|
|
|
23
36
|
## 0.4.0-next.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-node",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20231020021216",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"start": "backstage-cli package start"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
32
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
33
|
-
"@backstage/catalog-client": "^
|
|
34
|
-
"@backstage/catalog-model": "^
|
|
35
|
-
"@backstage/config": "^
|
|
36
|
-
"@backstage/errors": "^
|
|
31
|
+
"@backstage/backend-common": "^0.0.0-nightly-20231020021216",
|
|
32
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20231020021216",
|
|
33
|
+
"@backstage/catalog-client": "^1.4.5",
|
|
34
|
+
"@backstage/catalog-model": "^1.4.3",
|
|
35
|
+
"@backstage/config": "^1.1.1",
|
|
36
|
+
"@backstage/errors": "^1.2.3",
|
|
37
37
|
"@backstage/types": "^1.1.1",
|
|
38
38
|
"@types/express": "*",
|
|
39
39
|
"@types/passport": "^1.0.3",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"zod-to-json-schema": "^3.21.4"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
51
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
50
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20231020021216",
|
|
51
|
+
"@backstage/cli": "^0.0.0-nightly-20231020021216",
|
|
52
52
|
"cookie-parser": "^1.4.6",
|
|
53
53
|
"express-promise-router": "^4.1.1",
|
|
54
54
|
"lodash": "^4.17.21",
|