@stream-io/video-filters-web 0.5.0 → 0.5.1

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.5.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.5.0...@stream-io/video-filters-web-0.5.1) (2025-11-25)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **react:** Fix InvalidStateException when track is stopped ([#2015](https://github.com/GetStream/stream-video-js/issues/2015)) ([d3c0331](https://github.com/GetStream/stream-video-js/commit/d3c0331803e5a512a93bd972883f27ac81689c61))
10
+
5
11
  ## [0.5.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-filters-web-0.4.0...@stream-io/video-filters-web-0.5.0) (2025-11-17)
6
12
 
7
13
  ### Features
package/dist/index.cjs.js CHANGED
@@ -1561,7 +1561,7 @@ const createTFLiteSIMDModule = (__Module) => {
1561
1561
  return __Module.ready;
1562
1562
  };
1563
1563
 
1564
- const version = "0.5.0";
1564
+ const version = "0.5.1";
1565
1565
  const packageName = "@stream-io/video-filters-web";
1566
1566
 
1567
1567
  // @ts-expect-error - module is not declared
@@ -2524,7 +2524,7 @@ class VirtualBackground {
2524
2524
  const signal = this.abortController.signal;
2525
2525
  readable
2526
2526
  .pipeThrough(transformStream, { signal })
2527
- .pipeTo(writable)
2527
+ .pipeTo(writable, { signal })
2528
2528
  .catch((e) => {
2529
2529
  if (e.name !== 'AbortError') {
2530
2530
  console.error('[virtual-background] Error processing track:', e);