You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: - Methods saveHistory is removed and no more needed.
- config.json file obligatory fields are updated. Now only the base path to reports files should be provided in the config.json file - see the below example.
- History of the coverage changes is now reflected in HTML report and stored individually per service for all supported clients
- History is tracked for test runs with as minimum of 10 minutes intervals (this limitation is made to unify the behaviour between clients because the Playwright spawns new workers if API test fails and this is causing the reset of the stats)
- Support for Postman collections coverage calculation agains openAPI specification with cli command or inlline script
- To maintain the history of the test coverage - do not delete appropriate service json files from the output directory
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "api-coverage-tracker",
3
-
"version": "1.6.1",
3
+
"version": "2.0.0",
4
4
"description": "A universal library for tracking API coverage against OpenAPI/Swagger specifications from URL or local file. Supports Axis, Fetch, Playwright and manual registry of the responses",
## Important changes between 1.0.4 and 1.1.0 versions:
49
+
## Important changes between 2.0.0 and 1.6.1 versions:
50
50
51
-
- Methods `saveHistory` and `generateReport` do not need any parameters anymore.
52
-
- Paths to reports files shold be provided in the config.json file - see the below example.
53
-
- History of the coverage changes is now reflected in HTML report for Axios and Fetch clients
51
+
- Methods `saveHistory` is removed and no more needed.
52
+
- config.json file obligatory fields are updated. Now only the base path to reports files should be provided in the config.json file - see the below example.
53
+
- History of the coverage changes is now reflected in HTML report and stored individually per service for all supported clients
54
+
- History is tracked for test runs with as minimum of 10 minutes intervals (this limitation is made to unify the behaviour between clients because the Playwright spawns new workers if API test fails and this is causing the reset of the stats)
55
+
- Support for Postman collections coverage calculation agains openAPI specification with cli command or inlline script
56
+
- To maintain the history of the test coverage - do not delete appropriate service json files from the output directory
0 commit comments