Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Commit 6f158e6

Browse files
committed
Update Beyonder to 7.16
1 parent 8c5af54 commit 6f158e6

File tree

2 files changed

+33
-27
lines changed

2 files changed

+33
-27
lines changed

README.md

Lines changed: 32 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,24 @@ and automatically create index settings and templates based on what is found in
2222
* For 1.x elasticsearch versions, look at [es-1.4 branch](https://github.com/dadoonet/spring-elasticsearch/tree/es-1.4).
2323
* For 0.x elasticsearch versions, look at [0.x branch](https://github.com/dadoonet/spring-elasticsearch/tree/0.x).
2424

25-
| spring-elasticsearch | elasticsearch | Spring | Release date |
26-
|:-----------------------:|:-------------:|:------------:|:------------:|
27-
| 7.1-SNAPSHOT | 7.0 - 7.x | 5.3.8 | |
28-
| 7.0 | 7.0 - 7.x | 5.3.8 | 2021-06-21 |
29-
| 6.7 | 6.7 - 6.x | 5.1.3 | 2019-04-13 |
30-
| 6.2 | 6.0 - 6.x | 5.1.3 | 2019-01-08 |
31-
| 6.1 | 6.0 - 6.x | 5.0.7 | 2018-07-22 |
32-
| 6.0 | 6.0 - 6.x | 5.0.3 | 2018-02-08 |
33-
| 5.0 | 5.0 - 5.x | 4.3.10 | 2018-02-04 |
34-
| 2.2.0 | 2.0 - 2.4 | 4.2.3 | 2017-03-09 |
35-
| 2.1.0 | 2.0, 2.1 | 4.2.3 | 2015-11-25 |
36-
| 2.0.0 | 2.0 | 4.1.4 | 2015-10-25 |
37-
| 1.4.2 | < 2.0 | 4.1.4 | 2015-03-03 |
38-
| 1.4.1 | 1.4 | 4.1.4 | 2015-02-28 |
39-
| 1.4.0 | 1.4 | 4.1.4 | 2015-01-03 |
40-
| 1.3.0 | 1.3 | 4.0.6 | 2014-09-01 |
41-
| 1.0.0 | 1.0 | 3.2.2 | 2014-02-14 |
25+
| spring-elasticsearch | elasticsearch | Spring | Release date |
26+
|:--------------------:|:-------------:|:------------:|:------------:|
27+
| 7.2-SNAPSHOT | 7.0 - 7.x | 5.3.15 | |
28+
| 7.1 | 7.0 - 7.x | 5.3.15 | 2022-01-13 |
29+
| 7.0 | 7.0 - 7.x | 5.3.8 | 2021-06-21 |
30+
| 6.7 | 6.7 - 6.x | 5.1.3 | 2019-04-13 |
31+
| 6.2 | 6.0 - 6.x | 5.1.3 | 2019-01-08 |
32+
| 6.1 | 6.0 - 6.x | 5.0.7 | 2018-07-22 |
33+
| 6.0 | 6.0 - 6.x | 5.0.3 | 2018-02-08 |
34+
| 5.0 | 5.0 - 5.x | 4.3.10 | 2018-02-04 |
35+
| 2.2.0 | 2.0 - 2.4 | 4.2.3 | 2017-03-09 |
36+
| 2.1.0 | 2.0, 2.1 | 4.2.3 | 2015-11-25 |
37+
| 2.0.0 | 2.0 | 4.1.4 | 2015-10-25 |
38+
| 1.4.2 | < 2.0 | 4.1.4 | 2015-03-03 |
39+
| 1.4.1 | 1.4 | 4.1.4 | 2015-02-28 |
40+
| 1.4.0 | 1.4 | 4.1.4 | 2015-01-03 |
41+
| 1.3.0 | 1.3 | 4.0.6 | 2014-09-01 |
42+
| 1.0.0 | 1.0 | 3.2.2 | 2014-02-14 |
4243

4344
## Build Status
4445

@@ -49,7 +50,12 @@ and automatically create index settings and templates based on what is found in
4950

5051
### Changes in 7.x
5152

52-
* Add support for index lifecycles. You can add your index lifecycles policies in the `_index_lifecycles` dir.
53+
* Nothing yet ;)
54+
55+
### Changes in 7.1
56+
57+
* Update to Beyonder 7.16 which brings in support for index lifecycles.
58+
You can add your index lifecycles policies in the `_index_lifecycles` dir.
5359

5460
### Major (breaking) changes in 7.0
5561

@@ -75,7 +81,7 @@ Import spring-elasticsearch in you project `pom.xml` file:
7581
<dependency>
7682
<groupId>fr.pilato.spring</groupId>
7783
<artifactId>spring-elasticsearch</artifactId>
78-
<version>7.0</version>
84+
<version>7.1</version>
7985
</dependency>
8086
```
8187

@@ -85,7 +91,7 @@ If you want to set a specific version of the High Level Rest client, add it to y
8591
<dependency>
8692
<groupId>org.elasticsearch.client</groupId>
8793
<artifactId>elasticsearch-rest-high-level-client</artifactId>
88-
<version>7.15.1</version>
94+
<version>7.16.2</version>
8995
</dependency>
9096
```
9197

@@ -95,7 +101,7 @@ If you want to try out the most recent SNAPSHOT version [deployed on Sonatype](h
95101
<dependency>
96102
<groupId>fr.pilato.spring</groupId>
97103
<artifactId>spring-elasticsearch</artifactId>
98-
<version>7.1-SNAPSHOT</version>
104+
<version>7.2-SNAPSHOT</version>
99105
</dependency>
100106
```
101107

@@ -106,7 +112,7 @@ Don't forget to add if needed the following repository in your `pom.xml`:
106112
<repository>
107113
<id>oss-snapshots</id>
108114
<name>Sonatype OSS Snapshots</name>
109-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
115+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
110116
<releases><enabled>false</enabled></releases>
111117
<snapshots><enabled>true</enabled></snapshots>
112118
</repository>
@@ -139,17 +145,17 @@ If you want to do so, add to your `pom.xml`:
139145
<dependency>
140146
<groupId>org.apache.logging.log4j</groupId>
141147
<artifactId>log4j-1.2-api</artifactId>
142-
<version>2.14.1</version>
148+
<version>2.17.1</version>
143149
</dependency>
144150
<dependency>
145151
<groupId>org.apache.logging.log4j</groupId>
146152
<artifactId>log4j-slf4j-impl</artifactId>
147-
<version>2.14.1</version>
153+
<version>2.17.1</version>
148154
</dependency>
149155
<dependency>
150156
<groupId>org.apache.logging.log4j</groupId>
151157
<artifactId>log4j-core</artifactId>
152-
<version>2.14.1</version>
158+
<version>2.17.1</version>
153159
</dependency>
154160
```
155161

@@ -174,7 +180,7 @@ Let's say you want to use Spring Java Annotations, here is a typical application
174180
<dependency>
175181
<groupId>fr.pilato.spring</groupId>
176182
<artifactId>spring-elasticsearch</artifactId>
177-
<version>7.0</version>
183+
<version>7.1</version>
178184
</dependency>
179185
</dependencies>
180186
</project>

pom.xml

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

2626
<spring.version>5.3.15</spring.version>
2727
<elasticsearch.version>7.16.2</elasticsearch.version>
28-
<beyonder.version>7.15</beyonder.version>
28+
<beyonder.version>7.16</beyonder.version>
2929
<slf4j.version>1.7.32</slf4j.version>
3030
<log4j.version>2.17.1</log4j.version>
3131
<commons.io.version>2.11.0</commons.io.version>

0 commit comments

Comments
 (0)