@backstage/plugin-auth-node 0.5.4-next.2 → 0.5.5-next.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 +27 -0
- package/package.json +18 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-auth-node
|
|
2
2
|
|
|
3
|
+
## 0.5.5-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1e624ca: Restrict `@types/express` version range from `*` to `^4.17.6`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
10
|
+
- @backstage/catalog-client@1.8.1-next.0
|
|
11
|
+
- @backstage/catalog-model@1.7.1
|
|
12
|
+
- @backstage/config@1.3.0
|
|
13
|
+
- @backstage/errors@1.2.5
|
|
14
|
+
- @backstage/types@1.2.0
|
|
15
|
+
|
|
16
|
+
## 0.5.4
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- a0a9a4a: Browsers silently drop cookies that exceed 4KB, which can be problematic for refresh tokens and other large cookies.This update ensures that large cookies, like refresh tokens, are not dropped by browsers, maintaining the integrity of the authentication process. The changes include both the implementation of the cookie splitting logic and corresponding tests to validate the new functionality.
|
|
21
|
+
- 4e58bc7: Upgrade to uuid v11 internally
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/catalog-client@1.8.0
|
|
24
|
+
- @backstage/config@1.3.0
|
|
25
|
+
- @backstage/types@1.2.0
|
|
26
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
27
|
+
- @backstage/catalog-model@1.7.1
|
|
28
|
+
- @backstage/errors@1.2.5
|
|
29
|
+
|
|
3
30
|
## 0.5.4-next.2
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-node",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "node-library",
|
|
6
6
|
"pluginId": "auth",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@backstage/backend-common": "^0.25.0",
|
|
41
|
-
"@backstage/backend-plugin-api": "1.0.
|
|
42
|
-
"@backstage/catalog-client": "1.8.
|
|
43
|
-
"@backstage/catalog-model": "1.7.
|
|
44
|
-
"@backstage/config": "1.
|
|
45
|
-
"@backstage/errors": "1.2.
|
|
46
|
-
"@backstage/types": "1.
|
|
47
|
-
"@types/express": "
|
|
41
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
42
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
43
|
+
"@backstage/catalog-model": "1.7.1",
|
|
44
|
+
"@backstage/config": "1.3.0",
|
|
45
|
+
"@backstage/errors": "1.2.5",
|
|
46
|
+
"@backstage/types": "1.2.0",
|
|
47
|
+
"@types/express": "^4.17.6",
|
|
48
48
|
"@types/passport": "^1.0.3",
|
|
49
49
|
"express": "^4.17.1",
|
|
50
50
|
"jose": "^5.0.0",
|
|
@@ -57,13 +57,20 @@
|
|
|
57
57
|
"zod-validation-error": "^3.4.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@backstage/backend-test-utils": "1.
|
|
61
|
-
"@backstage/cli": "0.29.
|
|
60
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
61
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
62
62
|
"cookie-parser": "^1.4.6",
|
|
63
63
|
"express-promise-router": "^4.1.1",
|
|
64
64
|
"lodash": "^4.17.21",
|
|
65
65
|
"msw": "^1.0.0",
|
|
66
66
|
"supertest": "^7.0.0",
|
|
67
|
-
"uuid": "^
|
|
67
|
+
"uuid": "^11.0.0"
|
|
68
|
+
},
|
|
69
|
+
"typesVersions": {
|
|
70
|
+
"*": {
|
|
71
|
+
"index": [
|
|
72
|
+
"dist/index.d.ts"
|
|
73
|
+
]
|
|
74
|
+
}
|
|
68
75
|
}
|
|
69
76
|
}
|