Skip to content

Releases: plotdb/rescope

5.0.14

19 Sep 08:31
Compare
Choose a tag to compare
  • extend the attr import from original function from prototype to all attributes.

5.0.13

19 Sep 07:26
Compare
Choose a tag to compare
  • 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

27 Jan 13:21
Compare
Choose a tag to compare
  • remove sandbox attribute from iframe since we do need to interact between iframe and its host.

5.0.11

09 Aug 06:52
Compare
Choose a tag to compare
  • fix bug: strict mode workaround in the previous version doesn't work

5.0.10

09 Aug 06:32
Compare
Choose a tag to compare
  • workaround: cancel strict mode for correct prop parsing

5.0.9

28 Mar 00:05
Compare
Choose a tag to compare
  • fix bug: bundler incorrect ignores http protocol

5.0.8

10 Mar 07:06
Compare
Choose a tag to compare
  • fix bug: object set via defineProperty can't be reached again.

5.0.7

22 Feb 13:30
Compare
Choose a tag to compare
  • catch library error and provide additional information for this error in log for better debugging experience.

5.0.6

09 Jan 08:32
Compare
Choose a tag to compare
  • 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

09 Jan 08:27
Compare
Choose a tag to compare
  • fix bug: async in 5.0.4 is not required and causes issues.