You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2021/12/28 16:06:35 UTC

[incubator-ponymail-foal] branch master updated: ES 7.14 introduces strict server version checks

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new aec347d  ES 7.14 introduces strict server version checks
aec347d is described below

commit aec347deb09154959d278a4a918f3779699434a6
Author: Sebb <se...@apache.org>
AuthorDate: Tue Dec 28 16:06:26 2021 +0000

    ES 7.14 introduces strict server version checks
    
    Whatever happened to compatibilty?
---
 server/requirements.txt | 3 ++-
 tools/requirements.txt  | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/server/requirements.txt b/server/requirements.txt
index 96bac69..a9ad6f3 100644
--- a/server/requirements.txt
+++ b/server/requirements.txt
@@ -3,7 +3,8 @@ PyYAML~=5.4.1                    # WTFPL
 types-PyYAML                     # AL2.0
 multipart~=0.2.1                 # MIT
 elasticsearch-dsl>=7.0.0,<8.0.0  # AL2.0
-elasticsearch[async]>=7.13.1,<8.0.0 # AL2.0 (includes aiohttp)
+# N.B. ES 7.14 introduces strict server version compatibility checks
+elasticsearch[async]>=7.13.1,<7.14.0 # AL2.0 (includes aiohttp)
 certifi~=2020.6.20               # MPL2.0
 netaddr~=0.8.0                   # BSD, MIT
 formatflowed~=2.0.0              # Python Software Foundation
diff --git a/tools/requirements.txt b/tools/requirements.txt
index df0276e..7a70f22 100644
--- a/tools/requirements.txt
+++ b/tools/requirements.txt
@@ -1,7 +1,8 @@
 # Items in this file must have a licence compatible with AL 2.0
 PyYAML~=5.4.1                     # WTFPL
 # elasticsearch-dsl>=7.0.0,<8.0.0   # AL2.0 - not used by tools currently
-elasticsearch[async]>=7.13.1,<8.0.0  # AL2.0
+# N.B. ES 7.14 introduces strict server version compatibility checks
+elasticsearch[async]>=7.13.1,<7.14.0  # AL2.0
 certifi~=2020.6.20                # MPL 2.0
 netaddr~=0.8.0                    # BSD, MIT
 formatflowed~=2.0.0               # Python Software Foundation