Releases: Daddoon/Blazor.Polyfill
Releases · Daddoon/Blazor.Polyfill
v7.0.203.1
v7.0.203.0
- Support .NET 7.0
- Add Blazor InputFile events support on Internet Explorer 11
v6.0.200.0
- blazor.server.js is now cached and managed in es5cache like other transpilable libraries. The cached version will always be used instead of generating it at each application startup.
v6.0.100.3
- Fix invalid 'require' keyword in blazor.server.js added by Babel in transpilation that cannot be used on a pure javascript environment
v6.0.100.2
- Blazor.Polyfill now respect the autostart attribute value at start
- Added the ES5ConversionScope option in Blazor.Polyfill configuration. This option is meant to transpile None, Razor Class Libraries, or All Javascript files to ES5 automatically and store it in a es5cache store for your application. Files will be used automatically at runtime when needed. Keeping them under source control is advised.
v6.0.100.1
- Added 'webRootPath' parameter on _import_ javascript isolation emulation method. See the documentation for usage.
v6.0.100.0
- Support for .NET 6.0.100
v5.0.102.0
- Added option to disable automatic React.NET registration, to give more control to advanced scenarios.
- Updated V8 and Native V8 dependencies to 7.1.0
- Added V8 native dependencies for ARM64 (Linux) and ARM64 (Windows)
- Added some conditional logics about the default JS engine used. Windows and OSX (all CPU type) and Linux (x64) uses ChakraCore. Linux (ARM64) use V8. Other platforms or failing scenarios should use the "UsePackagedBlazorServerLibrary" option instead.
v5.0.100.6
- Add configurable ES5 fallback option with a delegate validation
- Add Javascript isolation and dynamic import emulation. See the updated documentation on how to install and use it.
v5.0.100.5
- Fix dependencies error on Linux (Debian 10 default installation)
- Potentially fix Azure Web App error with the default Linux image container
- Added BlazorPolyfillOptions parameter for UseBlazorPolyfill methods in order to configure additional behaviors at startup
- Added the ForceES5Fallback option in order to force ES5 and Polyfill behaviors even if the browser is not Internet Explorer 11 or Edge Legacy.
- Added ChakraCore engine image and set it as default. V8 engine is still present as fallback engine.