-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include version number into report and filename #107
Comments
Hi @fairking. Currently you can't customize the report and the name of the report file although it shouldn't be a big deal to implement those things. Before we do that, would you mind explaining a bit your use-case? |
I am generating a report on every release so I would like to keep a history of all report versions and also I am sharing such reports among third parties. So the version number would be a very useful hint for reference. |
Noted, thanks @fairking for the explanation. |
Done in #115 |
Hi everyone,
Is the any way to include the version number to the report and filename?
For example the following command:
java -jar "..\..\Utils\SwaggerBrake\swagger-brake-2.3.0-cli.jar" --old-api=schema_old.json --new-api=schema.json --output-formats=HTML --output-path=.\
Would generate the following file:
swagger-brake-1.0.1.html
. and the version also included into the document itself:The version number is determined by the schema.json (see
info.version
)It would be also nice to customize the report filename as well (eg.
my-project-breaking-changes.html
).Thanks.
The text was updated successfully, but these errors were encountered: