@checkstack/queue-memory-backend 0.3.1 → 0.3.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 CHANGED
@@ -1,5 +1,30 @@
1
1
  # @checkstack/queue-memory-backend
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [f676e11]
8
+ - Updated dependencies [48c2080]
9
+ - @checkstack/common@0.6.2
10
+ - @checkstack/backend-api@0.6.0
11
+ - @checkstack/queue-memory-common@0.1.6
12
+ - @checkstack/queue-api@0.2.3
13
+
14
+ ## 0.3.2
15
+
16
+ ### Patch Changes
17
+
18
+ - 0b9fc58: Fix workspace:\* protocol resolution in published packages
19
+
20
+ 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.
21
+
22
+ - Updated dependencies [0b9fc58]
23
+ - @checkstack/backend-api@0.5.2
24
+ - @checkstack/common@0.6.1
25
+ - @checkstack/queue-api@0.2.2
26
+ - @checkstack/queue-memory-common@0.1.5
27
+
3
28
  ## 0.3.1
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/queue-memory-backend",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -9,16 +9,16 @@
9
9
  "lint:code": "eslint . --max-warnings 0"
10
10
  },
11
11
  "dependencies": {
12
- "@checkstack/backend-api": "workspace:*",
13
- "@checkstack/queue-api": "workspace:*",
14
- "@checkstack/queue-memory-common": "workspace:*",
15
- "@checkstack/common": "workspace:*",
12
+ "@checkstack/backend-api": "0.5.2",
13
+ "@checkstack/queue-api": "0.2.2",
14
+ "@checkstack/queue-memory-common": "0.1.5",
15
+ "@checkstack/common": "0.6.1",
16
16
  "cron-parser": "^4.9.0",
17
17
  "zod": "^4.2.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/bun": "latest",
21
- "@checkstack/tsconfig": "workspace:*",
22
- "@checkstack/scripts": "workspace:*"
21
+ "@checkstack/tsconfig": "0.0.3",
22
+ "@checkstack/scripts": "0.1.1"
23
23
  }
24
24
  }
@@ -270,7 +270,7 @@ describe("InMemoryQueue Cron Scheduling", () => {
270
270
  await Promise.resolve();
271
271
 
272
272
  expect(executionCount).toBeGreaterThanOrEqual(1);
273
- });
273
+ }, 10_000);
274
274
  });
275
275
 
276
276
  describe("Invalid cron patterns", () => {