Skip to content

Commit 75ce7a0

Browse files
Merge pull request #31 from contentstack/development
Development
2 parents a026412 + 17d1df1 commit 75ce7a0

File tree

3 files changed

+21
-26
lines changed

3 files changed

+21
-26
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# CHANGELOG
22

3+
## Version 1.6.0
4+
###### Date: 05-APR-2021
5+
- **Query** : query.includeEmbeddedItems() method support added
6+
- **Entry** : entry.includeEmbeddedItems() method support added
7+
8+
------------------------------------------------
9+
310
## Version 1.5.7
411
###### Date: 20-Feb-2021
512
Document updated
613

7-
#23 Fixed Issue: Querying content with `null` field
8-
• Query: query content by specifying fields as null
14+
------------------------------------------------
915

1016
## Version 1.5.6
1117
###### Date: 27-Jan-2021
@@ -14,6 +20,8 @@ Document updated
1420
New Features:
1521
• None
1622

23+
------------------------------------------------
24+
1725
## Version 1.5.5
1826
###### Date: 22-Jan-2021
1927
Bug fix: Error contains information like

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2012 - 2020 Contentstack
3+
Copyright (c) 2012 - 2021 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 10 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.contentstack.sdk</groupId>
88
<artifactId>java</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.6.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111
<name>contentstack-java</name>
1212
<description>Java SDK for Contentstack Content Delivery API, Contentstack is a headless CMS with an API-first approach
@@ -82,17 +82,26 @@
8282

8383

8484
<dependencies>
85+
86+
<dependency>
87+
<groupId>com.contentstack.sdk</groupId>
88+
<artifactId>utils</artifactId>
89+
<version>1.0.0</version>
90+
</dependency>
91+
8592
<dependency>
8693
<groupId>io.github.cdimascio</groupId>
8794
<artifactId>java-dotenv</artifactId>
8895
<version>5.2.2</version>
8996
</dependency>
97+
9098
<dependency>
9199
<groupId>junit</groupId>
92100
<artifactId>junit</artifactId>
93101
<version>4.13.1</version>
94102
<scope>test</scope>
95103
</dependency>
104+
96105
<dependency>
97106
<groupId>org.json</groupId>
98107
<artifactId>json</artifactId>
@@ -116,7 +125,6 @@
116125

117126
<build>
118127
<plugins>
119-
120128
<!--
121129
# Run tests and generate .xml reports
122130
mvn test
@@ -126,7 +134,6 @@
126134
# time-consuming stuff
127135
mvn surefire-report:report site -DgenerateReports=false
128136
-->
129-
130137
<plugin>
131138
<groupId>org.apache.maven.plugins</groupId>
132139
<artifactId>maven-surefire-report-plugin</artifactId>
@@ -140,11 +147,6 @@
140147
</execution>
141148
</executions>
142149
</plugin>
143-
144-
<!--
145-
The Source Plugin creates a jar archive of the source files of
146-
the current project. The jar file is, by default, created in the project's target directory.
147-
-->
148150
<plugin>
149151
<groupId>org.apache.maven.plugins</groupId>
150152
<artifactId>maven-source-plugin</artifactId>
@@ -158,8 +160,6 @@
158160
</execution>
159161
</executions>
160162
</plugin>
161-
162-
<!--The Javadoc Plugin uses the Javadoc tool to generate javadocs for the specified project-->
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-javadoc-plugin</artifactId>
@@ -184,11 +184,6 @@
184184
</execution>
185185
</executions>
186186
</plugin>
187-
188-
<!--
189-
The Site Plugin is used to generate a site for the project.
190-
The generated site also includes the project's reports that were configured in the POM.
191-
-->
192187
<plugin>
193188
<groupId>org.apache.maven.plugins</groupId>
194189
<artifactId>maven-site-plugin</artifactId>
@@ -214,7 +209,6 @@
214209
</execution>
215210
</executions>
216211
</plugin>
217-
218212
<!--
219213
Sometimes when you may need to compile a certain project to a different
220214
version than what you are currently using. The javac can accept such command
@@ -232,10 +226,7 @@
232226
<showWarnings>true</showWarnings>
233227
<showDeprecation>true</showDeprecation>
234228
</configuration>
235-
236229
</plugin>
237-
238-
<!--Provides support to access staging functionality in a remote Nexus Professional server.-->
239230
<plugin>
240231
<groupId>org.sonatype.plugins</groupId>
241232
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -247,7 +238,6 @@
247238
<autoReleaseAfterClose>true</autoReleaseAfterClose>
248239
</configuration>
249240
</plugin>
250-
251241
<!--
252242
This plugin is used to release a project with Maven, saving a lot of repetitive, manual work.
253243
Releasing a project is made in two steps: prepare and perform.
@@ -263,8 +253,6 @@
263253
<goals>deploy</goals>
264254
</configuration>
265255
</plugin>
266-
267-
268256
<plugin>
269257
<groupId>org.jacoco</groupId>
270258
<artifactId>jacoco-maven-plugin</artifactId>
@@ -281,7 +269,6 @@
281269
<goals>
282270
<goal>report</goal>
283271
</goals>
284-
285272
</execution>
286273
</executions>
287274
</plugin>

0 commit comments

Comments
 (0)