@plasius/gpu-lock-free-queue 0.2.2 → 0.2.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.
- package/CHANGELOG.md +75 -0
- package/README.md +10 -0
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,76 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
20
20
|
- **Security**
|
|
21
21
|
- (placeholder)
|
|
22
22
|
|
|
23
|
+
## [0.2.8] - 2026-03-01
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
## [0.2.7] - 2026-03-01
|
|
38
|
+
|
|
39
|
+
- **Added**
|
|
40
|
+
- (placeholder)
|
|
41
|
+
|
|
42
|
+
- **Changed**
|
|
43
|
+
- (placeholder)
|
|
44
|
+
|
|
45
|
+
- **Fixed**
|
|
46
|
+
- (placeholder)
|
|
47
|
+
|
|
48
|
+
- **Security**
|
|
49
|
+
- (placeholder)
|
|
50
|
+
|
|
51
|
+
## [0.2.6] - 2026-03-01
|
|
52
|
+
|
|
53
|
+
- **Added**
|
|
54
|
+
- (placeholder)
|
|
55
|
+
|
|
56
|
+
- **Changed**
|
|
57
|
+
- (placeholder)
|
|
58
|
+
|
|
59
|
+
- **Fixed**
|
|
60
|
+
- (placeholder)
|
|
61
|
+
|
|
62
|
+
- **Security**
|
|
63
|
+
- (placeholder)
|
|
64
|
+
|
|
65
|
+
## [0.2.4] - 2026-03-01
|
|
66
|
+
|
|
67
|
+
- **Added**
|
|
68
|
+
- (placeholder)
|
|
69
|
+
|
|
70
|
+
- **Changed**
|
|
71
|
+
- (placeholder)
|
|
72
|
+
|
|
73
|
+
- **Fixed**
|
|
74
|
+
- (placeholder)
|
|
75
|
+
|
|
76
|
+
- **Security**
|
|
77
|
+
- (placeholder)
|
|
78
|
+
|
|
79
|
+
## [0.2.3] - 2026-03-01
|
|
80
|
+
|
|
81
|
+
- **Added**
|
|
82
|
+
- `lint`, `typecheck`, and security audit scripts for local and CI enforcement.
|
|
83
|
+
|
|
84
|
+
- **Changed**
|
|
85
|
+
- CI now fails early on lint/typecheck/runtime dependency audit before build/test.
|
|
86
|
+
|
|
87
|
+
- **Fixed**
|
|
88
|
+
- Pack-check regex cleanup to remove an unnecessary path escape.
|
|
89
|
+
|
|
90
|
+
- **Security**
|
|
91
|
+
- Runtime dependency vulnerability checks are now enforced in CI.
|
|
92
|
+
|
|
23
93
|
## [0.2.2] - 2026-02-28
|
|
24
94
|
|
|
25
95
|
- **Added**
|
|
@@ -147,3 +217,8 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
147
217
|
- **Security**
|
|
148
218
|
- (placeholder)
|
|
149
219
|
[0.2.2]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.2
|
|
220
|
+
[0.2.3]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.3
|
|
221
|
+
[0.2.4]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.4
|
|
222
|
+
[0.2.6]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.6
|
|
223
|
+
[0.2.7]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.7
|
|
224
|
+
[0.2.8]: https://github.com/Plasius-LTD/gpu-lock-free-queue/releases/tag/v0.2.8
|
package/README.md
CHANGED
|
@@ -72,6 +72,16 @@ npm run test:coverage
|
|
|
72
72
|
npm run test:e2e
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
## Development Checks
|
|
76
|
+
|
|
77
|
+
```sh
|
|
78
|
+
npm run lint
|
|
79
|
+
npm run typecheck
|
|
80
|
+
npm run test:coverage
|
|
81
|
+
npm run build
|
|
82
|
+
npm run pack:check
|
|
83
|
+
```
|
|
84
|
+
|
|
75
85
|
## Files
|
|
76
86
|
- `demo/index.html`: Loads the demo.
|
|
77
87
|
- `demo/main.js`: WebGPU setup, enqueue/dequeue test, FFT spectrogram, and randomness heuristics.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-lock-free-queue",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.9",
|
|
4
4
|
"description": "WebGPU lock-free MPMC ring queue with sequence counters.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -26,6 +26,12 @@
|
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "tsup && cp src/queue.wgsl dist/queue.wgsl",
|
|
28
28
|
"demo": "python3 -m http.server",
|
|
29
|
+
"typecheck": "node --check src/index.js",
|
|
30
|
+
"audit:eslint": "eslint . --max-warnings=0",
|
|
31
|
+
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
32
|
+
"audit:npm": "npm audit --audit-level=high --omit=dev",
|
|
33
|
+
"audit:test": "npm run test:coverage",
|
|
34
|
+
"lint": "eslint . --max-warnings=0",
|
|
29
35
|
"test": "npm run test:unit",
|
|
30
36
|
"test:unit": "node --test",
|
|
31
37
|
"test:e2e": "npx playwright install chromium && playwright test",
|
|
@@ -48,8 +54,11 @@
|
|
|
48
54
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
49
55
|
"license": "Apache-2.0",
|
|
50
56
|
"devDependencies": {
|
|
57
|
+
"@eslint/js": "^9.39.1",
|
|
51
58
|
"@playwright/test": "^1.57.0",
|
|
52
59
|
"c8": "^10.1.3",
|
|
60
|
+
"eslint": "^9.39.1",
|
|
61
|
+
"globals": "^17.3.0",
|
|
53
62
|
"tsup": "^8.5.0",
|
|
54
63
|
"typescript": "^5.9.3"
|
|
55
64
|
},
|