Skip to content

Releases: getgauge-contrib/json-report

JSON Report v0.4.0

01 Feb 10:04
d73fa05
Compare
Choose a tag to compare
  • #29 - remove gauge_messages submodule and use go pkg
  • #28 - Bump google.golang.org/grpc from 1.25.1 to 1.53.0

JSON Report v0.3.7

26 Oct 08:33
f344d08
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.3.6...v0.3.7

JSON Report v0.3.6

23 Jun 11:02
Compare
Choose a tag to compare

Enhancements

  • ProtoScenario.preHookMessages not visible in Json-Report (#18 ) - thanks @henriheimann

JSON Report v0.3.5

02 Sep 10:21
Compare
Choose a tag to compare

Features

None

Bug Fixes

  • show failure screenshot file #19

Thanks @dibyaranjan-pg

JSON Report v0.3.3

13 Feb 07:48
Compare
Choose a tag to compare

Enhancements

Bug Fixes

  • #10 - 0.3.1 doesn't ship the right binary for linux

json-report v0.3.2

14 Oct 10:17
Compare
Choose a tag to compare

Bug Fixes

  • fixes spec hook failure conversion

Miscellaneous

  • #7 Execution status should be in the past tense
  • removed vendor
  • updated proto messages

Thanks, @osandadeshan for contributing to this release!

JSON Report v0.3.1

23 Apr 18:20
faeedee
Compare
Choose a tag to compare

Enhancements

Changelog Description

The field executionStatus in various levels of JSON report, like suite, scenario will now have status in past tense. i.e pass -> passed, fail -> failed, skip -> skipped.

Gauge JSON report v0.3.0

06 Mar 17:50
Compare
Choose a tag to compare

Enhancements

  • Include step parameters as a new field in json under step/concept. #5
    The new field Parameters in step includes all the various types of parameters with their values, including static parameters, dynamic, table and special params.
    Example:
"parameters": [
  {
	"parameterType": "dynamic",
	"name": "word",
	"value": "gauge",
	"table": null
  },
  {
	"parameterType": "static",
	"name": "",
	"value": "3",
	"table": null
  }],

Updated complete JSON Schema can be found here: https://apoorvam.github.io/json-report/

Note: Table field in Step is now deprecated since its included in Parameters and will be removed in next release.

Gauge JSON Report v0.2.2

23 May 17:30
ad698b9
Compare
Choose a tag to compare

Enhancements

  • Include passedScenariosCount, failedScenariosCount, skippedScenariosCount in suite result - #3

JSON Report v0.2.1

22 Apr 09:11
Compare
Choose a tag to compare

Bug fixes

  • Context step results being over-written by teardown results in scenario #1