Skip to content

Commit 5b44c36

Browse files
authored
Merge pull request #84 from contentstack/enh/DX-739-taxonomy-permission-testcase
Enh/dx 739 taxonomy permission testcase
2 parents 9ae00fa + 2f9037e commit 5b44c36

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+329
-282
lines changed

changelog.md

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

3+
## v1.4.3
4+
5+
### July 08, 2024
6+
7+
- SRE issues fixed
8+
39
## v1.4.2
410

511
### May 27, 2024

pom.xml

Lines changed: 5 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>cms</artifactId>
88
<packaging>jar</packaging>
99
<name>contentstack-management-java</name>
10-
<version>1.4.2</version>
10+
<version>1.4.3</version>
1111
<description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
1212
API-first approach
1313
</description>
@@ -54,7 +54,7 @@
5454
<organizationUrl>https://www.contentstack.com/</organizationUrl>
5555
</developer>
5656
<developer>
57-
<name>***REMOVED***</name>
57+
<name>ishaileshmishra</name>
5858
<email>[email protected]</email>
5959
<organization>contentstack</organization>
6060
<organizationUrl>https://www.contentstack.com/</organizationUrl>
@@ -199,29 +199,6 @@
199199
<artifactId>jsoup</artifactId>
200200
<version>1.17.2</version>
201201
</dependency>
202-
<dependency>
203-
<groupId>org.slf4j</groupId>
204-
<artifactId>slf4j-simple</artifactId>
205-
<version>1.7.36</version>
206-
</dependency>
207-
<dependency>
208-
<groupId>com.slack.api</groupId>
209-
<artifactId>slack-api-client</artifactId>
210-
<version>1.38.0</version>
211-
</dependency>
212-
<dependency>
213-
<groupId>com.slack.api</groupId>
214-
<artifactId>slack-app-backend</artifactId>
215-
<version>1.38.0</version>
216-
</dependency>
217-
<dependency>
218-
<groupId>org.testng</groupId>
219-
<artifactId>testng</artifactId>
220-
<version>7.8.0</version>
221-
<scope>test</scope>
222-
</dependency>
223-
224-
225202
</dependencies>
226203

227204

@@ -234,12 +211,9 @@
234211
<artifactId>maven-surefire-plugin</artifactId>
235212
<version>3.0.0-M5</version>
236213
<configuration>
237-
<!-- <includes>
214+
<includes>
238215
<include>**/*TestSuite.java</include>
239-
</includes> -->
240-
<suiteXmlFiles>
241-
<suiteXmlFile>${basedir}/testng.xml</suiteXmlFile>
242-
</suiteXmlFiles>
216+
</includes>
243217
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
244218
<testFailureIgnore>true</testFailureIgnore>
245219
</configuration>
@@ -279,7 +253,7 @@
279253
</plugin>
280254

281255
<!-- -overview
282-
"***REMOVED***tentstack/java/contentstack-management-java/src/main/overview.html"
256+
"/Users/shaileshmishra/Documents/Workspace/contentstack/java/contentstack-management-java/src/main/overview.html"
283257
-bottom "<b>Copyright © 2012-2022 Contentstack </b><sup>TM</sup>"-->
284258
<plugin>
285259
<groupId>org.apache.maven.plugins</groupId>

src/main/java/com/contentstack/cms/Contentstack.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class Contentstack {
7979
* <br>
8080
*
8181
* @return User
82-
* @author ***REMOVED***
82+
* @author ishaileshmishra
8383
* @see <a href=
8484
* "https://www.contentstack.com/docs/developers/apis/content-management-api/#users">User
8585
* </a>
@@ -129,7 +129,7 @@ public User user() {
129129
* @param password the password of the user
130130
* @return LoginDetails
131131
* @throws IOException the IOException
132-
* @author ***REMOVED***
132+
* @author ishaileshmishra
133133
* @see <a href=
134134
* "https://www.contentstack.com/docs/developers/apis/content-management-api/#users">User
135135
* </a>
@@ -182,7 +182,7 @@ public Response<LoginDetails> login(String emailId, String password) throws IOEx
182182
* @return LoginDetails
183183
* @throws IOException the io exception
184184
* @throws IOException the IOException
185-
* @author ***REMOVED***
185+
* @author ishaileshmishra
186186
* @see <a
187187
* href=
188188
* "https://www.contentstack.com/docs/developers/apis/content-management-api/#log-in-to-your-account">Login

src/main/java/com/contentstack/cms/core/AuthInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* API implementation, you'll want to pass the auth token as the value for the
2020
* Authorization header.
2121
*
22-
* @author ***REMOVED***
22+
* @author ishaileshmishra
2323
* @since v0.1.0
2424
*/
2525
public class AuthInterceptor implements Interceptor {

src/main/java/com/contentstack/cms/core/BadArgumentException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* an illegal or unsuitable argument
66
* passed to a method.
77
*
8-
* @author ***REMOVED***
8+
* @author ishaileshmishra
99
* @version v0.1.0
1010
* @since 2022-10-20
1111
*/

src/main/java/com/contentstack/cms/core/CMALogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* The Contentstack Logger
99
*
10-
* @author ***REMOVED***
10+
* @author ishaileshmishra
1111
* @version v0.1.0
1212
* @since 2022-10-20
1313
*/

src/main/java/com/contentstack/cms/core/CMARuntimeException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* CMARuntimeException that extends Exception class
55
*
6-
* @author ***REMOVED***
6+
* @author ishaileshmishra
77
* @version v0.1.0
88
* @since 2022-10-20
99
*/

src/main/java/com/contentstack/cms/core/ResponseResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* The Contentstack ResponseResult class that accepts different types of Models
1313
*
14-
* @author ***REMOVED***
14+
* @author ishaileshmishra
1515
* @version v0.1.0
1616
* @since 2022-10-20
1717
*/

src/main/java/com/contentstack/cms/core/RetryCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* The Contentstack RetryCallback
1111
*
12-
* @author ***REMOVED***
12+
* @author ishaileshmishra
1313
* @version v0.1.0
1414
* @since 2022-10-20
1515
*/

src/main/java/com/contentstack/cms/core/Util.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* The utility class that contains utility common functions
1111
*
12-
* @author ***REMOVED***
12+
* @author ishaileshmishra
1313
* @version v0.1.0
1414
* @since 2022-10-20
1515
*/

0 commit comments

Comments
 (0)