-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Date: Apr-12-2019 Change: Added support of below methods in SDK - getContentTypes() in Stack class - fetch in ContentType class Below two support from the Config class has been removed permanently - public void setSSL(boolean isSSL)setSSL() - public boolean isSSL()
- Loading branch information
1 parent
e2f8059
commit 52e49a1
Showing
3 changed files
with
71 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,53 @@ | ||
## Changelog | ||
------------------------------------------------ | ||
|
||
## CHANGELOG | ||
|
||
## Version 1.3.0 | ||
### Date: Apr-12-2019 | ||
Change: Added support of below methods in SDK | ||
|
||
``` | ||
getContentTypes() in Stack class | ||
fetch in ContentType class | ||
``` | ||
|
||
Below two support from the Config class has been removed permanently | ||
- public void setSSL(boolean isSSL)setSSL() | ||
- public boolean isSSL() | ||
|
||
------------------------------------------------ | ||
|
||
## Version 1.2.1 | ||
### Date: 14-Mar-2019 | ||
#### v1.2.1 Bug Fixes and code clean up: | ||
------------------------------------------------ | ||
### Date: 20-Feb-2019 | ||
#### Maven integration | ||
#### Folder structure modified. | ||
------------------------------------------------ | ||
### Date: 15-Dec-2017 | ||
#### v1.2.0 New Features: | ||
- Entry- added method ‘addParam’ | ||
- Query- added method 'addParam' | ||
- Asset- added method 'addParam' | ||
------------------------------------------------ | ||
### Date: 10-Nov-2017 | ||
#### v1.1.0 New Features: | ||
- Stack- added method 'ImageTransform' | ||
- Query- added method 'includeContentType' | ||
- QueryResult- added method 'contentType' | ||
------------------------------------------------ | ||
#### API deprecation: | ||
- Query | ||
- Deprecated method 'includeSchema' | ||
- Note: Bug Fixes and code clean up: | ||
|
||
-------------------------------- | ||
|
||
Date: 20-Feb-2019 | ||
Maven integration | ||
Folder structure modified. | ||
|
||
------------------------------------------------ | ||
## Version 1.2.0 | ||
### Date: 15-Dec-2017 | ||
- New Features: | ||
``` | ||
Entry- added method ‘addParam’ | ||
Query- added method 'addParam' | ||
Asset- added method 'addParam' | ||
``` | ||
------------------------------------------------ | ||
|
||
## Version 1.1.0 | ||
### Date: 10-Nov-2017 | ||
- New Features: | ||
``` | ||
Stack- added method 'ImageTransform' | ||
Query- added method 'includeContentType' | ||
QueryResult- added method 'contentType' | ||
``` | ||
------------------------------------------------ | ||
|
||
#### API deprecation: | ||
- Query | ||
- Deprecated method 'includeSchema' | ||
------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
<groupId>com.contentstack.sdk</groupId> | ||
<artifactId>java</artifactId> | ||
<version>1.2.1-SNAPSHOT</version> | ||
<version>1.3.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>contentstack-java</name> | ||
|
@@ -21,20 +21,29 @@ | |
</licenses> | ||
|
||
<developers> | ||
|
||
<developer> | ||
<name>Shailesh Mishra</name> | ||
<email>[email protected]</email> | ||
<organization>Contentstack</organization> | ||
<organizationUrl>https://www.contentstack.com/</organizationUrl> | ||
</developer> | ||
|
||
<developer> | ||
<name>Contentstacksdk</name> | ||
<email>[email protected]</email> | ||
<organization>Contentstack</organization> | ||
<organizationUrl>https://www.contentstack.com/</organizationUrl> | ||
</developer> | ||
|
||
</developers> | ||
|
||
|
||
<scm> | ||
<url>https://github.com/contentstack/contentstack-java/tree/master</url> | ||
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection> | ||
<tag>v@{project.version}</tag> | ||
<tag>v1.2.1</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
|
@@ -50,14 +59,17 @@ | |
|
||
|
||
<distributionManagement> | ||
|
||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
|
||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
|
||
</distributionManagement> | ||
|
||
|
||
|
@@ -67,6 +79,7 @@ | |
|
||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
|
@@ -84,6 +97,7 @@ | |
|
||
<build> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
|
@@ -97,6 +111,7 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
|
@@ -159,6 +174,7 @@ | |
<goals>deploy</goals> | ||
</configuration> | ||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters