Skip to content

Commit e9caf90

Browse files
committed
Generated release version
1 parent 7bece1e commit e9caf90

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+74
-91
lines changed

README.md

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# Manticore Java client
22

3-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-java/tree/8.0.0
43

54
Manticore Search Client
65

7-
- API version: 9.1.0
6+
- API version: 8.1.0
87

9-
- Build date: 2025-07-31T07:57:08.554806755Z[Etc/UTC]
8+
- Build date: 2025-08-01T15:59:28.052447079Z[Etc/UTC]
109

1110
## Requirements
1211

@@ -16,22 +15,6 @@ Building the API client library requires:
1615
2. Maven/Gradle
1716

1817

19-
## Compatibility Table
20-
21-
| **manticoresearch-java** | **Manticore Search** | **Compatibility** |
22-
| ------------------------------ | ----------------------------------- | ------------------------|
23-
| `dev` | `dev` (latest development version) | ✅ Fully Compatible |
24-
| 8.0.0 or newer | 9.2.14 or newer | ✅ Fully Compatible |
25-
| 6.0.0 to 8.0.0 | 9.2.14 or newer | ⚠️ Partially Compatible |
26-
| 6.0.0 to 8.0.0 | 7.0.0 to 9.2.14 | ✅ Fully Compatible |
27-
| 6.0.0 to 8.0.0 | 2.5.1 to 7.0.0 | ⚠️ Partially Compatible |
28-
| 5.0.0 to 6.0.0 | 6.3.6 to 7.0.0 | ✅ Fully Compatible |
29-
| 5.0.0 to 6.0.0 | 2.5.1 to 6.3.6 | ⚠️ Partially Compatible |
30-
| 3.3.1 to 5.0.0 | 6.2.0 to 6.3.6 | ✅ Fully Compatible |
31-
| 3.3.1 to 5.0.0 | 2.5.1 to 6.2.0 | ⚠️ Partially Compatible |
32-
| 2.0.2 to 3.3.1 | 2.5.1 to 6.2.0 | ✅ Fully Compatible |
33-
34-
3518
## Installation
3619

3720
To install the API client library to your local Maven repository, simply execute:
@@ -56,7 +39,7 @@ Add this dependency to your project's POM:
5639
<dependency>
5740
<groupId>com.manticoresearch</groupId>
5841
<artifactId>manticoresearch</artifactId>
59-
<version>9.1.0</version>
42+
<version>8.1.0</version>
6043
<scope>compile</scope>
6144
</dependency>
6245
```
@@ -72,7 +55,7 @@ Add this dependency to your project's build file:
7255
}
7356
7457
dependencies {
75-
implementation "com.manticoresearch:manticoresearch:9.1.0"
58+
implementation "com.manticoresearch:manticoresearch:8.1.0"
7659
}
7760
```
7861

@@ -86,7 +69,7 @@ mvn clean package
8669

8770
Then manually install the following JARs:
8871

89-
- `target/manticoresearch-9.1.0.jar`
72+
- `target/manticoresearch-8.1.0.jar`
9073
- `target/lib/*.jar`
9174

9275
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'com.diffplug.spotless'
44

55
group = 'com.manticoresearch'
6-
version = '9.1.0'
6+
version = '8.1.0'
77

88
buildscript {
99
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.manticoresearch",
44
name := "manticoresearch",
5-
version := "9.1.0",
5+
version := "8.1.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.manticoresearch</groupId>
5-
<artifactId>manticoresearch-dev</artifactId>
6-
<name>manticoresearch-dev</name>
5+
<artifactId>manticoresearch</artifactId>
6+
<name>manticoresearch</name>
77
<version>8.1.0</version>
88
<url>https://github.com/manticoresoftware/manticoresearch-java</url>
99
<description>Client for Manticore Search</description>

src/main/java/com/manticoresearch/client/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
/**
8484
* <p>ApiClient class.</p>
8585
*/
86-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
86+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
8787
public class ApiClient extends JavaTimeFormatter {
8888
private static final Pattern JSON_MIME_PATTERN = Pattern.compile("(?i)^(application/json|[^;/ \t]+/[^;/ \t]+[+]json)[ \t]*(;.*)?$");
8989

@@ -138,7 +138,7 @@ public ApiClient(Map<String, Authentication> authMap) {
138138
this.dateFormat = new RFC3339DateFormat();
139139

140140
// Set default User-Agent.
141-
setUserAgent("OpenAPI-Generator/9.1.0/java");
141+
setUserAgent("OpenAPI-Generator/8.1.0/java");
142142

143143
// Setup authentications (key: authentication name, value: authentication).
144144
authentications = new HashMap<>();

src/main/java/com/manticoresearch/client/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* API Exception
2121
*/
22-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
22+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
2323
public class ApiException extends Exception {
2424
private static final long serialVersionUID = 1L;
2525

src/main/java/com/manticoresearch/client/Configuration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
package com.manticoresearch.client;
1515

16-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
16+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
1717
public class Configuration {
18-
public static final String VERSION = "9.1.0";
18+
public static final String VERSION = "8.1.0";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

src/main/java/com/manticoresearch/client/JSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import jakarta.ws.rs.core.GenericType;
2929
import jakarta.ws.rs.ext.ContextResolver;
3030

31-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
31+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
3232
public class JSON implements ContextResolver<ObjectMapper> {
3333
private ObjectMapper mapper;
3434

src/main/java/com/manticoresearch/client/JavaTimeFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Class that add parsing/formatting support for Java 8+ {@code OffsetDateTime} class.
2121
* It's generated for java clients when {@code AbstractJavaCodegen#dateLibrary} specified as {@code java8}.
2222
*/
23-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
23+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
2424
public class JavaTimeFormatter {
2525

2626
private DateTimeFormatter offsetDateTimeFormatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME;

src/main/java/com/manticoresearch/client/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.manticoresearch.client;
1515

16-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T07:57:08.554806755Z[Etc/UTC]", comments = "Generator version: 7.14.0")
16+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-01T15:59:28.052447079Z[Etc/UTC]", comments = "Generator version: 7.14.0")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

0 commit comments

Comments
 (0)