# Expected release window of 6.5.0/7.0.0

**URL:** https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080
**Category:** Elasticsearch
**Created:** [September 19, 2018, 8:28am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080 "2018-09-19T08:28:24Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![PJDerichs](https://avatars.discourse-cdn.com/v4/letter/p/0ea827/32.png) [@PJDerichs](https://discuss.elastic.co/u/PJDerichs)
#### Post date: [September 19, 2018, 8:28am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/1 "2018-09-19T08:28:24Z")

</div>

Hello!

I am looking forward to the implementation of DeleteByQuery in the next version of the High Level Rest Client. I was wondering about a few things regarding this feature:

- When can we expect a release with this feature? I can imagine a release of 6.5.0 is nearer than of 7.0.0, but that's just a guess.

- I tried to connect to the maven repository with the snapshots to be able to try it out in my IDE, but it seems like the repository is not available (I tried to connect to [https://snapshots.elastic.co/maven/](https://snapshots.elastic.co/maven/) with maven, but it couldn't connect). Is there a possibility to check out a snapshot with the function implemented?

Thanks in advance!

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [September 19, 2018, 8:43am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/2 "2018-09-19T08:43:10Z")

</div>

> When can we expect a release with this feature?

We never announce release dates.

> I tried to connect to the maven repository with the snapshots to be able to try it out in my IDE, but it seems like the repository is not available (I tried to connect to [https://snapshots.elastic.co/maven/](https://snapshots.elastic.co/maven/) with maven, but it couldn't connect).

What did you do exactly? Adding this URL as a repository should work. Could you share your `pom.xml`?

Note that you might have to add Lucene as well: [Maven Repository | Java REST Client [7.17] | Elastic](https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/java-rest-high-getting-started-maven.html#java-rest-high-getting-started-maven-lucene)

---

<div class="post-metadata">

### Author: ![PJDerichs](https://avatars.discourse-cdn.com/v4/letter/p/0ea827/32.png) [@PJDerichs](https://discuss.elastic.co/u/PJDerichs)
#### Post date: [September 24, 2018, 7:43am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/3 "2018-09-24T07:43:20Z")

</div>

Thanks for responding to me!

I am trying to access the Maven Snapshot repository with the following code:

```
<repositories>
    <repository>
        <id>elasticsreachSnapshots</id>
        <name>Elasticsearch Snapshot repo</name>
        <url>https://snapshots.elastic.co/maven</url>
    </repository>
</repositories>

    <dependency>
        <groupId>org.elasticsearch.client</groupId>
        <artifactId>elasticsearch-rest-high-level-client</artifactId>
        <version>6.5.0-SNAPSHOT</version>
    </dependency>
```

---

<div class="post-metadata">

### Author: ![dadoonet](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/dadoonet/32/137187_2.png) [@dadoonet](https://discuss.elastic.co/u/dadoonet)
#### Post date: [September 24, 2018, 8:03am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/4 "2018-09-24T08:03:42Z")

</div>

This worked well for me:

```auto
    <repositories>
        <repository>
            <id>elasticsreachSnapshots</id>
            <name>Elasticsearch Snapshot repo</name>
            <url>https://snapshots.elastic.co/maven</url>
        </repository>
        <repository>
            <id>elastic-lucene-snapshots</id>
            <name>Elastic Lucene Snapshots</name>
            <url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/b5bf70b7e3</url>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>false</enabled></snapshots>
        </repository>
    </repositories>

```

---

<div class="post-metadata">

### Author: ![PJDerichs](https://avatars.discourse-cdn.com/v4/letter/p/0ea827/32.png) [@PJDerichs](https://discuss.elastic.co/u/PJDerichs)
#### Post date: [September 24, 2018, 8:45am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/5 "2018-09-24T08:45:13Z")

</div>

> [@dadoonet](#):
>
> \<repositories\> \<repository\> \<id\>elasticsreachSnapshots\</id\> \<name\>Elasticsearch Snapshot repo\</name\> \<url\>[https://snapshots.elastic.co/maven&lt;/url&gt](https://snapshots.elastic.co/maven&lt;/url&gt); \</repository\> \<repository\> \<id\>elastic-lucene-snapshots\</id\> \<name\>Elastic Lucene Snapshots\</name\> \<url\>[http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/b5bf70b7e3&lt;/url&gt](http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/b5bf70b7e3&lt;/url&gt); \<releases\>\<enabled\>true\</enabled\>\</releases\> \<snapshots\>\<enabled\>false\</enabled\>\</snapshots\> \</repository\> \</repositories\>

That solved all the dependency issues I was having, thanks again!

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [October 22, 2018, 8:45am UTC](https://discuss.elastic.co/t/expected-release-window-of-6-5-0-7-0-0/149080/6 "2018-10-22T08:45:25Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
