mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-25 10:03:45 +03:00
v1.19.0
This commit is contained in:
parent
f2ed92c69e
commit
278e5d7917
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -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>
|
<a name="1.18.1"></a>
|
||||||
## [1.18.1](https://github.com/Rebilly/ReDoc/compare/v1.17.0...v1.18.1) (2017-08-28)
|
## [1.18.1](https://github.com/Rebilly/ReDoc/compare/v1.17.0...v1.18.1) (2017-08-28)
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,7 @@ We host the latest and all the previous ReDoc releases on GitHub Pages-based **C
|
||||||
## Version Guidance
|
## Version Guidance
|
||||||
| ReDoc Release | OpenAPI Specification |
|
| ReDoc Release | OpenAPI Specification |
|
||||||
|:--------------|:----------------------|
|
|:--------------|:----------------------|
|
||||||
|
| 1.19.x | 2.0 |
|
||||||
| 1.18.x | 2.0 |
|
| 1.18.x | 2.0 |
|
||||||
| 1.17.x | 2.0 |
|
| 1.17.x | 2.0 |
|
||||||
|
|
||||||
|
|
11
package.json
11
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "redoc",
|
"name": "redoc",
|
||||||
"description": "Swagger-generated API Reference Documentation",
|
"description": "Swagger-generated API Reference Documentation",
|
||||||
"version": "1.18.1",
|
"version": "1.19.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/Rebilly/ReDoc"
|
"url": "git://github.com/Rebilly/ReDoc"
|
||||||
|
@ -14,7 +14,8 @@
|
||||||
"module": "dist/redoc.module.js",
|
"module": "dist/redoc.module.js",
|
||||||
"types": "dist/redoc.module.d.ts",
|
"types": "dist/redoc.module.d.ts",
|
||||||
"scripts": {
|
"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",
|
"start:prod": "NODE_ENV=production npm start",
|
||||||
"test": "npm run lint && node ./build/run_tests.js",
|
"test": "npm run lint && node ./build/run_tests.js",
|
||||||
"lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
|
"lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
|
||||||
|
@ -26,12 +27,14 @@
|
||||||
"e2e-server": "http-server -p 3000 tests/e2e",
|
"e2e-server": "http-server -p 3000 tests/e2e",
|
||||||
"e2e-copy": "cp dist/redoc.min.js tests/e2e/",
|
"e2e-copy": "cp dist/redoc.min.js tests/e2e/",
|
||||||
"webdriver": "webdriver-manager update",
|
"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",
|
"branch-release": "git reset --hard && branch-release",
|
||||||
"clean": "rimraf dist .tmp compiled lib/**/*.css",
|
"clean": "rimraf dist .tmp compiled lib/**/*.css",
|
||||||
"ngc": "ngc -p tsconfig.json",
|
"ngc": "ngc -p tsconfig.json",
|
||||||
"inline": "ng2-inline -o .tmp -r --compress \"lib/**/*.ts\"",
|
"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",
|
"module:css": "node build/join-module-css.js",
|
||||||
"webpack:prod": "webpack --config build/webpack.prod.js --profile --bail",
|
"webpack:prod": "webpack --config build/webpack.prod.js --profile --bail",
|
||||||
"build:sass": "node-sass -q -o lib lib",
|
"build:sass": "node-sass -q -o lib lib",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user