Releases: plotdb/rescope
Releases · plotdb/rescope
5.0.14
- extend the attr import from original function from
prototype
to all attributes.
5.0.13
- in Proxy
get
, return the bound function with prototype
updated from original value.
- prevent declaration of variables with illegal variable names in
_wrap
.
5.0.12
- remove sandbox attribute from iframe since we do need to interact between iframe and its host.
5.0.11
- fix bug: strict mode workaround in the previous version doesn't work
5.0.10
- workaround: cancel strict mode for correct prop parsing
5.0.9
- fix bug: bundler incorrect ignores
http
protocol
5.0.8
- fix bug: object set via
defineProperty
can't be reached again.
5.0.7
- catch library error and provide additional information for this error in log for better debugging experience.
5.0.6
- fix bug: some libs may access local vars but prepare it via global object, leading to variable not found issue.
for example, setimmediate.js update setimmediate
by:
attachedTo.setImmediate = function() { ... }
however it is used by
setImmediate( ... );
in this case, we have to manually update local variable content.
5.0.5
- fix bug:
async
in 5.0.4 is not required and causes issues.