Skip to content

Commit

Permalink
Merge pull request #335 from lostsnow/release/v1.7.4
Browse files Browse the repository at this point in the history
bump version to 1.7.4
  • Loading branch information
lostsnow authored Jul 15, 2022
2 parents 8417960 + 4e4fa37 commit bd56d3f
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 37 deletions.
4 changes: 2 additions & 2 deletions dongtai-agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.dongtai.iast</groupId>
<artifactId>iast</artifactId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<artifactId>dongtai-agent</artifactId>
<name>dongtai-agent</name>
Expand Down Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-log</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
<dependency>
<groupId>io.dongtai.iast</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author [email protected]
*/
public class Constant {
public static final String AGENT_VERSION_VALUE = "v1.7.2";
public static final String AGENT_VERSION_VALUE = "v1.7.4";
public static final String LANGUAGE = "JAVA";

public final static String API_AGENT_REGISTER = "/api/v1/agent/register";
Expand Down
4 changes: 2 additions & 2 deletions dongtai-agent/src/main/resources/iast.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
iast.name=dongtai-Enterprise 1.7.2
iast.name=dongtai-Enterprise 1.7.4
iast.response.name=dongtai
iast.response.value=1.7.2
iast.response.value=1.7.4
iast.server.url=https://iast.io/openapi
iast.server.token=39133a96f5735c253edd908078846c1051824edc
iast.allhook.enable=false
Expand Down
4 changes: 2 additions & 2 deletions dongtai-agent/src/main/resources/iast.properties.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# iast.properties file example
iast.name=dongtai-Enterprise 1.7.2
iast.name=dongtai-Enterprise 1.7.4
iast.response.name=dongtai
iast.response.value=1.7.2
iast.response.value=1.7.4
iast.server.url=https://iast.io/openapi
iast.server.token=39133a96f5735c253edd908078846c1051824edc
iast.allhook.enable=false
Expand Down
6 changes: 3 additions & 3 deletions dongtai-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -39,12 +39,12 @@
<dependency>
<groupId>cn.huoxian.iast</groupId>
<artifactId>dongtai-spring-api</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-log</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.*;

/**
* @author owefsad
Expand All @@ -23,7 +21,7 @@ public class JakartaResponseWrapper extends HttpServletResponseWrapper implement

public JakartaResponseWrapper(HttpServletResponse response) {
super(response);
response.addHeader("DongTai", "v1.7.2");
response.addHeader("DongTai", "v1.7.4");
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,8 @@
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletResponseWrapper;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.io.*;
import java.util.*;

public class ServletResponseWrapper extends HttpServletResponseWrapper implements DongTaiResponse {

Expand All @@ -21,7 +17,7 @@ public class ServletResponseWrapper extends HttpServletResponseWrapper implement

public ServletResponseWrapper(HttpServletResponse response) {
super(response);
response.addHeader("DongTai", "v1.7.2");
response.addHeader("DongTai", "v1.7.4");
}

private String getLine() {
Expand Down
2 changes: 1 addition & 1 deletion dongtai-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions dongtai-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.dongtai.iast</groupId>
<artifactId>iast</artifactId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<artifactId>dongtai-core</artifactId>
<name>dongtai-core</name>
Expand Down Expand Up @@ -159,7 +159,7 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-spy</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -224,7 +224,7 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-log</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
<dependency>
<groupId>io.dongtai.iast</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author [email protected]
*/
public class Constants {
public static final String AGENT_VERSION_VALUE = "v1.7.2";
public static final String AGENT_VERSION_VALUE = "v1.7.4";
public final static String API_REPORT_UPLOAD = "/api/v1/report/upload";
public final static String SERVER_ADDRESS = "/api/v1/agent/update";
public final static String API_HOOK_PROFILE = "/api/v1/profiles";
Expand Down
2 changes: 1 addition & 1 deletion dongtai-log/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dongtai-plugins/dongtai-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>dongtai-plugins</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions dongtai-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-core</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions dongtai-spring-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>cn.huoxian.iast</groupId>
<artifactId>dongtai-spring-api</artifactId>
<version>1.7.2</version>
<version>1.7.4</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand All @@ -28,7 +28,7 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-log</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion dongtai-spy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>iast</artifactId>
<groupId>io.dongtai.iast</groupId>
<version>1.7.2</version>
<version>1.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<sun.tools.systempath>${java.home}/../lib/tools.jar</sun.tools.systempath>
<nanoxml.version>2.2.3</nanoxml.version>

<dongtai.version>1.7.4</dongtai.version>
<!-- java 1.6 最高可用版本-->
<logback-classic.version>1.2.1</logback-classic.version>
<commons-lang3.version>3.4</commons-lang3.version>
Expand All @@ -41,7 +42,7 @@

<groupId>io.dongtai.iast</groupId>
<artifactId>iast</artifactId>
<version>1.7.2</version>
<version>1.7.4</version>
<packaging>pom</packaging>

<name>dongtai-agent-java</name>
Expand Down Expand Up @@ -118,12 +119,12 @@
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-spy</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
</dependency>
<dependency>
<groupId>io.dongtai.iast</groupId>
<artifactId>dongtai-core</artifactId>
<version>1.7.2</version>
<version>${dongtai.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bd56d3f

Please sign in to comment.