Skip to content

Releases: Daddoon/Blazor.Polyfill

v7.0.203.1

26 Apr 16:47
63047d4
Compare
Choose a tag to compare
  • Support for .NET 6 and .NET 7 simultaneously
  • Adding BeforeES5TransformHandler delegate method
  • Adding OnES5ConvertFailure delegate method
  • Add Blazor InputFile events support on Internet Explorer 11

v7.0.203.0

24 Apr 14:08
1945878
Compare
Choose a tag to compare
  • Support .NET 7.0
  • Add Blazor InputFile events support on Internet Explorer 11

v6.0.200.0

23 Feb 14:51
3f13f69
Compare
Choose a tag to compare
  • 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

04 Dec 18:28
3f13f69
Compare
Choose a tag to compare
  • 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

21 Nov 16:56
7c46289
Compare
Choose a tag to compare
  • 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

13 Nov 19:27
e24c954
Compare
Choose a tag to compare
  • Added 'webRootPath' parameter on _import_ javascript isolation emulation method. See the documentation for usage.

v6.0.100.0

09 Nov 18:03
057db9d
Compare
Choose a tag to compare
  • Support for .NET 6.0.100

v5.0.102.0

01 Feb 10:42
f951b1c
Compare
Choose a tag to compare
  • 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

18 Jan 18:07
c7c2b52
Compare
Choose a tag to compare
  • 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

05 Jan 10:54
2b14fb7
Compare
Choose a tag to compare
  • 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.