Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Release Notes

Ken Baltrinic edited this page Jul 18, 2015 · 13 revisions

V 1.4.3

  • Fixes bug in buffered mode where calling flush on an empty buffer threw an exception. Thank you andyperlitch for finding and fixing this.
  • Tested against latest versions of Angular.js and Protractor and updated dependencies to latest of everything.

V 1.4.2

V 1.4.1

  • Tightened up code that serializes the context object and calls on $httpBackend. All strings are now passed through JSON.stringify to ensure that they are properly escaped. These changes are not likely to affect you unless you have a habit of using double quotes, backslashes, etc. in your hash keys or other unlikely places.

V 1.4

  • Fixes Issue #6: Regular expressions created using the RegExp constructor and containing un-escaped forward slashes now correctly serialize. e.g. new RegExp('/my/url')
  • Improved data type support in the context object.
  • Dates are now supported.
  • Dates, functions and regular expressions can now be included within arrays.
  • Tested with the latest and greatest release versions of Protractor and Angular.

V 1.3.3

  • Fixes bug wherein onLoad.reset() did not remove the mock module registered with the browser, thus leaving it in effect.

V 1.3.2

  • Modified onLoad brower.get() patching behavior so that the patch is removed with onLoad.reset() is invoked.

V 1.3.1

  • Fixes bugs in the workaround code for Protractor Issue #764
  • Fixes bug wherein calling browser.get() would return void instead of a promise after proxy.onLoad was accessed.
  • Updates Protractor to 0.22.0.

V 1.3

  • Added support for $httpBackend during initial page load.
  • Removed need to expose $httpBackend as a global variable on window.

V 1.2.1

  • Tweaks package configuration so that npm does not try to install dev bower dependencies during a regular install. Bower dependencies are now only installed when one runs the test harness.
  • Documentation improvements.

V 1.2

  • Added support for manual context synchronization via syncContext().
  • Added contextAutoSync: true|false as a configuration option and deprecates use of contextField: false as a means of disabling automatic context synchronization.

V 1.1.1

  • Fixes bower.json format issue introduced in 1.1 @ commit da26c2a5d1

V 1.1

  • Added context object support.
  • Added better serialization of calls.

V 1.0.0

  • First Stable Release
  • Proxying of all when methods supported.
  • Buffering of proxied calls supported.