avbridge 2.1.0 → 2.1.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 +13 -0
- package/dist/element-browser.js +911 -8
- package/dist/element-browser.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to **avbridge** are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project
|
|
5
5
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [2.1.1]
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **`dist/element-browser.js` no longer has a bare `libavjs-webcodecs-bridge`
|
|
12
|
+
import.** 2.1.0 inlined mediabunny into the browser bundle but left
|
|
13
|
+
`libavjs-webcodecs-bridge` external, so direct
|
|
14
|
+
`<script type="module">` consumers hit
|
|
15
|
+
`Failed to resolve module specifier "libavjs-webcodecs-bridge"` on load.
|
|
16
|
+
The browser entry now inlines it via `noExternal`. Only the actual
|
|
17
|
+
libav.js WASM variants stay external, and those are loaded via URL
|
|
18
|
+
dynamic imports relative to `import.meta.url`, not bare specifiers.
|
|
19
|
+
|
|
7
20
|
## [2.1.0]
|
|
8
21
|
|
|
9
22
|
### Added
|