@checkstack/queue-memory-backend 0.3.0 → 0.3.2

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,29 @@
1
1
  # @checkstack/queue-memory-backend
2
2
 
3
+ ## 0.3.2
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/backend-api@0.5.2
13
+ - @checkstack/common@0.6.1
14
+ - @checkstack/queue-api@0.2.2
15
+ - @checkstack/queue-memory-common@0.1.5
16
+
17
+ ## 0.3.1
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [db1f56f]
22
+ - @checkstack/common@0.6.0
23
+ - @checkstack/backend-api@0.5.1
24
+ - @checkstack/queue-memory-common@0.1.4
25
+ - @checkstack/queue-api@0.2.1
26
+
3
27
  ## 0.3.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/queue-memory-backend",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
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.1",
13
+ "@checkstack/queue-api": "0.2.1",
14
+ "@checkstack/queue-memory-common": "0.1.4",
15
+ "@checkstack/common": "0.6.0",
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.2",
22
+ "@checkstack/scripts": "0.1.0"
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", () => {