Skip to content

Commit b7bbc21

Browse files
committed
prepare release 5.0.2
1 parent e334420 commit b7bbc21

File tree

3 files changed

+94
-24
lines changed

3 files changed

+94
-24
lines changed

CHANGELOG.md

Lines changed: 37 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,50 @@
1+
## [5.0.2](https://github.com/extent-framework/extentreports-java/compare/v5.0.1...v5.0.2)
2+
3+
#### Issues Resolved
4+
- [#103](/issues/103) Add missing lightbox for base64 screenshots
5+
- [#220](/issues/220) Add missing tags for child tests
6+
- [#222](/issues/222) Removed TestNG from main scope and added under `test`
7+
- [#226](/issues/226) Perform null check for SystemEnvInfo elements
8+
- [#227](/issues/227) Change SKIP priority to be higher than WARN
9+
10+
#### New Features
11+
- [#223](/issues/223) Added attribute (tag) details for Klov
12+
- [#224](/issues/224) All tags will be propagated down the test tree. An attribute assigned to a parent test
13+
would automatically be assigned to a child test also.
14+
- [#225](/issues/225) All attribute views (Author, Device, Tag) now use the same template
15+
- [#231](/issues/231) Exceptions from log will be assigned to its owning test
16+
117
## [5.0.1](https://github.com/extent-framework/extentreports-java/compare/v5.0.0...v5.0.1)
218

319
#### Issues Resolved
4-
- [#103](../issues/103) Clicking base64 images does not fire lightbox
20+
- [#103](/issues/103) Clicking base64 images does not fire lightbox
521
- KlovReporter uses the ExtentReports 5.0.0-SNAPSHOT dependency, revert to RELEASE
6-
- [#191](../issues/191) Navigation from Attributes/Exceptions views to test for BDD
22+
- [#191](/issues/191) Navigation from Attributes/Exceptions views to test for BDD
723

824
## [5.0.0](https://github.com/extent-framework/extentreports-java/compare/v4.1.6...v5.0.0)
925

1026
#### New Features
11-
- [#47](../issues/47) Anchors for each test
12-
- [#150](../issues/150) Unused status from charts will not be displayed
13-
- [#152](../issues/152) Spark: Author view
14-
- [#153](../issues/153) Spark: Device view
15-
- [#157](../issues/157) Spark: Add TestRunnerLogs view
16-
- [#168](../issues/168) Spark: Navigation from attributes pages (tags, exception) to Tests View
17-
- [#173](../issues/173) Spark: Allow configuration to select view order, Dashboard view as primary
18-
- [#176](../issues/176) Apply Status filters to report
19-
- [#177](../issues/177) Minified templates (> 10% reduction in file size)
20-
- [#184](../issues/184) Reporter::loadExternalConfiguration with json file
21-
- [#188](../issues/188) Display upto 4 `pre` blocks on a single row
22-
- [#191](../issues/191) Navigation from Tags/Exception pages to nested steps
23-
- [#213](../issues/213) Toggle theme from URI component using '#theme='
24-
- [#215](../issues/215) A test removed from the report will also be removed from MongoDB (Klov)
27+
- [#47](/issues/47) Anchors for each test
28+
- [#150](/issues/150) Unused status from charts will not be displayed
29+
- [#152](/issues/152) Spark: Author view
30+
- [#153](/issues/153) Spark: Device view
31+
- [#157](/issues/157) Spark: Add TestRunnerLogs view
32+
- [#168](/issues/168) Spark: Navigation from attributes pages (tags, exception) to Tests View
33+
- [#173](/issues/173) Spark: Allow configuration to select view order, Dashboard view as primary
34+
- [#176](/issues/176) Apply Status filters to report
35+
- [#177](/issues/177) Minified templates (> 10% reduction in file size)
36+
- [#184](/issues/184) Reporter::loadExternalConfiguration with json file
37+
- [#188](/issues/188) Display upto 4 `pre` blocks on a single row
38+
- [#191](/issues/191) Navigation from Tags/Exception pages to nested steps
39+
- [#213](/issues/213) Toggle theme from URI component using '#theme='
40+
- [#215](/issues/215) A test removed from the report will also be removed from MongoDB (Klov)
2541

2642
#### Issues Resolved
27-
- [#131](../issues/131) Merging two html extent Reports works but Category view gets overwritten
28-
- [#161](../issues/161) Merging ExtentSpark 4.1.5 Reports causing the existing base64 image removed
29-
- [#169](../issues/169) Fix SparkReporter shortcuts
30-
- [#197](../issues/197) MarkupHelper::codeBlock has extra indentation on the first line
31-
- [#208](../issues/208) Show title text for screencaptures
43+
- [#131](/issues/131) Merging two html extent Reports works but Category view gets overwritten
44+
- [#161](/issues/161) Merging ExtentSpark 4.1.5 Reports causing the existing base64 image removed
45+
- [#169](/issues/169) Fix SparkReporter shortcuts
46+
- [#197](/issues/197) MarkupHelper::codeBlock has extra indentation on the first line
47+
- [#208](/issues/208) Show title text for screencaptures
3248

3349
## [4.1.7](https://github.com/extent-framework/extentreports-java/compare/v4.1.6...v4.1.7)
3450
#### Fixes

pom.xml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.aventstack</groupId>
77
<artifactId>extentreports</artifactId>
8-
<version>5.0.2-SNAPSHOT</version>
8+
<version>5.0.2</version>
99

1010
<name>ExtentReports</name>
1111
<url>www.extentreports.com</url>
@@ -104,6 +104,20 @@
104104
<artifactId>maven-resources-plugin</artifactId>
105105
<version>3.1.0</version>
106106
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-gpg-plugin</artifactId>
110+
<version>1.6</version>
111+
<executions>
112+
<execution>
113+
<id>sign-artifacts</id>
114+
<phase>verify</phase>
115+
<goals>
116+
<goal>sign</goal>
117+
</goals>
118+
</execution>
119+
</executions>
120+
</plugin>
107121
<plugin>
108122
<groupId>org.jacoco</groupId>
109123
<artifactId>jacoco-maven-plugin</artifactId>
@@ -128,6 +142,19 @@
128142

129143
<profiles>
130144
<profile>
145+
<id>release-sign-artifacts</id>
146+
<activation>
147+
<property>
148+
<name>performRelease</name>
149+
<value>true</value>
150+
</property>
151+
</activation>
152+
<properties>
153+
<gpg.keyname>41414BBD</gpg.keyname>
154+
<!-- GPG Key ID to use for signing -->
155+
<release.username>anshooarora</release.username>
156+
<!-- username for our svn repository -->
157+
</properties>
131158
<build>
132159
<plugins>
133160
<plugin>

reporters/klov/pom.xml

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aventstack</groupId>
77
<artifactId>klov-reporter</artifactId>
8-
<version>5.0.2-SNAPSHOT</version>
8+
<version>5.0.2</version>
99
<name>klov-reporter</name>
1010
<url>www.extentreports.com</url>
1111
<description>Reporter for Klov Server</description>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>com.aventstack</groupId>
4545
<artifactId>extentreports</artifactId>
46-
<version>5.0.2-SNAPSHOT</version>
46+
<version>5.0.2</version>
4747
</dependency>
4848
<dependency>
4949
<groupId>org.mongodb</groupId>
@@ -101,11 +101,38 @@
101101
<artifactId>maven-resources-plugin</artifactId>
102102
<version>3.1.0</version>
103103
</plugin>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-gpg-plugin</artifactId>
107+
<version>1.6</version>
108+
<executions>
109+
<execution>
110+
<id>sign-artifacts</id>
111+
<phase>verify</phase>
112+
<goals>
113+
<goal>sign</goal>
114+
</goals>
115+
</execution>
116+
</executions>
117+
</plugin>
104118
</plugins>
105119
</build>
106120

107121
<profiles>
108122
<profile>
123+
<id>release-sign-artifacts</id>
124+
<activation>
125+
<property>
126+
<name>performRelease</name>
127+
<value>true</value>
128+
</property>
129+
</activation>
130+
<properties>
131+
<gpg.keyname>41414BBD</gpg.keyname>
132+
<!-- GPG Key ID to use for signing -->
133+
<release.username>anshooarora</release.username>
134+
<!-- username for our svn repository -->
135+
</properties>
109136
<build>
110137
<plugins>
111138
<plugin>

0 commit comments

Comments
 (0)