This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Release Notes
Ken Baltrinic edited this page Jul 18, 2015
·
13 revisions
- 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.
- Added support for using strict-di mode. Thank you to Azevedo-252 for this contribution.
- 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.
- 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.
- Fixes bug wherein onLoad.reset() did not remove the mock module registered with the browser, thus leaving it in effect.
- Modified onLoad brower.get() patching behavior so that the patch is removed with onLoad.reset() is invoked.
- 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.
- Added support for $httpBackend during initial page load.
- Removed need to expose $httpBackend as a global variable on window.
- 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.
- Added support for manual context synchronization via syncContext().
- Added
contextAutoSync: true|false
as a configuration option and deprecates use ofcontextField: false
as a means of disabling automatic context synchronization.
- Fixes bower.json format issue introduced in 1.1 @ commit da26c2a5d1
- Added context object support.
- Added better serialization of calls.
- First Stable Release
- Proxying of all when methods supported.
- Buffering of proxied calls supported.