You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support [LegacyNoInterfaceObject] #873
Updates the specs -> .d.ts for the DOM .d.ts file to take into account more ways to declare something should not exist. Removing some types which aren't declared to be inside the JS runtime anymore.
Generate Worker iterable types #877
Adds webworker.iterable.generated.d.ts (which will need some compiler work to have it show up correctly)
Switch 'name' to 'void', mark as deprecated. #883
Switches the global variable name from never to void which means you will get an error if you read it. This was nearly always a mistake, we used to raise if you write to it, now you get it if you write.
The text was updated successfully, but these errors were encountered:
orta
changed the title
Changes for 4.1
Notable changes for 4.1
Sep 10, 2020
Changes which could affect builds:
Support [LegacyNoInterfaceObject] #873
Updates the
specs -> .d.ts
for the DOM .d.ts file to take into account more ways to declare something should not exist. Removing some types which aren't declared to be inside the JS runtime anymore.Generate Worker iterable types #877
Adds
webworker.iterable.generated.d.ts
(which will need some compiler work to have it show up correctly)Fix HkdfParams use and remove HkdfCtrParams #879
Removes
HkdfCtrParams
from the Web Cryptography API which was deprecated in 2016, replaced withHkdfParams
which is in the current spec.Switch 'name' to 'void', mark as deprecated. #883
Switches the global variable
name
fromnever
tovoid
which means you will get an error if you read it. This was nearly always a mistake, we used to raise if you write to it, now you get it if you write.The text was updated successfully, but these errors were encountered: