Skip to content

Commit bd8f1bb

Browse files
committed
Updates for 0.34.0 so far. [skip ci]
1 parent 4890d90 commit bd8f1bb

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

NEWS

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Changes in release 0.34.0
2+
* Interface changes:
3+
- API and ABI backwards-compatible with 0.27.x and later
4+
* New interfaces and features:
5+
- ne_request.h: add ne_get_response_location()
6+
- ne_redirect.h: support complete relative URI resolution
7+
- ne_session.h: add NE_SESSFLAG_STRICT session flag
8+
- HTTP strictness/compliance updated for RFC 9110/9112;
9+
notably stricter in parsing header field line, chunked
10+
transfer-encoding, status-line.
11+
* Documentation & header updates for RFC 9110/9112.
12+
113
Changes in release 0.33.0:
214
* Interface changes:
315
- API and ABI backwards-compatible with 0.27.x and later

macros/neon.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ NE_VERSION_PATCH=0
141141
NE_VERSION_TAG=-dev
142142
143143
# 0.33.x is backwards-compatible to 0.27.x, so AGE=6
144-
NE_LIBTOOL_VERSINFO="33:${NE_VERSION_PATCH}:6"
144+
NE_LIBTOOL_VERSINFO="34:${NE_VERSION_PATCH}:7"
145145
146146
NE_DEFINE_VERSIONS
147147

src/neon.vers

+4
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@ NEON_0_33 {
3939
ne_add_interim_handler;
4040
ne_putbuf;
4141
};
42+
43+
NEON_0_34 {
44+
ne_get_response_location;
45+
};

0 commit comments

Comments
 (0)