node-web-audio-api 1.0.8 → 1.0.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v1.0.9 - 2026-03-23
4
+
5
+ - Fix: AudioWorklet properly recycle param buffers when dropped
6
+
3
7
  ## v1.0.8 - 2026-02-14
4
8
 
5
9
  - Fix: AudioRenderCapacity.stop cf. #167
package/js/lib/events.js CHANGED
@@ -5,6 +5,6 @@ module.exports.propagateEvent = function propagateEvent(eventTarget, event) {
5
5
  if (isFunction(eventTarget[`on${event.type}`])) {
6
6
  eventTarget[`on${event.type}`](event);
7
7
  }
8
- // then distach to add event listeners
8
+ // then dispatch to `addEventListener` callbacks
9
9
  eventTarget.dispatchEvent(event);
10
10
  }
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-web-audio-api",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "author": "Benjamin Matuszewski",
5
5
  "description": "Web Audio API implementation for Node.js",
6
6
  "exports": {