@plasius/gpu-worker 0.1.11 → 0.1.13
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 +31 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,34 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
- **Added**
|
|
12
|
+
- (placeholder)
|
|
13
|
+
|
|
14
|
+
- **Changed**
|
|
15
|
+
- (placeholder)
|
|
16
|
+
|
|
17
|
+
- **Fixed**
|
|
18
|
+
- (placeholder)
|
|
19
|
+
|
|
20
|
+
- **Security**
|
|
21
|
+
- (placeholder)
|
|
22
|
+
|
|
23
|
+
## [0.1.13] - 2026-04-02
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
## [0.1.12] - 2026-03-23
|
|
38
|
+
|
|
11
39
|
- **Added**
|
|
12
40
|
- (placeholder)
|
|
13
41
|
|
|
@@ -230,7 +258,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
230
258
|
|
|
231
259
|
---
|
|
232
260
|
|
|
233
|
-
[Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.
|
|
261
|
+
[Unreleased]: https://github.com/Plasius-LTD/gpu-worker/compare/v0.1.13...HEAD
|
|
234
262
|
[0.1.0-beta.1]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0-beta.1
|
|
235
263
|
[0.1.0]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.0
|
|
236
264
|
[0.1.2]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.2
|
|
@@ -254,3 +282,5 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
254
282
|
[0.1.9]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.9
|
|
255
283
|
[0.1.10]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.10
|
|
256
284
|
[0.1.11]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.11
|
|
285
|
+
[0.1.12]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.12
|
|
286
|
+
[0.1.13]: https://github.com/Plasius-LTD/gpu-worker/releases/tag/v0.1.13
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-worker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "WebGPU worker runtime with a lock-free job queue for WGSL workloads.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -55,16 +55,17 @@
|
|
|
55
55
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
56
56
|
"license": "Apache-2.0",
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@plasius/gpu-
|
|
58
|
+
"@plasius/gpu-shared": "^0.1.4",
|
|
59
|
+
"@plasius/gpu-lock-free-queue": "^0.2.15"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
|
-
"@eslint/js": "^
|
|
62
|
+
"@eslint/js": "^10.0.1",
|
|
62
63
|
"@playwright/test": "^1.57.0",
|
|
63
|
-
"c8": "^
|
|
64
|
-
"eslint": "^
|
|
64
|
+
"c8": "^11.0.0",
|
|
65
|
+
"eslint": "^10.1.0",
|
|
65
66
|
"globals": "^17.3.0",
|
|
66
67
|
"tsup": "^8.5.0",
|
|
67
|
-
"typescript": "^
|
|
68
|
+
"typescript": "^6.0.2"
|
|
68
69
|
},
|
|
69
70
|
"repository": {
|
|
70
71
|
"type": "git",
|