@checkstack/backend 0.4.8 → 0.4.9

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +12 -12
  3. package/bunfig.toml +0 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @checkstack/backend
2
2
 
3
+ ## 0.4.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 0b9fc58: Fix workspace:\* protocol resolution in published packages
8
+
9
+ Published packages now correctly have resolved dependency versions instead of `workspace:*` references. This is achieved by using `bun publish` which properly resolves workspace protocol references.
10
+
11
+ - Updated dependencies [0b9fc58]
12
+ - @checkstack/api-docs-common@0.1.5
13
+ - @checkstack/auth-common@0.5.4
14
+ - @checkstack/backend-api@0.5.2
15
+ - @checkstack/common@0.6.1
16
+ - @checkstack/drizzle-helper@0.0.3
17
+ - @checkstack/queue-api@0.2.2
18
+ - @checkstack/signal-backend@0.1.8
19
+ - @checkstack/signal-common@0.1.5
20
+
3
21
  ## 0.4.8
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/backend",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "bun --env-file=../../.env --watch src/index.ts",
@@ -10,14 +10,14 @@
10
10
  "lint:code": "eslint . --max-warnings 0"
11
11
  },
12
12
  "dependencies": {
13
- "@checkstack/api-docs-common": "workspace:*",
14
- "@checkstack/auth-common": "workspace:*",
15
- "@checkstack/backend-api": "workspace:*",
16
- "@checkstack/common": "workspace:*",
17
- "@checkstack/drizzle-helper": "workspace:*",
18
- "@checkstack/queue-api": "workspace:*",
19
- "@checkstack/signal-backend": "workspace:*",
20
- "@checkstack/signal-common": "workspace:*",
13
+ "@checkstack/api-docs-common": "0.1.4",
14
+ "@checkstack/auth-common": "0.5.3",
15
+ "@checkstack/backend-api": "0.5.1",
16
+ "@checkstack/common": "0.6.0",
17
+ "@checkstack/drizzle-helper": "0.0.2",
18
+ "@checkstack/queue-api": "0.2.1",
19
+ "@checkstack/signal-backend": "0.1.7",
20
+ "@checkstack/signal-common": "0.1.4",
21
21
  "@hono/zod-validator": "^0.7.6",
22
22
  "@orpc/client": "^1.13.2",
23
23
  "@orpc/openapi": "^1.13.2",
@@ -35,8 +35,8 @@
35
35
  "drizzle-kit": "^0.31.8",
36
36
  "@types/pg": "^8.11.0",
37
37
  "@types/bun": "latest",
38
- "@checkstack/tsconfig": "workspace:*",
39
- "@checkstack/scripts": "workspace:*",
40
- "@checkstack/test-utils-backend": "workspace:*"
38
+ "@checkstack/tsconfig": "0.0.2",
39
+ "@checkstack/scripts": "0.1.0",
40
+ "@checkstack/test-utils-backend": "0.1.7"
41
41
  }
42
42
  }
package/bunfig.toml DELETED
@@ -1,5 +0,0 @@
1
- # Bun test configuration for core/backend
2
- # This ensures tests work when run from this subdirectory
3
- [test]
4
- # Preload mocks before any test file runs
5
- preload = ["./src/test-preload.ts"]