-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gregg Van Hove
committed
May 17, 2018
1 parent
e811ac8
commit 71d6a81
Showing
3 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "jasmine-ajax", | ||
"description": "A library for faking Ajax responses in your Jasmine suite.", | ||
"version": "3.3.1", | ||
"version": "3.4.0", | ||
"main": "lib/mock-ajax.js", | ||
"license": "MIT", | ||
|
||
|
@@ -11,7 +11,7 @@ | |
"Gregg Van Hove <[email protected]>" | ||
], | ||
"dependencies": { | ||
"jasmine" : "~2" | ||
"jasmine" : "~3" | ||
}, | ||
"moduleType": [ | ||
"globals" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Jasmine Ajax 3.4.0 Release Notes | ||
|
||
## Summary | ||
This is a general release with a number of new features for Jasmine-Ajax | ||
|
||
## Changes | ||
|
||
* Stub Requests can pass through `statusText` | ||
- Fixes [#188](https://github.com/jasmine/jasmine-ajax/issues/188) | ||
|
||
* Convert url values to a string to work more like a native XHR | ||
- Fixes [#143](https://github.com/jasmine/jasmine-ajax/issues/143) | ||
|
||
* Check for real XHR instead of mock on install and word error better | ||
- See [#186](https://github.com/jasmine/jasmine-ajax/issues/186) | ||
|
||
* respondWith allows responseJSON property shortcut for stringifing an object | ||
- Merges [#185](https://github.com/jasmine/jasmine-ajax/issues/185) from @k-funk | ||
- Fixes [#177](https://github.com/jasmine/jasmine-ajax/issues/177) | ||
|
||
* Added checklist item for generating the `mock-ajax` file | ||
- See [#184](https://github.com/jasmine/jasmine-ajax/issues/184) | ||
|
||
* Update contributing docs and README to better explain things | ||
- Fixes [#184](https://github.com/jasmine/jasmine-ajax/issues/184) | ||
|
||
* Allow response status 0 for request stubs | ||
- Merges [#182](https://github.com/jasmine/jasmine-ajax/issues/182) from @kiramclean | ||
- Fixes [#141](https://github.com/jasmine/jasmine-ajax/issues/141) | ||
|
||
* Added instructions for contributing. | ||
- Merges [#179](https://github.com/jasmine/jasmine-ajax/issues/179) from @Arthaey | ||
|
||
* Add status and statusText to responseError. Defaults to 500. | ||
- Merges [#176](https://github.com/jasmine/jasmine-ajax/issues/176) from @Arthaey | ||
|
||
* Update readme to suggest creating mock-ajax.js reference in helpers path, not src_files | ||
- Merges [#173](https://github.com/jasmine/jasmine-ajax/issues/173) from @alidaka | ||
|
||
* Add "uninstall" notes to README | ||
- Merges [#169](https://github.com/jasmine/jasmine-ajax/issues/169) from @johnnymugs | ||
|
||
------ | ||
|
||
_Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_ |