@checkstack/backend 0.4.1 → 0.4.3
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 +24 -0
- package/bunfig.toml +5 -0
- package/package.json +1 -1
- package/src/test-preload.ts +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @checkstack/backend
|
|
2
2
|
|
|
3
|
+
## 0.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [83557c7]
|
|
8
|
+
- Updated dependencies [83557c7]
|
|
9
|
+
- @checkstack/backend-api@0.4.0
|
|
10
|
+
- @checkstack/common@0.4.0
|
|
11
|
+
- @checkstack/queue-api@0.1.2
|
|
12
|
+
- @checkstack/signal-backend@0.1.4
|
|
13
|
+
- @checkstack/api-docs-common@0.1.2
|
|
14
|
+
- @checkstack/auth-common@0.5.1
|
|
15
|
+
- @checkstack/signal-common@0.1.2
|
|
16
|
+
|
|
17
|
+
## 0.4.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [d94121b]
|
|
22
|
+
- @checkstack/backend-api@0.3.3
|
|
23
|
+
- @checkstack/auth-common@0.5.0
|
|
24
|
+
- @checkstack/queue-api@0.1.1
|
|
25
|
+
- @checkstack/signal-backend@0.1.3
|
|
26
|
+
|
|
3
27
|
## 0.4.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/bunfig.toml
ADDED
package/package.json
CHANGED
package/src/test-preload.ts
CHANGED
|
@@ -21,7 +21,7 @@ const loggerPath = path.join(backendSrcDir, "logger");
|
|
|
21
21
|
const coreServicesPath = path.join(
|
|
22
22
|
backendSrcDir,
|
|
23
23
|
"plugin-manager",
|
|
24
|
-
"core-services"
|
|
24
|
+
"core-services",
|
|
25
25
|
);
|
|
26
26
|
|
|
27
27
|
// Mock database module with absolute path
|
|
@@ -49,8 +49,13 @@ mock.module(coreServicesPath, () => ({
|
|
|
49
49
|
register: (ref: { id: string }, impl: unknown) => void;
|
|
50
50
|
};
|
|
51
51
|
}) => {
|
|
52
|
-
// Register mock database factory -
|
|
53
|
-
registry.registerFactory(coreServices.database, () => ({
|
|
52
|
+
// Register mock database factory - includes dialect.migrate for migration tests
|
|
53
|
+
registry.registerFactory(coreServices.database, () => ({
|
|
54
|
+
dialect: {
|
|
55
|
+
migrate: async () => {}, // Mock migrate function
|
|
56
|
+
},
|
|
57
|
+
session: {},
|
|
58
|
+
}));
|
|
54
59
|
|
|
55
60
|
// Register mock logger factory
|
|
56
61
|
registry.registerFactory(coreServices.logger, () => createMockLogger());
|