Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkamel committed Jul 4, 2024
1 parent 3ffd4bc commit 832eb09
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@

# CHANGELOG

## v3.8.0.
## v3.9.0

* Allow to configure the elasticsearch version no matter which elasticsearch
version is actually in use. The version information is needed to support
version dependent features. Please note that manually configuring the version
is usually not need as the version by default is determined by sending one
request to elasticsearch.

```ruby
SearchFlip::Config[:version] = { number: "8.1.1" }
SearchFlip::Config[:version] = { number: "2.13", distribution: "opensearch" }
```

## v3.8.0

* Support Opensearch 1.x and 2.x

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,11 @@ Available config options are:
* `auto_refresh` tells SearchFlip to automatically refresh an index after
import, index, delete, etc operations. This is e.g. useful for testing, etc.
Defaults to false.
* `version` Enforce a specific Elasticsearch version and distribution no matter
which Elasticsearch version is actually installed. Can also be used to prevent
sending requests to determine the version:
* `version` allows to configure the elasticsearch version no matter which
elasticsearch version is actually in use. The version information is needed to
support version dependent features. Please note that manually configuring the
version is usually not need as the version by default is determined by sending
one request to elasticsearch.

```ruby
SearchFlip::Config[:version] = { number: "8.1.1" }
Expand Down

0 comments on commit 832eb09

Please sign in to comment.