@cosmicdrift/kumiko-server-runtime 0.258.0 → 0.258.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/package.json +3 -3
- package/src/__tests__/boot-probe-fixture.ts +1 -1
- package/src/__tests__/pii-boot-gate.test.ts +4 -1
- package/src/__tests__/run-prod-app.integration.test.ts +1 -1
- package/src/__tests__/run-worker-app.integration.test.ts +1 -1
- package/src/boot/__tests__/job-run-logger.integration.test.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-server-runtime",
|
|
3
|
-
"version": "0.258.
|
|
3
|
+
"version": "0.258.1",
|
|
4
4
|
"description": "Production server-boot runtime for Kumiko apps: connections, schema-drift-gate, seeds, lifecycle, graceful shutdown. Symmetric to kumiko-dev-server's runDevApp, without dev/scaffold/codegen tooling.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@cosmicdrift/kumiko-bundled-features": "0.258.
|
|
84
|
-
"@cosmicdrift/kumiko-framework": "0.258.
|
|
83
|
+
"@cosmicdrift/kumiko-bundled-features": "0.258.1",
|
|
84
|
+
"@cosmicdrift/kumiko-framework": "0.258.1",
|
|
85
85
|
"temporal-polyfill": "^0.3.2"
|
|
86
86
|
},
|
|
87
87
|
"publishConfig": {
|
|
@@ -22,7 +22,7 @@ export function makeProbeFeature(opts: {
|
|
|
22
22
|
}): FeatureDefinition {
|
|
23
23
|
const probeEntity = createEntity({
|
|
24
24
|
fields: {
|
|
25
|
-
name: createTextField({ required: true }),
|
|
25
|
+
name: createTextField({ personal: false, reason: "test_fixture", required: true }),
|
|
26
26
|
active: createBooleanField({ default: true }),
|
|
27
27
|
},
|
|
28
28
|
table: opts.table,
|
|
@@ -15,7 +15,10 @@ const piiFeature = defineFeature("gate-pii", (r) => {
|
|
|
15
15
|
const plainFeature = defineFeature("gate-plain", (r) => {
|
|
16
16
|
r.entity(
|
|
17
17
|
"thing",
|
|
18
|
-
createEntity({
|
|
18
|
+
createEntity({
|
|
19
|
+
table: "read_gate_things",
|
|
20
|
+
fields: { name: createTextField({ personal: false, reason: "test_fixture" }) },
|
|
21
|
+
}),
|
|
19
22
|
);
|
|
20
23
|
});
|
|
21
24
|
|
|
@@ -72,7 +72,7 @@ async function createTempStaticDir(files: Record<string, string>): Promise<strin
|
|
|
72
72
|
|
|
73
73
|
const widgetEntity = createEntity({
|
|
74
74
|
fields: {
|
|
75
|
-
name: createTextField({ required: true }),
|
|
75
|
+
name: createTextField({ personal: false, reason: "test_fixture", required: true }),
|
|
76
76
|
active: createBooleanField({ default: true }),
|
|
77
77
|
},
|
|
78
78
|
table: "prod_widgets",
|
|
@@ -31,7 +31,7 @@ import { runWorkerApp, type WorkerAppHandle } from "../run-worker-app";
|
|
|
31
31
|
const jobRuns: Array<{ note: string; temporalWasDefined: boolean }> = [];
|
|
32
32
|
|
|
33
33
|
const workerProbeEntity = createEntity({
|
|
34
|
-
fields: { note: createTextField({ required: true }) },
|
|
34
|
+
fields: { note: createTextField({ personal: false, reason: "test_fixture", required: true }) },
|
|
35
35
|
table: "worker_probes",
|
|
36
36
|
});
|
|
37
37
|
|
|
@@ -105,7 +105,7 @@ describe("startDevJobRunners", () => {
|
|
|
105
105
|
// ctx.write and ctx.queryAs end-to-end.
|
|
106
106
|
const attachNoteEntity = createEntity({
|
|
107
107
|
table: "job_attach_notes",
|
|
108
|
-
fields: { text: createTextField({ required: true }) },
|
|
108
|
+
fields: { text: createTextField({ personal: false, reason: "test_fixture", required: true }) },
|
|
109
109
|
});
|
|
110
110
|
const attachNoteTable = buildEntityTable("note", attachNoteEntity);
|
|
111
111
|
|