-
Notifications
You must be signed in to change notification settings - Fork 65
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
Showing
14 changed files
with
165 additions
and
44 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
## [0.8.1](https://github.com/smollweide/node-mock-server/issues?q=milestone%3A0.8.1) | ||
- Fix: Validation: ignore "cannot read file" when response_schema.json is empty #19 | ||
- Fix: Validation: set minimum response delay #20 | ||
- Prettify logs | ||
|
||
## [0.8.0](https://github.com/smollweide/node-mock-server/issues?q=milestone%3A0.8.0) | ||
- More readable schema structure and faker DTO response functions | ||
|
||
## [0.7.4](https://github.com/smollweide/node-mock-server/issues?q=milestone%3A0.7.4) | ||
- Different success files for different params #14 | ||
- Fix: Preview not working with as expected with params in success.json #11 | ||
|
||
## [0.7.3](https://github.com/smollweide/node-mock-server/issues?q=milestone%3A0.7.3) | ||
- Fix: First level calls are detected as invalid path #12 | ||
|
||
## [0.7.2](https://github.com/smollweide/node-mock-server/issues?q=milestone%3A0.7.2) | ||
- Add dynamic path params to ejs object #9 | ||
- Detect empty dynamic path params and return error #8 | ||
- Store validation results in just one file #3 | ||
|
||
## 0.7.0 | ||
- DTO import and DTO to class converter | ||
|
||
## 0.6.3 | ||
- Prettify logs and bug fixes | ||
|
||
## 0.6.0 | ||
- Mock response validation | ||
|
||
## 0.5.0 | ||
- Swagger import | ||
|
||
## 0.4.0 | ||
- Allows explicit error messages and their status | ||
|
||
## 0.3.0 | ||
- UI with group navigation | ||
|
||
## 0.2.0 | ||
- Mock Server | ||
|
||
## 0.1.0 | ||
- Initial Version | ||
- Specification UI |
File renamed without changes.
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "node-mock-server", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "File based Node API mock server", | ||
"email": "[email protected]", | ||
"author": "Simon Mollweide <[email protected]>", | ||
|
@@ -27,14 +27,15 @@ | |
"DTO", | ||
"Swagger" | ||
], | ||
"engines" : { | ||
"node" : ">=0.12.7" | ||
"engines": { | ||
"node": ">=0.12.7" | ||
}, | ||
"preferGlobal": false, | ||
"private": false, | ||
"license": "MIT", | ||
"dependencies": { | ||
"body-parser": "^1.15.0", | ||
"chip": "0.0.5", | ||
"deasync": "^0.1.4", | ||
"ejs": "^2.4.1", | ||
"express": "^4.13.4", | ||
|
Oops, something went wrong.