-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from tlivings/v1.0.0
Prepare for release.
- Loading branch information
Showing
6 changed files
with
35 additions
and
67 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
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,45 +1,7 @@ | ||
### 1.0.0-rc.4 | ||
|
||
* Fixed issue related to [#18](https://github.com/krakenjs/swaggerize-express/issues/18) and [expressjs/body-parser#44](https://github.com/expressjs/body-parser/issues/44). | ||
|
||
### 1.0.0-rc.3 | ||
### 1.0.0 | ||
|
||
* Fixed issue where generator failed with deeper `path`. | ||
|
||
### 1.0.0-rc.2 | ||
|
||
* Improved tests generation. | ||
|
||
### 1.0.0-rc.1 | ||
|
||
* __BREAKING CHANGE__: `options.docs` is `options.docspath` and defaults to `/`. | ||
|
||
### 0.1.0-alpha.6 | ||
|
||
* __BREAKING CHANGE__: Reverted to standard express handlers. | ||
* Removed output validation. | ||
* Middleware capability. | ||
|
||
### 0.1.0-alpha.5 | ||
|
||
* Better tests generator. | ||
* Bug fixes. | ||
|
||
### 0.1.0-alpha.4 | ||
|
||
* Only one of `--handlers` or `--models` is necessary in generator, not both. | ||
* Generator now has a `--tests` switch for generating tests. | ||
* Output validation is opt-in via `outputValidation: true`. | ||
|
||
### 0.1.0-alpha.3 | ||
|
||
* `resourcePath` in swagger document is base `mountpath` for routes. | ||
* Added support for path variables in `handlers` directory names. | ||
* Path parameters are always required if defined. | ||
* Fixed trailing commas in handler definitions created by generator. | ||
|
||
### 0.1.0-alpha.2 | ||
|
||
* Added generator for models and handlers stubs. | ||
* Fixed a bug that was not allowing multiple operations under an API definition. | ||
* Fixed bug caused by `res.send` deprecation. | ||
* Better schema validation error output. | ||
* Fixed issue related to [#18](https://github.com/krakenjs/swaggerize-express/issues/18) and [expressjs/body-parser#44](https://github.com/expressjs/body-parser/issues/44). |
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,8 +1,8 @@ | ||
{ | ||
"name": "swaggerize-express", | ||
"version": "1.0.0-rc.4", | ||
"version": "1.0.0", | ||
"author": "Trevor Livingston <[email protected]>", | ||
"description": "Spec-first REST services with Swagger and Express.", | ||
"description": "Design-first REST services with Swagger and Express.", | ||
"keywords": [ | ||
"swagger", | ||
"swagger-node", | ||
|