You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2021/06/05 17:49:54 UTC

[couchdb] branch we-do-not-support-erlang-19 created (now 6cfbe1a)

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

vatamane pushed a change to branch we-do-not-support-erlang-19
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


      at 6cfbe1a  Erlang 19 is not supported for 3.x

This branch includes the following new commits:

     new 6cfbe1a  Erlang 19 is not supported for 3.x

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[couchdb] 01/01: Erlang 19 is not supported for 3.x

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch we-do-not-support-erlang-19
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 6cfbe1aef27e1285c5d54b3ddabf6c9042269056
Author: Nick Vatamaniuc <va...@apache.org>
AuthorDate: Sat Jun 5 13:46:29 2021 -0400

    Erlang 19 is not supported for 3.x
    
    It doesn't really work as we have functionality relying on 20.0+
    features. One particular instance is in [1].
    
    Issue: https://github.com/apache/couchdb/issues/3571
    
    [1] https://github.com/apache/couchdb/blob/ce596c65d9d7f0bc5d9937bcaf6253b343015690/src/couch/src/couch_emsort.erl#L363-L366
---
 rebar.config.script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rebar.config.script b/rebar.config.script
index 54c7df4..17785ef 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -196,7 +196,7 @@ ErlOpts = case os:getenv("ERL_OPTS") of
 end.
 
 AddConfig = [
-    {require_otp_vsn, "19|20|21|22|23|24"},
+    {require_otp_vsn, "20|21|22|23|24"},
     {deps_dir, "src"},
     {deps, lists:map(MakeDep, DepDescs ++ OptionalDeps)},
     {sub_dirs, SubDirs},