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

rnewson pushed a change to branch remove-content-md5-header
in repository https://gitbox.apache.org/repos/asf/couchdb.git


 discard 35c2cec7e remove Content-MD5 header support
     add 3044528d5 Merge pull request #4559 from apache/fix-ken-server-nouveau
     add 2430728f5 Clarify encoding length in performance.rst
     add e659a971c CVE-2023-2626 details doc update
     add 17a99712e Nouveau doc fixes (#4572)
     add f1ab0cabf Add report logging (#4483)
     add 4083f7b1b mention flag and new dependencies
     add bb633a712 Import xxHash
     add bc49cef4b Encapsulate MD5 file checksums bits in couch_file
     add 1a59e5d70 Remove duplicate etag generation function
     add 92c338a3a Add new configure option and restore --dev behavior (#4582)
     add 039da4a8b remove Content-MD5 header support

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (35c2cec7e)
            \
             N -- N -- N   refs/heads/remove-content-md5-header (039da4a8b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 LICENSE                                            |   26 +
 configure                                          |    7 +
 mix.exs                                            |    1 +
 rebar.config.script                                |    1 +
 rel/reltool.config                                 |    2 +
 src/chttpd/src/chttpd.erl                          |    3 +-
 src/couch/src/couch.app.src                        |    1 +
 src/couch/src/couch_bt_engine.erl                  |    3 +-
 src/couch/src/couch_file.erl                       |    5 +-
 src/couch/src/couch_httpd.erl                      |    4 +-
 src/couch/test/eunit/couch_etag_tests.erl          |    4 +-
 src/couch_log/include/couch_log.hrl                |    3 +-
 src/couch_log/priv/stats_descriptions.cfg          |    8 +
 src/couch_log/src/couch_log.erl                    |   14 +-
 src/couch_log/src/couch_log_config.erl             |    3 +
 src/couch_log/src/couch_log_config_dyn.erl         |    1 +
 src/couch_log/src/couch_log_formatter.erl          |   63 +
 src/couch_log/src/couch_log_sup.erl                |    2 +
 src/couch_log/src/couch_log_util.erl               |   13 +-
 src/couch_log/src/couch_log_writer_file.erl        |    2 +-
 src/couch_log/src/couch_log_writer_stderr.erl      |    4 +-
 src/couch_log/src/couch_log_writer_syslog.erl      |   28 +-
 src/couch_log/test/eunit/couch_log_config_test.erl |   18 +
 .../test/eunit/couch_log_formatter_test.erl        |   18 +
 src/couch_log/test/eunit/couch_log_writer_ets.erl  |    7 +-
 .../test/eunit/couch_log_writer_syslog_test.erl    |   40 +
 src/docs/src/cve/2023-26268.rst                    |   44 +-
 src/docs/src/ddocs/nouveau.rst                     |   18 +-
 src/docs/src/install/nouveau.rst                   |   10 +
 src/docs/src/install/unix.rst                      |    2 +
 src/docs/src/maintenance/performance.rst           |    4 +-
 src/{b64url => exxhash}/.gitignore                 |    5 +-
 src/{b64url => exxhash}/Makefile                   |    0
 src/exxhash/README.md                              |   27 +
 src/exxhash/c_src/exxhash.c                        |   31 +
 src/exxhash/c_src/xxhash.c                         |   43 +
 src/exxhash/c_src/xxhash.h                         | 6415 ++++++++++++++++++++
 src/{b64url => exxhash}/rebar.config               |    2 +-
 .../src/exxhash.app.src}                           |    4 +-
 src/exxhash/src/exxhash.erl                        |   55 +
 src/exxhash/test/exxhash_tests.erl                 |   54 +
 src/mango/src/mango_cursor_nouveau.erl             |    4 +-
 src/mango/src/mango_cursor_text.erl                |    6 +-
 src/mango/src/mango_cursor_view.erl                |    6 +-
 src/mango/src/mango_execution_stats.erl            |   40 +-
 45 files changed, 6989 insertions(+), 62 deletions(-)
 copy src/{b64url => exxhash}/.gitignore (68%)
 copy src/{b64url => exxhash}/Makefile (100%)
 create mode 100644 src/exxhash/README.md
 create mode 100644 src/exxhash/c_src/exxhash.c
 create mode 100644 src/exxhash/c_src/xxhash.c
 create mode 100644 src/exxhash/c_src/xxhash.h
 copy src/{b64url => exxhash}/rebar.config (92%)
 copy src/{couch_tests/src/couch_tests.app.src => exxhash/src/exxhash.app.src} 
(86%)
 create mode 100644 src/exxhash/src/exxhash.erl
 create mode 100644 src/exxhash/test/exxhash_tests.erl

Reply via email to