Skip to content

Commit ed0c876

Browse files
authored
Merge pull request #217 from Nizernizer/main
Change Version to 1.3.0
2 parents 3815f66 + c0ac715 commit ed0c876

File tree

6 files changed

+26
-12
lines changed

6 files changed

+26
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@ Changes by Version
22
==================
33
Release Notes.
44

5-
1.2.0
5+
1.3.0
66
------------------
77
## What's Changed
8-
* close #198 by @Nizernizer in https://github.com/HXSecurity/DongTai-agent-java/pull/199
9-
* Update AttachLauncher.java fix https://github.com/HXSecurity/DongTai/issues/396 by @caoshutao in https://github.com/HXSecurity/DongTai-agent-java/pull/201
10-
* Enhancement: fix dubbo vul check by @exexute in https://github.com/HXSecurity/DongTai-agent-java/pull/200
11-
12-
## New Contributors
13-
* @caoshutao made their first contribution in https://github.com/HXSecurity/DongTai-agent-java/pull/201
8+
* close #206. by @Nizernizer in https://github.com/HXSecurity/DongTai-agent-java/pull/207
9+
* fix-outofrange by @wayswei in https://github.com/HXSecurity/DongTai-agent-java/pull/205
10+
* Release 1.3.0 by @exexute in https://github.com/HXSecurity/DongTai-agent-java/pull/211
11+
* upload data to iast.io by @exexute in https://github.com/HXSecurity/DongTai-agent-java/pull/215
12+
* Add log by @Nizernizer in https://github.com/HXSecurity/DongTai-agent-java/pull/216
1413

1514
**Contributors**
1615

17-
@Nizernizer, @caoshutao and @exexute
16+
@Nizernizer, @wayswei and @exexute
1817

1918

2019
------------------

changes/CHANGELOG-1.3.0.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Changes by Version
2+
==================
3+
Release Notes.
4+
5+
1.3.0
6+
------------------
7+
## What's Changed
8+
* close #206. by @Nizernizer in https://github.com/HXSecurity/DongTai-agent-java/pull/207
9+
* fix-outofrange by @wayswei in https://github.com/HXSecurity/DongTai-agent-java/pull/205
10+
* Release 1.3.0 by @exexute in https://github.com/HXSecurity/DongTai-agent-java/pull/211
11+
* upload data to iast.io by @exexute in https://github.com/HXSecurity/DongTai-agent-java/pull/215
12+
* Add log by @Nizernizer in https://github.com/HXSecurity/DongTai-agent-java/pull/216
13+
14+
**Contributors**
15+
@Nizernizer, @wayswei and @exexute

dongtai-jakarta-api/src/main/java/cn/huoxian/iast/api/ResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static Object cloneResponse(Object response) {
2626

2727
public ResponseWrapper(HttpServletResponse response) {
2828
super(response);
29-
response.addHeader("DongTai", "v1.2.0");
29+
response.addHeader("DongTai", "v1.3.0");
3030
}
3131

3232
@Override

dongtai-servlet-api/src/main/java/cn/huoxian/iast/api/ResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static Object cloneResponse(Object response) {
2424

2525
public ResponseWrapper(HttpServletResponse response) {
2626
super(response);
27-
response.addHeader("DongTai", "v1.2.0");
27+
response.addHeader("DongTai", "v1.3.0");
2828
}
2929

3030
@Override

dongtai-spring-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@
7575
</plugin>
7676
</plugins>
7777
</build>
78-
</project>
78+
</project>

iast-agent/src/main/java/com/secnium/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.2.0";
7+
public static final String AGENT_VERSION_VALUE = "v1.3.0";
88
public static final String LANGUAGE = "JAVA";
99

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

0 commit comments

Comments
 (0)