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 @@
v1.96.0
v1.96.1
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>1.96.0</version>
<version>1.96.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:1.96.0"
implementation "ai.reveng:sdk:1.96.1"
}
```

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 = '1.96.0'
version = '1.96.1'



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

coordinates("ai.reveng", "sdk", "1.96.0")
coordinates("ai.reveng", "sdk", "1.96.1")

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 := "1.96.0",
version := "1.96.1",
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** | **Integer** | The base address of the binary | |
|**baseAddress** | **Long** | 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** | **Integer** | Base address of the binary | |
|**baseAddress** | **Long** | 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
4 changes: 2 additions & 2 deletions docs/FunctionBoundary.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**mangledName** | **String** | | |
|**startAddress** | **Integer** | | |
|**endAddress** | **Integer** | | |
|**startAddress** | **Long** | | |
|**endAddress** | **Long** | | |



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** | **Integer** | The starting address of the execution | |
|**baseAddress** | **Long** | 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>1.96.0</version>
<version>1.96.1</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 @@ -140,7 +140,7 @@ protected void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/1.96.0/java");
setUserAgent("OpenAPI-Generator/1.96.1/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 = "1.96.0";
public static final String VERSION = "1.96.1";

private static final AtomicReference<ApiClient> defaultApiClient = new AtomicReference<>();
private static volatile Supplier<ApiClient> apiClientFactory = ApiClient::new;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/ai/reveng/model/AnalysisRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public class AnalysisRecord {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Integer baseAddress;
private Long baseAddress;

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


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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class CalleesCallerFunctionsResponse {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Integer baseAddress;
private Long baseAddress;

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

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

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

Expand Down
16 changes: 8 additions & 8 deletions src/main/java/ai/reveng/model/FunctionBoundary.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ public class FunctionBoundary {
public static final String SERIALIZED_NAME_START_ADDRESS = "start_address";
@SerializedName(SERIALIZED_NAME_START_ADDRESS)
@javax.annotation.Nonnull
private Integer startAddress;
private Long startAddress;

public static final String SERIALIZED_NAME_END_ADDRESS = "end_address";
@SerializedName(SERIALIZED_NAME_END_ADDRESS)
@javax.annotation.Nonnull
private Integer endAddress;
private Long endAddress;

public FunctionBoundary() {
}
Expand All @@ -88,7 +88,7 @@ public void setMangledName(@javax.annotation.Nonnull String mangledName) {
}


public FunctionBoundary startAddress(@javax.annotation.Nonnull Integer startAddress) {
public FunctionBoundary startAddress(@javax.annotation.Nonnull Long startAddress) {
this.startAddress = startAddress;
return this;
}
Expand All @@ -98,16 +98,16 @@ public FunctionBoundary startAddress(@javax.annotation.Nonnull Integer startAddr
* @return startAddress
*/
@javax.annotation.Nonnull
public Integer getStartAddress() {
public Long getStartAddress() {
return startAddress;
}

public void setStartAddress(@javax.annotation.Nonnull Integer startAddress) {
public void setStartAddress(@javax.annotation.Nonnull Long startAddress) {
this.startAddress = startAddress;
}


public FunctionBoundary endAddress(@javax.annotation.Nonnull Integer endAddress) {
public FunctionBoundary endAddress(@javax.annotation.Nonnull Long endAddress) {
this.endAddress = endAddress;
return this;
}
Expand All @@ -117,11 +117,11 @@ public FunctionBoundary endAddress(@javax.annotation.Nonnull Integer endAddress)
* @return endAddress
*/
@javax.annotation.Nonnull
public Integer getEndAddress() {
public Long getEndAddress() {
return endAddress;
}

public void setEndAddress(@javax.annotation.Nonnull Integer endAddress) {
public void setEndAddress(@javax.annotation.Nonnull Long endAddress) {
this.endAddress = endAddress;
}

Expand Down
8 changes: 4 additions & 4 deletions src/main/java/ai/reveng/model/Symbols.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class Symbols {
public static final String SERIALIZED_NAME_BASE_ADDRESS = "base_address";
@SerializedName(SERIALIZED_NAME_BASE_ADDRESS)
@javax.annotation.Nonnull
private Integer baseAddress;
private Long baseAddress;

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

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

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

Expand Down