snabbdom / snabbdom

A virtual DOM library with focus on simplicity, modularity, powerful features and performance.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Release 3.5.1 drops IE11 support

edmorrish opened this issue · comments

Looks like one of the changes introduced in version 3.5.1 added a use of Array.from: 230aa23#diff-b06da8b5eaf15ddfe5341deaeef13cb9c94546db8b0bd927dd358142aa4fc3c7R122

which is not supported on IE11 according to caniuse (https://caniuse.com/mdn-javascript_builtins_array_from).

I don't think there's any published documentation on what browsers are supported by snabbdom, but I'm fairly sure that until this change snabbdom worked out of the box on IE11. If the intention is not to support older browsers in future that's fine, and I can look into polyfilling it for our use case, but it would be good to know if this was an intentional choice or an oversight.

It was not an international choice, but IE11 is EOL, so I do not want to support it either. So for all intents and purposes, no IE is not supported any more

Okay, thanks for your reply!