Commit bd8f1bb 1 parent 4890d90 commit bd8f1bb Copy full SHA for bd8f1bb
File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
13
Changes in release 0.33.0:
2
14
* Interface changes:
3
15
- API and ABI backwards-compatible with 0.27.x and later
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ NE_VERSION_PATCH=0
141
141
NE_VERSION_TAG=-dev
142
142
143
143
# 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 "
145
145
146
146
NE_DEFINE_VERSIONS
147
147
Original file line number Diff line number Diff line change @@ -39,3 +39,7 @@ NEON_0_33 {
39
39
ne_add_interim_handler;
40
40
ne_putbuf;
41
41
};
42
+
43
+ NEON_0_34 {
44
+ ne_get_response_location;
45
+ };
You can’t perform that action at this time.
0 commit comments