Skip to content

Commit e1b9502

Browse files
Merge pull request #34 from contentstack/utility_gql
Utility gql
2 parents 75ce7a0 + 80fa7a9 commit e1b9502

File tree

5 files changed

+13
-62
lines changed

5 files changed

+13
-62
lines changed

.github/workflows/maven-publish.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.talismanrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
threshold: medium

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## Version 1.7.0
4+
###### Date: 12-JUL-2021
5+
- Added support for utils function gql.jsonToHtml()
6+
- Bug #32 issue resolved removed e.printStackTrace()
7+
- Instead stacktrace used logger.error()
8+
9+
------------------------------------------------
10+
311
## Version 1.6.0
412
###### Date: 05-APR-2021
513
- **Query** : query.includeEmbeddedItems() method support added

pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.6.0-SNAPSHOT</version>
9+
<version>1.7.0</version>
1010
<packaging>jar</packaging>
1111
<name>contentstack-java</name>
12-
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach
12+
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first
13+
approach
1314
</description>
1415
<url>https://github.com/contentstack/contentstack-java/</url>
1516

@@ -86,34 +87,29 @@
8687
<dependency>
8788
<groupId>com.contentstack.sdk</groupId>
8889
<artifactId>utils</artifactId>
89-
<version>1.0.0</version>
90+
<version>1.1.0</version>
9091
</dependency>
91-
9292
<dependency>
9393
<groupId>io.github.cdimascio</groupId>
9494
<artifactId>java-dotenv</artifactId>
9595
<version>5.2.2</version>
9696
</dependency>
97-
9897
<dependency>
9998
<groupId>junit</groupId>
10099
<artifactId>junit</artifactId>
101100
<version>4.13.1</version>
102101
<scope>test</scope>
103102
</dependency>
104-
105103
<dependency>
106104
<groupId>org.json</groupId>
107105
<artifactId>json</artifactId>
108106
<version>20190722</version>
109107
</dependency>
110-
111108
<dependency>
112109
<groupId>org.apache.logging.log4j</groupId>
113110
<artifactId>log4j-api</artifactId>
114111
<version>2.5</version>
115112
</dependency>
116-
117113
<dependency>
118114
<groupId>org.apache.logging.log4j</groupId>
119115
<artifactId>log4j-core</artifactId>

0 commit comments

Comments
 (0)