Skip to content

Commit ea347ab

Browse files
🔒 Security update
1 parent f94b2b7 commit ea347ab

File tree

2 files changed

+38
-16
lines changed

2 files changed

+38
-16
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# CHANGELOG
22

3-
## Version 2.0.0
3+
4+
## Version 1.8.1
5+
6+
### Date: 27-Jan-2022
7+
8+
- Entry uid bug fixed #45
9+
- Static logger implemented #43
10+
- Scope based dependencies
11+
12+
------------------------------------------------
13+
14+
## Version 1.8.0
415

516
### Date: 01-Nov-2021
617

@@ -11,6 +22,8 @@
1122
- Removed deprecated code/Non-working code marked deprecated
1223
- Few breaking changes added.
1324

25+
------------------------------------------------
26+
1427
## Version 1.7.0
1528

1629
### Date: 12-JUL-2021

pom.xml

+24-15
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
43
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54

65
<modelVersion>4.0.0</modelVersion>
76
<groupId>com.contentstack.sdk</groupId>
87
<artifactId>java</artifactId>
9-
<version>1.8.0-SNAPSHOT</version>
8+
<version>${sdk.version.release}</version>
109
<packaging>jar</packaging>
1110
<name>contentstack-java</name>
1211
<description>Java SDK for Contentstack Content Delivery API</description>
@@ -15,24 +14,24 @@
1514

1615
<properties>
1716
<!--update sdk version before every release push for SNAPSHOT/RELEASE-->
18-
<sdk.version.snapshot>v1.8.0</sdk.version.snapshot>
19-
<sdk.version.release>v1.8.0</sdk.version.release>
17+
<sdk.version.snapshot>1.8.1-SNAPSHOT</sdk.version.snapshot>
18+
<sdk.version.release>1.8.1</sdk.version.release>
2019
<maven.compiler.target>1.8</maven.compiler.target>
2120
<maven.compiler.source>1.8</maven.compiler.source>
2221
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2322
<surefire-report-plugin.version>2.22.0</surefire-report-plugin.version>
2423
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
2524
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
2625
<dotenv-source.version>5.2.2</dotenv-source.version>
27-
<rxjava-source.version>3.1.2</rxjava-source.version>
26+
<rxjava-source.version>3.1.3</rxjava-source.version>
2827
<retrofit-source.version>2.9.0</retrofit-source.version>
2928
<converter-gson-source.version>2.9.0</converter-gson-source.version>
30-
<loggin.version>4.9.2</loggin.version>
29+
<loggin.version>4.9.3</loggin.version>
3130
<jococo-plugin.version>0.8.5</jococo-plugin.version>
3231
<lombok-source.version>1.18.22</lombok-source.version>
33-
<junit-jupiter.version>5.8.1</junit-jupiter.version>
32+
<junit-jupiter.version>5.8.2</junit-jupiter.version>
3433
<junit-jupiter-engine.version>5.8.0-M1</junit-jupiter-engine.version>
35-
<junit-vintage-engine.version>5.8.1</junit-vintage-engine.version>
34+
<junit-vintage-engine.version>5.8.2</junit-vintage-engine.version>
3635
<gson.version>2.8.8</gson.version>
3736
<json-simple-version>1.1.1</json-simple-version>
3837
<maven-site-plugin.version>3.3</maven-site-plugin.version>
@@ -57,7 +56,7 @@
5756
<url>https://github.com/contentstack/contentstack-java</url>
5857
<connection>scm:git:git://github.com/contentstack/contentstack-java.git</connection>
5958
<developerConnection>scm:git:ssh://github.com:contentstack/contentstack-java.git</developerConnection>
60-
<tag>HEAD</tag>
59+
<tag>java-1.8.0</tag>
6160
</scm>
6261

6362
<issueManagement>
@@ -106,45 +105,53 @@
106105

107106

108107
<dependencies>
109-
<!-- <dependency>-->
110-
<!-- <groupId>com.contentstack.sdk</groupId>-->
111-
<!-- <artifactId>utils</artifactId>-->
112-
<!-- <version>${contentstack-utils-version}</version>-->
113-
<!-- </dependency>-->
108+
<dependency>
109+
<groupId>com.contentstack.sdk</groupId>
110+
<artifactId>utils</artifactId>
111+
<version>${contentstack-utils-version}</version>
112+
<scope>compile</scope>
113+
</dependency>
114114
<dependency>
115115
<groupId>org.json</groupId>
116116
<artifactId>json</artifactId>
117117
<version>${json-version}</version>
118+
<scope>compile</scope>
118119
</dependency>
119120
<dependency>
120121
<groupId>io.github.cdimascio</groupId>
121122
<artifactId>java-dotenv</artifactId>
122123
<version>${dotenv-source.version}</version>
124+
<scope>runtime</scope>
123125
</dependency>
124126
<dependency>
125127
<groupId>io.reactivex.rxjava3</groupId>
126128
<artifactId>rxjava</artifactId>
127129
<version>${rxjava-source.version}</version>
130+
<scope>compile</scope>
128131
</dependency>
129132
<dependency>
130133
<groupId>com.squareup.retrofit2</groupId>
131134
<artifactId>retrofit</artifactId>
132135
<version>${retrofit-source.version}</version>
136+
<scope>compile</scope>
133137
</dependency>
134138
<dependency>
135139
<groupId>com.squareup.retrofit2</groupId>
136140
<artifactId>converter-gson</artifactId>
137141
<version>${converter-gson-source.version}</version>
142+
<scope>compile</scope>
138143
</dependency>
139144
<dependency>
140145
<groupId>com.squareup.okhttp3</groupId>
141146
<artifactId>logging-interceptor</artifactId>
142147
<version>${loggin.version}</version>
148+
<scope>compile</scope>
143149
</dependency>
144150
<dependency>
145151
<groupId>org.projectlombok</groupId>
146152
<artifactId>lombok</artifactId>
147153
<version>${lombok-source.version}</version>
154+
<scope>compile</scope>
148155
</dependency>
149156
<!--JUnit 5 requires Java 8, you should make sure you have it ready in your environment.-->
150157
<dependency>
@@ -157,12 +164,14 @@
157164
<groupId>org.junit.vintage</groupId>
158165
<artifactId>junit-vintage-engine</artifactId>
159166
<version>${junit-vintage-engine.version}</version>
167+
<scope>test</scope>
160168
</dependency>
161169

162170
<dependency>
163171
<groupId>com.googlecode.json-simple</groupId>
164172
<artifactId>json-simple</artifactId>
165173
<version>${json-simple-version}</version>
174+
<scope>compile</scope>
166175
</dependency>
167176
</dependencies>
168177

0 commit comments

Comments
 (0)