Skip to content

Commit 6afbe6c

Browse files
authored
Merge pull request #354 from lostsnow/release/v1.7.7
bump version to 1.7.7
2 parents a6e8155 + 9d62298 commit 6afbe6c

File tree

16 files changed

+20
-20
lines changed

16 files changed

+20
-20
lines changed

dongtai-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.dongtai.iast</groupId>
99
<artifactId>iast</artifactId>
10-
<version>1.7.6</version>
10+
<version>1.7.7</version>
1111
</parent>
1212
<artifactId>dongtai-agent</artifactId>
1313
<name>dongtai-agent</name>

dongtai-agent/src/main/java/io/dongtai/iast/agent/Constant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
*/
66
public class Constant {
7-
public static final String AGENT_VERSION_VALUE = "v1.7.6";
7+
public static final String AGENT_VERSION_VALUE = "v1.7.7";
88
public static final String LANGUAGE = "JAVA";
99

1010
public final static String API_AGENT_REGISTER = "/api/v1/agent/register";

dongtai-agent/src/main/resources/iast.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
iast.name=dongtai-Enterprise 1.7.6
1+
iast.name=dongtai-Enterprise 1.7.7
22
iast.response.name=dongtai
3-
iast.response.value=1.7.6
3+
iast.response.value=1.7.7
44
iast.server.url=https://iast.io/openapi
55
iast.server.token=39133a96f5735c253edd908078846c1051824edc
66
iast.allhook.enable=false

dongtai-agent/src/main/resources/iast.properties.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# iast.properties file example
2-
iast.name=dongtai-Enterprise 1.7.6
2+
iast.name=dongtai-Enterprise 1.7.7
33
iast.response.name=dongtai
4-
iast.response.value=1.7.6
4+
iast.response.value=1.7.7
55
iast.server.url=https://iast.io/openapi
66
iast.server.token=39133a96f5735c253edd908078846c1051824edc
77
iast.allhook.enable=false

dongtai-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>iast</artifactId>
77
<groupId>io.dongtai.iast</groupId>
8-
<version>1.7.6</version>
8+
<version>1.7.7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

dongtai-api/src/main/java/io/dongtai/api/jakarta/JakartaResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class JakartaResponseWrapper extends HttpServletResponseWrapper implement
2121

2222
public JakartaResponseWrapper(HttpServletResponse response) {
2323
super(response);
24-
response.addHeader("DongTai", "v1.7.6");
24+
response.addHeader("DongTai", "v1.7.7");
2525
}
2626

2727
@Override

dongtai-api/src/main/java/io/dongtai/api/servlet2/ServletResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class ServletResponseWrapper extends HttpServletResponseWrapper implement
1717

1818
public ServletResponseWrapper(HttpServletResponse response) {
1919
super(response);
20-
response.addHeader("DongTai", "v1.7.6");
20+
response.addHeader("DongTai", "v1.7.7");
2121
}
2222

2323
private String getLine() {

dongtai-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>iast</artifactId>
77
<groupId>io.dongtai.iast</groupId>
8-
<version>1.7.6</version>
8+
<version>1.7.7</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

dongtai-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.dongtai.iast</groupId>
99
<artifactId>iast</artifactId>
10-
<version>1.7.6</version>
10+
<version>1.7.7</version>
1111
</parent>
1212
<artifactId>dongtai-core</artifactId>
1313
<name>dongtai-core</name>

dongtai-core/src/main/java/io/dongtai/iast/core/utils/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
*/
66
public class Constants {
7-
public static final String AGENT_VERSION_VALUE = "v1.7.6";
7+
public static final String AGENT_VERSION_VALUE = "v1.7.7";
88
public final static String API_REPORT_UPLOAD = "/api/v1/report/upload";
99
public final static String SERVER_ADDRESS = "/api/v1/agent/update";
1010
public final static String API_HOOK_PROFILE = "/api/v1/profiles";

0 commit comments

Comments
 (0)