@cosmicdrift/kumiko-bundled-features 0.11.0 → 0.11.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.
- package/CHANGELOG.md +13 -0
- package/package.json +5 -5
- package/src/user-data-rights/feature.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @cosmicdrift/kumiko-bundled-features
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e6f702f: `user-data-rights` declares `r.requires("sessions")` for the `sessions.revokeAllForUser` API it uses.
|
|
8
|
+
|
|
9
|
+
The feature called `r.usesApi("sessions.revokeAllForUser")` but didn't list `sessions` in `r.requires(...)`. The framework's `validateApiExposureMatching` boot-check rejects that as inconsistent (any feature exposed by another must be in requires/optionalRequires). Surfaced in studio's production-bundle boot.
|
|
10
|
+
|
|
11
|
+
- @cosmicdrift/kumiko-framework@0.11.1
|
|
12
|
+
- @cosmicdrift/kumiko-dispatcher-live@0.11.1
|
|
13
|
+
- @cosmicdrift/kumiko-renderer@0.11.1
|
|
14
|
+
- @cosmicdrift/kumiko-renderer-web@0.11.1
|
|
15
|
+
|
|
3
16
|
## 0.11.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-bundled-features",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -74,10 +74,10 @@
|
|
|
74
74
|
"@aws-sdk/client-s3": "^3.1045.0",
|
|
75
75
|
"@aws-sdk/lib-storage": "^3.1045.0",
|
|
76
76
|
"@aws-sdk/s3-request-presigner": "^3.1045.0",
|
|
77
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.11.
|
|
78
|
-
"@cosmicdrift/kumiko-framework": "0.11.
|
|
79
|
-
"@cosmicdrift/kumiko-renderer": "0.11.
|
|
80
|
-
"@cosmicdrift/kumiko-renderer-web": "0.11.
|
|
77
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.11.1",
|
|
78
|
+
"@cosmicdrift/kumiko-framework": "0.11.1",
|
|
79
|
+
"@cosmicdrift/kumiko-renderer": "0.11.1",
|
|
80
|
+
"@cosmicdrift/kumiko-renderer-web": "0.11.1",
|
|
81
81
|
"@mollie/api-client": "^4.5.0",
|
|
82
82
|
"@node-rs/argon2": "^2.0.2",
|
|
83
83
|
"@types/nodemailer": "^8.0.0",
|
|
@@ -84,7 +84,7 @@ export type UserDataRightsOptions = {
|
|
|
84
84
|
|
|
85
85
|
export function createUserDataRightsFeature(opts: UserDataRightsOptions = {}): FeatureDefinition {
|
|
86
86
|
return defineFeature("user-data-rights", (r) => {
|
|
87
|
-
r.requires("user", "data-retention", "compliance-profiles");
|
|
87
|
+
r.requires("user", "data-retention", "compliance-profiles", "sessions");
|
|
88
88
|
r.usesApi("compliance.forTenant");
|
|
89
89
|
r.usesApi("retention.policyFor");
|
|
90
90
|
// S2.U6 — restrict-account ruft sessions.revokeAllForUser cross-feature.
|