Skip to content

Commit

Permalink
Update to neon 0.34.0.
Browse files Browse the repository at this point in the history
* neon/: Update.

* configure.ac: Use new NE_MINIMUM_VERSION() macro.
  • Loading branch information
notroj committed Nov 23, 2024
1 parent d94facd commit 03db409
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Changes in version 0.16:
* New tests:
- props: test that deleting a property twice succeeds
* Bug fixes:
- basic: fix path used in put_location test (Martin Vobruba)
* Various error/warning references updated from RFC 2518 to 4918
* Update to neon 0.34.0.

Changes in version 0.15:
* New tests:
- props: test for DAV:getlastmodified property value
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AC_PROG_INSTALL
dnl List of tests
AC_SUBST([TESTS], ["basic copymove props locks http"])

NE_REQUIRE_VERSIONS([0], [27 28 29 30 31 32 33])
NE_MINIMUM_VERSION([0], [27])
NEON_WITHOUT_ZLIB
NEON_WITHOUT_ACL
NEON_TEST
Expand Down
2 changes: 1 addition & 1 deletion neon
Submodule neon updated 63 files
+9 −4 .github/workflows/ci.yml
+5 −0 .gitignore
+1 −0 Makefile.in
+26 −0 NEWS
+3 −3 README.md
+1 −0 config.hw.in
+1 −0 configure.ac
+1 −1 doc/html.xsl
+8 −7 doc/man.xsl
+5 −1 doc/manual.xml
+1 −1 doc/ref/config.xml
+21 −0 doc/ref/feat.xml
+37 −8 doc/ref/getst.xml
+6 −0 doc/ref/hash.xml
+7 −0 doc/ref/param.xml
+69 −0 doc/ref/redir.xml
+42 −22 doc/ref/req.xml
+34 −10 doc/ref/sess.xml
+8 −0 doc/ref/sessflags.xml
+9 −0 doc/ref/ssltrust.xml
+31 −18 doc/ref/status.xml
+15 −16 doc/security.xml
+67 −2 doc/using.xml
+42 −18 macros/neon.m4
+3 −1 neon-config.in
+52 −0 src/mktable.c
+2 −2 src/ne_207.c
+2 −2 src/ne_207.h
+94 −80 src/ne_auth.c
+5 −2 src/ne_auth.h
+3 −3 src/ne_dates.h
+48 −2 src/ne_gnutls.c
+59 −34 src/ne_openssl.c
+1 −0 src/ne_privssl.h
+21 −67 src/ne_redirect.c
+7 −0 src/ne_redirect.h
+272 −99 src/ne_request.c
+26 −9 src/ne_request.h
+93 −26 src/ne_session.c
+16 −3 src/ne_session.h
+114 −3 src/ne_socket.c
+14 −2 src/ne_socket.h
+18 −0 src/ne_ssl.h
+6 −3 src/ne_uri.c
+61 −28 src/ne_utils.c
+4 −2 src/ne_utils.h
+12 −0 src/neon.vers
+75 −4 test/auth.c
+20 −11 test/common/child.c
+1 −1 test/common/child.h
+9 −5 test/common/tests.c
+0 −274 test/props.c
+91 −89 test/redirect.c
+172 −149 test/request.c
+2 −0 test/run.sh
+25 −0 test/session.c
+84 −3 test/socket.c
+121 −91 test/ssl.c
+260 −2 test/twooh7.c
+4 −0 test/uri-tests.c
+44 −18 test/util-tests.c
+14 −4 test/utils.c
+19 −1 test/utils.h

0 comments on commit 03db409

Please sign in to comment.