This commit is contained in:
Roman Hotsiy 2017-09-21 18:22:24 +03:00
parent f2ed92c69e
commit 278e5d7917
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0
3 changed files with 24 additions and 4 deletions

View File

@ -1,3 +1,19 @@
<a name="1.19.0"></a>
# [1.19.0](https://github.com/Rebilly/ReDoc/compare/v1.18.1...v1.19.0) (2017-09-21)
### Bug Fixes
* Clearly label version compatibility ([8d849a6](https://github.com/Rebilly/ReDoc/commit/8d849a6)), closes [#338](https://github.com/Rebilly/ReDoc/issues/338)
* HEAD http verb support ([d8b6e02](https://github.com/Rebilly/ReDoc/commit/d8b6e02)), closes [#342](https://github.com/Rebilly/ReDoc/issues/342)
### Features
* add ignoredHeaderParameters option ([56d62e5](https://github.com/Rebilly/ReDoc/commit/56d62e5))
* add native-scrollbars option to workaround scrolling perf issues ([f2ed92c](https://github.com/Rebilly/ReDoc/commit/f2ed92c))
<a name="1.18.1"></a>
## [1.18.1](https://github.com/Rebilly/ReDoc/compare/v1.17.0...v1.18.1) (2017-08-28)

View File

@ -48,6 +48,7 @@ We host the latest and all the previous ReDoc releases on GitHub Pages-based **C
## Version Guidance
| ReDoc Release | OpenAPI Specification |
|:--------------|:----------------------|
| 1.19.x | 2.0 |
| 1.18.x | 2.0 |
| 1.17.x | 2.0 |

View File

@ -1,7 +1,7 @@
{
"name": "redoc",
"description": "Swagger-generated API Reference Documentation",
"version": "1.18.1",
"version": "1.19.0",
"repository": {
"type": "git",
"url": "git://github.com/Rebilly/ReDoc"
@ -14,7 +14,8 @@
"module": "dist/redoc.module.js",
"types": "dist/redoc.module.d.ts",
"scripts": {
"start": "webpack-dev-server --config build/webpack.dev.js --content-base demo",
"start":
"webpack-dev-server --config build/webpack.dev.js --content-base demo",
"start:prod": "NODE_ENV=production npm start",
"test": "npm run lint && node ./build/run_tests.js",
"lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
@ -26,12 +27,14 @@
"e2e-server": "http-server -p 3000 tests/e2e",
"e2e-copy": "cp dist/redoc.min.js tests/e2e/",
"webdriver": "webdriver-manager update",
"deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo",
"deploy":
"node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo",
"branch-release": "git reset --hard && branch-release",
"clean": "rimraf dist .tmp compiled lib/**/*.css",
"ngc": "ngc -p tsconfig.json",
"inline": "ng2-inline -o .tmp -r --compress \"lib/**/*.ts\"",
"build:module": "npm run build:sass && npm run inline && ngc -p tsconfig.aot.json && npm run module:css",
"build:module":
"npm run build:sass && npm run inline && ngc -p tsconfig.aot.json && npm run module:css",
"module:css": "node build/join-module-css.js",
"webpack:prod": "webpack --config build/webpack.prod.js --profile --bail",
"build:sass": "node-sass -q -o lib lib",