Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.37.2
v2.37.4
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>ai.reveng</groupId>
<artifactId>sdk</artifactId>
<version>2.37.2</version>
<version>2.37.4</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:2.37.2"
implementation "ai.reveng:sdk:2.37.4"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'ai.reveng'
version = '2.37.2'
version = '2.37.4'



Expand Down Expand Up @@ -171,7 +171,7 @@ mavenPublishing {
publishToMavenCentral(true)
signAllPublications()

coordinates("ai.reveng", "sdk", "2.37.2")
coordinates("ai.reveng", "sdk", "2.37.4")

pom {
name = "sdk"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "ai.reveng",
name := "sdk",
version := "2.37.2",
version := "2.37.4",
scalaVersion := "2.11.12",
scalacOptions ++= Seq("-feature"),
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion docs/AnalysisRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
|**username** | **String** | The username of the analysis owner | |
|**dynamicExecutionStatus** | **AppApiRestV2AnalysesEnumsDynamicExecutionStatus** | | [optional] |
|**dynamicExecutionTaskId** | **Integer** | | [optional] |
|**baseAddress** | **Long** | The base address of the binary | |
|**baseAddress** | **BigInteger** | The base address of the binary | |



2 changes: 1 addition & 1 deletion docs/CalleesCallerFunctionsResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**baseAddress** | **Long** | Base address of the binary | |
|**baseAddress** | **BigInteger** | Base address of the binary | |
|**callees** | [**List&lt;CalleeFunctionInfo&gt;**](CalleeFunctionInfo.md) | List of functions called by the target function | |
|**callers** | [**List&lt;CallerFunctionInfo&gt;**](CallerFunctionInfo.md) | List of functions that call the target function | |

Expand Down
2 changes: 1 addition & 1 deletion docs/Symbols.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**baseAddress** | **Long** | The starting address of the execution | |
|**baseAddress** | **BigInteger** | The starting address of the execution | |
|**functionBoundaries** | [**List&lt;FunctionBoundary&gt;**](FunctionBoundary.md) | List of user defined function boundaries | [optional] |


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>sdk</artifactId>
<packaging>jar</packaging>
<name>sdk</name>
<version>2.37.2</version>
<version>2.37.4</version>
<url>https://github.com/RevEngAI/sdk-java</url>
<description>Java SDK for the RevEng.AI API</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/2.37.2/java");
setUserAgent("OpenAPI-Generator/2.37.4/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "2.37.2";
public static final String VERSION = "2.37.4";

private static final AtomicReference<ApiClient> defaultApiClient = new AtomicReference<>();
private static volatile Supplier<ApiClient> apiClientFactory = ApiClient::new;
Expand Down
9 changes: 5 additions & 4 deletions src/main/java/ai/reveng/model/AnalysisRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.time.OffsetDateTime;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
Expand Down Expand Up @@ -132,7 +133,7 @@ public class AnalysisRecord {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Long baseAddress;
private BigInteger baseAddress;

public AnalysisRecord() {
}
Expand Down Expand Up @@ -422,7 +423,7 @@ public void setDynamicExecutionTaskId(@javax.annotation.Nullable Integer dynamic
}


public AnalysisRecord baseAddress(@javax.annotation.Nonnull Long baseAddress) {
public AnalysisRecord baseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
return this;
}
Expand All @@ -432,11 +433,11 @@ public AnalysisRecord baseAddress(@javax.annotation.Nonnull Long baseAddress) {
* @return baseAddress
*/
@javax.annotation.Nonnull
public Long getBaseAddress() {
public BigInteger getBaseAddress() {
return baseAddress;
}

public void setBaseAddress(@javax.annotation.Nonnull Long baseAddress) {
public void setBaseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down Expand Up @@ -58,7 +59,7 @@ public class CalleesCallerFunctionsResponse {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Long baseAddress;
private BigInteger baseAddress;

public static final String SERIALIZED_NAME_CALLEES = "callees";
@SerializedName(SERIALIZED_NAME_CALLEES)
Expand All @@ -73,7 +74,7 @@ public class CalleesCallerFunctionsResponse {
public CalleesCallerFunctionsResponse() {
}

public CalleesCallerFunctionsResponse baseAddress(@javax.annotation.Nonnull Long baseAddress) {
public CalleesCallerFunctionsResponse baseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
return this;
}
Expand All @@ -83,11 +84,11 @@ public CalleesCallerFunctionsResponse baseAddress(@javax.annotation.Nonnull Long
* @return baseAddress
*/
@javax.annotation.Nonnull
public Long getBaseAddress() {
public BigInteger getBaseAddress() {
return baseAddress;
}

public void setBaseAddress(@javax.annotation.Nonnull Long baseAddress) {
public void setBaseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
}

Expand Down
9 changes: 5 additions & 4 deletions src/main/java/ai/reveng/model/Symbols.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down Expand Up @@ -57,7 +58,7 @@ public class Symbols {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Long baseAddress;
private BigInteger baseAddress;

public static final String SERIALIZED_NAME_FUNCTION_BOUNDARIES = "function_boundaries";
@SerializedName(SERIALIZED_NAME_FUNCTION_BOUNDARIES)
Expand All @@ -67,7 +68,7 @@ public class Symbols {
public Symbols() {
}

public Symbols baseAddress(@javax.annotation.Nonnull Long baseAddress) {
public Symbols baseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
return this;
}
Expand All @@ -77,11 +78,11 @@ public Symbols baseAddress(@javax.annotation.Nonnull Long baseAddress) {
* @return baseAddress
*/
@javax.annotation.Nonnull
public Long getBaseAddress() {
public BigInteger getBaseAddress() {
return baseAddress;
}

public void setBaseAddress(@javax.annotation.Nonnull Long baseAddress) {
public void setBaseAddress(@javax.annotation.Nonnull BigInteger baseAddress) {
this.baseAddress = baseAddress;
}

Expand Down
1 change: 1 addition & 0 deletions src/test/java/ai/reveng/model/AnalysisRecordTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.time.OffsetDateTime;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down
1 change: 1 addition & 0 deletions src/test/java/ai/reveng/model/SymbolsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down