Skip to content

3.0.0

Compare
Choose a tag to compare
@cmorten cmorten released this 21 Nov 16:51
· 13 commits to main since this release

ChangeLog

[3.0.0] - 21-11-2021

  • [#10] Store and pass the proxy response data as an Uint8Array instead of
    always decoding to a string (#11)

This impacts:

Where the proxyResData argument will be of type Uint8Array|null and not
string|null. If you require the value to be a string, you will need to decode
it yourself using, e.g.

new TextDecoder().decode(proxyResData);