File nghttp2.changes of Package nghttp2
xxxxxxxxxx
1
-------------------------------------------------------------------
2
Tue Sep 26 13:58:42 UTC 2023 - Valentin Lefebvre <valentin.lefebvre@suse.com>
3
4
- Fixes memory leak that happens when PUSH_PROMISE or HEADERS frame cannot be
5
sent, and nghttp2_on_stream_close_callback fails with a fatal error.
6
[CVE-2023-35945 bsc#1215713]
7
+ nghttp2-CVE-2023-35945.patch
8
9
-------------------------------------------------------------------
10
Fri Mar 12 14:25:10 UTC 2021 - pgajdos@suse.com
11
12
- security update
13
- added patches
14
fix CVE-2020-11080 [bsc#1181358], HTTP/2 Large Settings Frame DoS
15
+ nghttp2-CVE-2020-11080.patch
16
17
-------------------------------------------------------------------
18
Tue Jan 14 18:01:52 UTC 2020 - Michał Rostecki <mrostecki@opensuse.org>
19
20
- Update to version 1.40.0 to fix CVE-2019-18802 in envoy-proxy and
21
cilium-proxy (bsc#1166481)
22
* lib: Add nghttp2_check_authority as public API
23
* lib: Fix the bug that stream is closed with wrong error code
24
* lib: Faster huffman encoding and decoding
25
* build: Avoid filename collision of static and dynamic lib
26
* build: Add new flag ENABLE_STATIC_CRT for Windows
27
* build: cmake: Support building nghttpx with systemd
28
* third-party: Update neverbleed to fix memory leak
29
* nghttpx: Fix bug that mruby is incorrectly shared between
30
backends
31
* nghttpx: Reconnect h1 backend if it lost connection before
32
sending headers
33
* nghttpx: Returns 408 if backend timed out before sending
34
headers
35
* nghttpx: Fix request stal
36
37
-------------------------------------------------------------------
38
Fri Aug 30 02:45:32 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
39
40
- Conditionally remove dependecy on jemalloc for SLE-12
41
42
-------------------------------------------------------------------
43
Mon Aug 19 12:27:38 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
44
45
- Require correct library from devel package - boo#1125689
46
47
-------------------------------------------------------------------
48
Mon Aug 19 12:02:09 UTC 2019 - Adam Majer <adam.majer@suse.de>
49
50
- Update to version 1.39.2 (bsc#1146184, bsc#1146182):
51
* This release fixes CVE-2019-9511 “Data Dribble” and CVE-2019-9513
52
“Resource Loop” vulnerability in nghttpx and nghttpd. Specially crafted HTTP/2
53
frames cause Denial of Service by consuming CPU time. Check out
54
https://github.com/Netflix/security-bulletins/blob/master/advisories/third-party/2019-002.md
55
for details. For nghttpx, additionally limiting inbound traffic by
56
--read-rate and --read-burst options is quite effective against
57
this kind of attack.
58
59
* Add nghttp2_option_set_max_outbound_ack API function
60
* nghttpx: Fix request stall
61
62
-------------------------------------------------------------------
63
Tue Aug 13 13:22:01 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
64
65
- Update to version 1.39.1:
66
* This release fixes the bug that log-level is not set with
67
cmd-line or configuration file. It also fixes FPE with default
68
backend.
69
- Changes for version 1.39.0:
70
* libnghttp2 now ignores content-length in 200 response to
71
CONNECT request as per RFC 7230.
72
* mruby has been upgraded to 2.0.1.
73
* libnghttp2-asio now supports boost-1.70.
74
* http-parser has been replaced with llhttp.
75
* nghttpx now ignores Content-Length and Transfer-Encoding in 1xx
76
or 200 to CONNECT.
77
- Drop no longer needed boost170.patch
78
79
-------------------------------------------------------------------
80
Fri May 10 08:24:23 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
81
82
- Update to 1.38.0:
83
* This release fixes the bug that authority and path altered by per-pattern mruby script can affect backend selection on retry.
84
* It also fixes the bug that HTTP/1.1 chunked request stalls.
85
* Now nghttpx does not log authorization request header field value with -LINFO.
86
* This release fixes possible backend stall when header and request body are sent in their own packets.
87
* The backend option gets weight parameter to influence backend selection.
88
* This release fixes compile error with BoringSSL.
89
- Add patch from upstream to build with new boost bsc#1134616:
90
* boost170.patch
91
92
-------------------------------------------------------------------
93
Fri Jan 18 16:42:34 UTC 2019 - seanlew@opensuse.org
94
95
- Update to 1.36.0
96
* build: disable shared library if ENABLE_SHARED_LIB is off
97
* third-party: use http-parser to v2.9.0 (GH-1294)
98
* third-party: Update mruby to 2.0.0
99
* nghttpx: Pool h1 backend connection per address (GH-1292)
100
* nghttpx: Randomize backend address round robin order per thread
101
(GH-1291)
102
* nghttpx: Fix getting long SNs for openssl < 1.1 (GH-1287)
103
* h2load: add an option to write per-request logs (GH-1256)
104
* asio: added access to # of the current server port (GH-1257)
105
106
-------------------------------------------------------------------
107
Fri Jan 18 14:35:14 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
108
109
- Use multibuild to not pull in python3 in first build, nghttp2
110
is low in the system
111
112
-------------------------------------------------------------------
113
Fri Jan 11 14:24:40 UTC 2019 - Martin Pluskal <mpluskal@suse.com>
114
115
- Update to version 1.35.1:
116
* nghttpx: Fix broken trailing slash handling (GH-1276)
117
- Changes for version 1.35:
118
* build: cmake: Fix libevent version detection (Patch from Jan Kundrát) (GH-1238)
119
* lib: Use __has_declspec_attribute for shared builds (Patch from Don) (GH-1222)
120
* src: Require C++14 language feature
121
* nghttpx: Write mruby send_info early
122
* nghttpx: Fix assertion failure on mruby send_info with HTTP/1 frontend
123
* h2load: Handle HTTP/1 non-final response (GH-1259)
124
* h2load: Clarify that time for connect includes TLS handshake
125
126
-------------------------------------------------------------------
127
Mon Oct 8 19:46:51 UTC 2018 - adam.majer@suse.de
128
129
- Update to version 1.34.0: (bsc#1112438, FATE#326776)
130
* lib: Implement RFC 8441 :protocol support
131
* nghttpx: Add read/write-timeout parameters to backend option
132
* nghttpx: Fix mruby parameter validation in backend option
133
* nghttpx: Implement RFC 8441 Bootstrapping WebSocket with HTTP/2
134
* nghttpx: Update neverbleed to fix OpenSSL 1.1.1 issues
135
* nghttpx: Update mruby 1.4.1
136
* nghttpx: Add mruby env.tls_handshake_finished
137
* nghttpx: Add --tls13-ciphers and --tls-client-ciphers options
138
* nghttpx: Add RFC 8470 Early-Data header field support
139
* nghttpx: Add RFC 8446 TLSv1.3 0-RTT early data support
140
141
-------------------------------------------------------------------
142
Wed Sep 26 08:00:27 UTC 2018 - adam.majer@suse.de
143
144
- Update to version 1.33.0:
145
* lib: Tweak nghttp2_session_set_stream_user_data
146
* lib: Fix handling of SETTINGS_MAX_CONCURRENT_STREAMS.
147
* lib: Implement ORIGIN frame
148
* asio: support definition of local endpoint for cleartext
149
client session
150
* integration: Remove remaining SPDY code from the integration tests
151
* nghttpx: Fix worker process crash with neverbleed write error
152
* nghttpx: Support per-backend mruby script
153
* nghttpx: Fix stream reset if data from client is arrived before
154
dconn is attached
155
156
-------------------------------------------------------------------
157
Mon Jul 9 15:04:12 UTC 2018 - mpluskal@suse.com
158
159
- Update to version 1.32.0:
160
* lib: Ignore all input after calling session_terminate_session
161
* lib: Fix treatment of padding
162
* lib: Don't allow 101 HTTP status code because HTTP/2 removes
163
HTTP Upgrade
164
* build: add ENABLE_STATIC_LIB option to build static lib
165
* third-party: Upgrade neverbleed to the latest master
166
* asio: Support client side SNI
167
* src: Compile with libressl 2.7.2
168
* src: Allow building without NPN
169
* h2load: -r and --duration are mutually exclusive
170
171
-------------------------------------------------------------------
172
Fri Apr 13 08:40:38 UTC 2018 - tchvatal@suse.com
173
174
- Version umpdate to 1.31.1:
175
* Fix bsc#1088639 CVE-2018-1000168
176
* https://nghttp2.org/blog/2018/04/12/nghttp2-v1-31-1/
177
178
-------------------------------------------------------------------
179
Mon Apr 9 10:16:47 UTC 2018 - tchvatal@suse.com
180
181
- Version update to 1.31.0:
182
* lib: Add nghttp2_session_set_user_data() public API function (GH-1137)
183
* src: Define nghttp2_inet_pton wrapper to avoid inet_pton macro (GH-1128)
184
* nghttpx: Close listening socket on graceful shutdown
185
* nghttpx: Add an option to accept expired client certificate (GH-1126)
186
* nghttpx: Add mruby tls_client_not_before, and tls_client_not_after (GH-1123)
187
* nghttpx: Fix potential memory leak
188
* lib: Allow PING frame to be sent after GOAWAY (GH-1103)
189
* nghttpx: Fix bug that h1 backend idle timeout expires sooner
190
* nghttpx: Stop overwrite of first header on mruby call to env.req.set_header(..) (Patch from Dylan Plecki) (GH-1119)
191
* nghttpx: Add upgrade-scheme parameter to backend option (GH-1099)
192
* nghttpx: Fix missing ALPN validation (--npn-list) (GH-1094)
193
* nghttpx: Remember which resource is pushed for RFC 8297 (GH-1101)
194
195
-------------------------------------------------------------------
196
Mon Apr 9 08:59:52 UTC 2018 - tchvatal@suse.com
197
198
- Drop spdylay dependency as it is deprecated since version 1.28.0
199
and removed from cofnigure.ac since 1.29.0
200
201
-------------------------------------------------------------------
202
Thu Feb 22 15:10:41 UTC 2018 - fvogt@suse.com
203
204
- Use %license (boo#1082318)
205
206
-------------------------------------------------------------------
207
Fri Jan 5 13:21:33 UTC 2018 - mpluskal@suse.com
208
209
- Update to version 1.29.0:
210
* lib: Use NGHTTP2_REFUSED_STREAM for streams which are closed by
211
GOAWAY
212
* build: Remove SPDY
213
* build: Fix CMAKE_MODULE_PATH
214
* nghttpx: Revert "nghttpx: Use an existing h2 backend connection
215
as much as possible"
216
* nghttpx: Write API request body in temporary file
217
* nghttpx: Increase api-max-request-body
218
* nghttpx: Faster configuration loading with lots of backends
219
* nghttpx: Fix crash with --backend-http-proxy-uri option
220
221
-------------------------------------------------------------------
222
Mon Dec 11 16:53:16 UTC 2017 - dimstar@opensuse.org
223
224
- Export PYTHON=/usr/bin/python3 before running configure: allow to
225
build without (comnplete) python2 in the buildroot. In any case
226
we only ship python3-bindings already.
227
228
-------------------------------------------------------------------
229
Wed Dec 6 16:35:46 UTC 2017 - mpluskal@suse.com
230
231
- Upodate to version 1.28.0:
232
* lib: Add nghttp2_error_callback2
233
* build: Add deprecation warning when spdylay support is enabled
234
* Switch to clang-format-5.0
235
* examples: Make client and server work with libevent-2.1.8
236
* third-party: Update neverbleed
237
* integration: Fix issues reported by the go vet tool.
238
* nghttpx: Fix affinity retry
239
* nghttpx: Fix stalled backend connection on retry
240
* nghttpx: Cookie based session affinity
241
* nghttpx: Expose additional TLS related variables to mruby and
242
accesslog
243
244
-------------------------------------------------------------------
245
Wed Nov 8 16:54:59 UTC 2017 - mpluskal@suse.com
246
247
- Drop forgotten python2 build dependency
248
249
-------------------------------------------------------------------
250
Thu Oct 26 10:28:19 UTC 2017 - mpluskal@suse.com
251
252
- Update to version 1.27.0:
253
* h2load: Print out h2 header fields with --verbose option
254
* nghttpx: Send non-final response to HTTP/1.1 or HTTP/2 client
255
only
256
- Changes for version 1.26.0:
257
* docs: Fix some typos in the nghttpx how-to
258
* h2load: Fix bug that timing script stalls with -m1
259
* h2load: Reservoir sampling (GH-984)
260
* h2load: Add timing-based load-testing in h2load
261
- Switch to python3 support
262
263
-------------------------------------------------------------------
264
Mon Oct 9 10:14:26 UTC 2017 - schwab@suse.de
265
266
- Don't use jemalloc on ppc or %arm, where it is broken.
267
268
-------------------------------------------------------------------
269
Mon Aug 28 10:58:52 UTC 2017 - mpluskal@suse.com
270
271
- Update to version 1.25.0:
272
* lib: add nghttp2_rcbuf_is_static() (Patch from Anna Henningsen) (GH-983)
273
* nghttpx: Fix bug that forwarded for is not affected by proxy protocol (GH-979)
274
* nghttpx: Update mruby to 1.3.0 (GH-957)
275
276
-------------------------------------------------------------------
277
Mon Jul 17 19:45:59 UTC 2017 - mpluskal@suse.com
278
279
- Drop doc building
280
- Rename python subpackage to python2
281
282
-------------------------------------------------------------------
283
Mon Jul 10 14:35:59 UTC 2017 - mpluskal@suse.com
284
285
- Update to version 1.24.0:
286
* doc: README.rst: fix typo (Patch from Simone Basso) (GH-947)
287
* doc: fix up grammar in submit_trailer docs (Patch from Benjamin Peterson) (GH-945)
288
* doc: fix cleaning in out-of-tree builds (Patch from Benjamin Peterson) (GH-938)
289
* nghttp: Fix bug that upgrade fails if reason-phrase is missing (GH-949)
290
* nghttpx: Verify OCSP response using trusted CA certificates (GH-943)
291
* nghttpx: Set default minimum TLS version to TLSv1.2 (GH-937)
292
- Changes for version 1.23.1:
293
* nghttpx: Fix crash in OCSP response verification
294
- Changes for version 1.23.0:
295
* lib: nghttp2_session: Allow for compiling library with -DNDEBUG set (Patch from Angus Gratton) (GH-919)
296
* lib: Treat incoming invalid regular header field as stream error (GH-900)
297
* lib: Call nghttp2_on_invalid_frame_callback if altsvc validation fails (GH-904)
298
* doc: spelling mistake in arguments to build nghttp apps (Patch from Soham Sinha) (GH-925)
299
* doc: Add notes for installation on linux systems (Patch from Tapanito) (GH-917)
300
* doc: Clarify the effect of nghttp2_option_set_no_http_messaging
301
* nghttpx: Verify OCSP response (GH-929)
302
* nghttpx: Fix certificate selection based on pub key algorithm (GH-924)
303
* nghttpx: Fix certificate indexing bug
304
* nghttpx: Run OCSP at startup (GH-922)
305
* nghttpx: Wildcard path matching (GH-914)
306
* nghttpx: Forward multiple via, xff, and xfp header fields (GH-903)
307
* nghttp: Add -y, --no-verify-peer option to suppress peer verify warn (GH-906)
308
309
-------------------------------------------------------------------
310
Wed May 10 12:03:35 UTC 2017 - mpluskal@suse.com
311
312
- Update to version 1.22.0:
313
* lib: Add missing free call on error in inflight_settings_new() (Patch from lstefani) (GH-884)
314
* asio: Support specifying stream priority via session::submit() (Patch from Matt Way) (GH-881)
315
* nghttpx: Clarify --conf option behaviour
316
* nghttpx: Add $tls_sni access log variable (GH-896)
317
* nghttpx: Rename ssl_* log variables as tls_* (GH-895)
318
* nghttpx: Fix path matching bug (GH-894)
319
* nghttpx: SNI based backend server selection (GH-892)
320
* nghttpx: Enable signed_certificate_timestamp extension for TLSv1.3 (GH-878)
321
* nghttpx: Add options for X-Forwarded-Proto header field (GH-872)
322
* nghttpx: Add --single-process option (GH-869)
323
* nghttpx: Use 502 as server error code
324
* nghttpx: Use SSL_CTX_set_early_data_enabled with boringssl
325
* nghttp: Verify server certificate and show warning if it fails (GH-870)
326
* integration: Use nip.io instead of xip.io
327
328
-------------------------------------------------------------------
329
Fri Apr 21 10:27:41 UTC 2017 - mpluskal@suse.com
330
331
- Update to version 1.21.1:
332
* asio: Fix crash if connect takes longer time than ping interval (GH-866)
333
* nghttpx: Fix bug that 204 from h1 backend is always treated as error (GH-871)
334
- Changes for version 1.21.0:
335
* lib: Fix nghttp2_session_want_write (GH-832)
336
* doc: Document pkg-config path usage
337
* build: Eliminate U macro; Instead use (void)VAR for better compiler compatibility.
338
* src: BoringSSL supports SSL_CTX_set_{min,max}_proto_version. (Patch from Piotr Sikora) (GH-853)
339
* src: Use Mozilla's "Modern compatibility" ciphers by default
340
* src: nghttp2_gzip: fix this statement may fall through [-Werror=implicit-fallthrough=] found by gcc7 (Patch from Alexis La Goutte) (GH-823)
341
* nghttpx: Print version number with -v option
342
* nghttpx: Enable X25519 with boringssl
343
* nghttpx: Retry getaddrinfo without AI_ADDRCONFIG (GH-858)
344
* nghttpx: Failing to listen on server socket is fatal error
345
* nghttpx: Escape certain characters in access log (GH-856)
346
* nghttpx: Ignore further input if connection is going to close
347
* nghttpx: Don't call functions which are not async-signal-safe after fork but before execv in multithreaded process.
348
* nghttpx: Enable backend pattern matching with http2-proxy (GH-733)
349
* asio: client: Send PING after 30 seconds idle (GH-847)
350
351
352
-------------------------------------------------------------------
353
Thu Mar 23 18:53:19 UTC 2017 - mpluskal@suse.com
354
355
- Update to version 1.20.0:
356
* lib: nghttp2_session: fix The 'then' statement is equivalent to the subsequent code fragment found by PVS Studio (V523) (Patch from Alexis La Goutte) (GH-814)
357
* lib: Add nghttp2_option_set_no_closed_streams (GH-810)
358
* build: Disable spdylay detection by default
359
* build: Add --with-systemd option to configure
360
* fuzz: Add fuzzer for oss-fuzz (GH-799)
361
* src: Enable TLSv1.3 if it is supported by OpenSSL (or BoringSSL) (GH-816)
362
* src: h2 requires >= TLSv1.2
363
* asio: More graceful stop of nghttp2::asio_http2::server::http2 (Patch from Amir Pakdel) (GH-805)
364
* asio: Holding more shared_ptrs instead of raw ptrs to make sure called objects don't get deleted. (Patch from clemahieu)
365
* asio: Fix infinite loop in acceptor handler (Patch from clemahieu) (GH-794)
366
* asio: close_stream erases from streams_ while it's being iterated over. (Patch from clemahieu) (GH-795)
367
* nghttpx: Strip version number from server header field
368
* nghttpx: Add --single-worker option
369
* nghttpx: Fix bug that send_reply does not participate graceful shutdown
370
* nghttpx: Add --frontend-max-requests option
371
* nghttpx: Enable stream-write-timeout by default
372
* nghttpx: Fix stream write timer handling
373
* nghttpx: Add configrevision API endpoint (GH-820)
374
* nghttpx: Redirect to HTTPS URI with redirect-if-not-tls parameter (GH-819)
375
* nghttpx: Update log time stamp in millisecond interval
376
* nghttpx: Better error message when private key and certificate are missing
377
* nghttpx: Fix bug that old config is used during reloading configuration
378
* nghttpx: Specify TLS protocol by version range (GH-809)
379
* nghttpx: Send SIGQUIT to the original master process (GH-807)
380
* nghttpx: Restrict HTTP major and minor in 0 or 1
381
* nghttpx: Drop privilege of neverbleed daemon first
382
* nghttpx: add systemd support (Patch from Tomasz Torcz) (GH-802)
383
* nghttpx: Fix crash on SIGHUP with multi thread configuration (GH-801)
384
* nghttpx: Send 1xx non-final response using mruby script (GH-800)
385
* nghttpx: Select certificate by client's supported signature algorithm (GH-792)
386
* nghttpx: Recommend POST for backendconfig API request
387
* nghttpx: Don't build PSK features with LibreSSL (Patch from Bernard Spil) (GH-789)
388
* nghttp: add support for link rel="preload" for --get-assets (Patch from Benedikt Christoph Wolters) (GH-791)
389
* h2load: Fix wrong req_stat updates
390
* h2load: Explicitly count the number of requests left and inflight
391
* integration: Fix deprecation warnings
392
* integration: Redirect nghttpx stdout/stderr to test driver's stdout/stderr
393
- Changes for version 1.19.0:
394
* lib: Fix memory leak of nghttp2_stream object in server side nghttp2_session object
395
* Fix issues found by PVS Studio (Patch from Alexis La Goutte) (GH-769)
396
* doc: Update README file to write about the issue of Alpine Linux's inability to replace malloc (Patch from makovich) (GH-768)
397
* build: Compile with Android NDK r13b using clang
398
* src: Fix assertion error with boringssl
399
* nghttp: Take into account scheme and port when parsing HTML links
400
* nghttp: Fix authority for --get-assets if IP address is used in conjunction with user-defined :authority header (Patch from Benedikt Christoph Wolters) (GH-783)
401
* nghttpx: Add --accesslog-write-early option (GH-777)
402
* nghttpx: Fix access.log timestamp (GH-778)
403
* nghttpx: Show default cipher list in -h
404
* nghttpx: Add client-ciphers option
405
* nghttpx: Add client-no-http2-cipher-black-list option
406
* nghttpx: Fix the bug that no-http2-cipher-black-list does not work on backend HTTP/2 connections.
407
* nghttpx: Add --client-psk-secret option to enable PSK in backend (GH-612)
408
* nghttpx: Add --psk-secret option to enable PSK in frontend connection (GH-612)
409
* nghttpx: Enable SCT with OpenSSL 1.1.0
410
* nghttpx: Add proxyproto to frontend option to accept PROXY protocol (GH-765)
411
* h2load: Show default cipher list in -h
412
* h2load: Show custom server temp key such as X25519
413
* h2load: Fix incorrect return value from spdylay_send_callback
414
- Changes for version 1.18.1:
415
* nghttpx: Fix assertion error in libev ev_io_start (GH-759)
416
* nghttpx: Handle c-ares success without result
417
* nghttpx: Fix bug that DNS timeout was erroneously disabled (GH-763)
418
* nghttpx: Fix bug that DNS timeout was ignored (GH-763)
419
420
-------------------------------------------------------------------
421
Thu Feb 2 10:21:27 UTC 2017 - adam.majer@suse.de
422
423
- use individual libboost-*-devel packages instead of boost-devel
424
425
-------------------------------------------------------------------
426
Tue Jan 3 10:39:12 UTC 2017 - mpluskal@suse.com
427
428
- Update to version 1.18.0:
429
* lib: Accept and ignore content-length: 0 in 204 response for now
430
* build: Use pkg-config to detect libxml2
431
* build: Require c-ares to compile applications under src
432
* build: Add Windows CI via AppVeyor (Patch from Alexis La Goutte)
433
* examples: Delete tiny-nghttpd
434
* nghttpx: Retry h1 backend request if first write fails (GH-757)
435
* nghttpx: Keep reading after backend write failed (GH-756)
436
* nghttpx: Add frontend-keep-alive-timeout option (GH-755)
437
* nghttpx: New error log format (GH-749)
438
* nghttpx: Fix bug that fetch-ocsp-response does not work with OpenSSL 1.1.0 (GH-742)
439
* nghttpx: Backend API call allows non-numeric host with dns parameter (GH-731)
440
* nghttpx: Lookup backend host name dynamically (GH-721)
441
* nghttpx: Accept and ignore content-length: 0 in 204 response for now (GH-735)
442
* nghttpx: Wait for child process to exit
443
444
-------------------------------------------------------------------
445
Wed Dec 14 10:19:51 UTC 2016 - mpluskal@suse.com
446
447
- Update to version 1.17.0:
448
* lib: Disallow content-length in 1xx, 204, or 200 to a CONNECT request (GH-722)
449
* lib: Avoid memcpy against NULL src
450
* build: MSVC version resource support (Patch from Remo E) (GH-718)
451
* asio: server: Call on_close callback on connection close (GH-729)
452
* nghttpx: Fix frequent crash with --backend-http-proxy-uri
453
* nghttpx: Robust backend read timeout
454
* nghttpx: Fix bug that mishandles response header from h1 backend
455
* nghttpx: Fix bug that zero-length POST is not forwarded (GH-726)
456
* nghttpx: Remove optional reason-phrase from SPDY :status
457
* nghttpx: Header key and value must be string in mruby script
458
* nghttpx: Strip content-length with 204 or 200 to CONNECT in mruby (GH-722)
459
* nghttpx: Strict handling for Content-Length or Transfer-Encoding in h1 (GH-722)
460
* nghttpx: Fix compilation with BoringSSL (Patch from dalf) (GH-717)
461
* nghttpd, nghttpx, asio: Add missing mandatory SP after status code
462
463
-------------------------------------------------------------------
464
Thu Nov 24 09:44:32 UTC 2016 - mpluskal@suse.com
465
466
- Update to version 1.16.1:
467
* lib: Prevent undefined behavior in decode_length
468
* nghttpx: Fix bug which may crash nghttpx if non-final response
469
is forwarded from origin server to HTTP/1.1 client
470
- Changes for version 1.16.0:
471
* lib: Add nghttp2_set_debug_vprintf_callback to take advantage
472
of DEBUGF statements in when building DEBUGBUILD.
473
* Update .clang-format for clang-format-3.9
474
* build: Make it possible to include nghttp2/CMakeLists.txt in
475
another project using add_subdirectory.
476
* third-party: Update http-parser to
477
feae95a3a69f111bc1897b9048d9acbc290992f9
478
* asio: Fix crash when end() is called outside nghttp2 callback
479
* nghttpx: Add --backend-connect-timeout option
480
* nghttpx: Add TLS signed_certificate_timestamp extension support
481
* nghttpx: Add --ecdh-curves option to specify list of named
482
curves
483
* h2load: Add --header-table-size and --encoder-header-table-size
484
options
485
486
-------------------------------------------------------------------
487
Sun Sep 25 09:01:48 UTC 2016 - mpluskal@suse.com
488
489
- Update to version 1.15.0:
490
* lib: Add nghttp2_option_set_max_deflate_dynamic_table_size()
491
API function (GH-684)
492
* lib: Allow NGHTTP2_ERR_PAUSE from
493
nghttp2_data_source_read_callback (GH-671)
494
* lib: Add nghttp2_session_get_hd_deflate_dynamic_table_size()
495
and nghttp2_session_get_hd_inflate_dynamic_table_size() API
496
functions to get current HPACK dynamic table size (GH-664)
497
* lib: Add nghttp2_session_get_local_settings() API function
498
* lib: Add nghttp2_session_get_local_window_size() and
499
nghttp2_session_get_stream_local_window_size() API functions
500
* build: Add -lsocket -lnsl to APPLDFLAGS for solaris build
501
* neverbleed: Update neverbleed to support ECDSA certificate
502
* doc: Mention --enable-lib-only configure option in README
503
* integration: Fix test failure with go1.7.1
504
* src: Fix compile error with openssl 1.1.0
505
* nghttpx: Improve performance with HTTP/1.1 backend when
506
request body is involved
507
* nghttpx: Use std::atomic_* overloads for std::shared_ptr if
508
available
509
* nghttpx: Migrate backend stream to another h2 session on
510
graceful shutdown
511
* nghttpx: Add option to specify HPACK encoder/decoder dynamic
512
table size
513
* nghttpx: Log client address
514
* nghttpx: Add tls_sni to mruby Nghttpx::Env class
515
* nghttpx: Add --frontend-http2-window-size option, and its
516
family functions
517
* nghttpx: Add experimental TCP optimization for h2 frontend
518
* nghttpx: Workaround for std::make_shared bug in Xcode7, 7.1,
519
and 7.2 (GH-670)
520
* nghttpx: Fix bug that bytes are doubly counted to rate limit
521
for TLS connections
522
* nghttpx: Add --no-server-rewrite option not to rewrite server
523
header field (GH-667)
524
* nghttpx: Retry if backend h1 connection cannot be established
525
due to timeout
526
* nghttpx: Reset stream if invalid header field is received in h2
527
* nghttpx: Add --server-name option to change server response
528
header field (GH-667)
529
* nghttpd: Add --encoder-header-table-size option
530
* nghttp: Add --encoder-header-table-size option
531
* python: Support ALPN, require Python 3.5
532
533
-------------------------------------------------------------------
534
Thu Sep 8 08:35:52 UTC 2016 - idonmez@suse.com
535
536
- Update to version 1.14.0:
537
* lib: Make emit_header() return void since it always succeed
538
* lib: Add nghttp2_hd_deflate_hd_vec() deflate API to support
539
multiple buffer input
540
* lib: since hd_inflate_commit_indexed() always return 0,
541
remove the return value check in nghttp2_hd_inflate_hd_nv()
542
* lib: Use memeq() instead of lstreq() in lookup_token()
543
* lib: More strict stream state handling
544
* lib: Modify genlibtokenlookup.py to remove redundant header
545
comparisons and remove inline qualifier of lookup_token()
546
in genlibtokenlookup.py
547
* lib: Fix wrong tree operation to avoid cycle
548
* lib: Make get_max_index() return the max index in frame,
549
so we don't need to do extra calculation
550
* lib: Add nghttp2_on_invalid_header_callback
551
* lib: Log frame's stream ID for header debug logging
552
* doc: Remove old doc about differential encoding in HPACK
553
* doc: Document about ALPN in nghttpx howto
554
* nghttpx: Log error code from getsockopt(SO_ERROR) on first
555
write event
556
* nghttpx: Don't change pushed stream's priority
557
* nghttpx: Log backend connection failure in WARN level
558
* nghttpx: Fix bug that api and healthmon parameters do not work
559
with http2 proxy
560
* nghttpx: Add access log variable for backend host and port
561
* nghttpx: Use copy instead of const reference of backend group
562
* nghttpx: Reload configuration with SIGHUP
563
* nghttp: Adjust weight according to Firefox stable
564
* nghttp: Call error callback when invalid header field is
565
received and ignored
566
* nghttp: Allow multiple -p option
567
* deflatehd: Call nghttp2_hd_deflate_change_table_size only
568
if table size is changed from default
569
570
-------------------------------------------------------------------
571
Sun Aug 7 17:23:20 UTC 2016 - mpluskal@suse.com
572
573
- Update to version 1.13.0:
574
* lib: Cancel non-DATA frame transmission from
575
nghttp2_before_frame_send_callback
576
* doc: Fix warning with Sphinx 1.4
577
* build: Work with Android NDK r12b
578
* nghttpx: Use consistent hashing for client IP based session
579
affinity
580
* nghttpx: Fix FTBFS on armel by explicitly including the header
581
* nghttpx: Cast to double to fix build with gcc 4.8 on Solaris 11
582
* nghttpx: Fix build error with libressl
583
* examples: Fix compile error with OpenSSL v1.1.0-beta2
584
585
-------------------------------------------------------------------
586
Thu Jul 14 13:08:52 UTC 2016 - mpluskal@suse.com
587
588
- Update to version 1.12.0:
589
* Add nghttp2_session_set_local_window_size API function
590
* Add nghttp2_option_set_max_send_header_block_length API
591
function (GH-613)
592
* Fix warning: declaration of 'free' shadows a global declaration
593
(Patch from Alexis La Goutte)
594
* examples: Add ALPN support to tutorial client/server (GH-614)
595
* nghttpx: Reduce TTFB with large number of incoming connections
596
* nghttpx: Rewrite read timer handling
597
* nghttpx: Clean up neverbleed AF_UNIX socket
598
* nghttpx: Add --backend-max-backoff option
599
* nghttpx: Use 16KiB buffer for reading to match TLS record size
600
* nghttpx: Add healthmon parameter to -f option to enable health
601
monitor mode
602
* nghttpx: Receive reference of std::mt19937, not making a copy
603
* nghttpx: Fix bug that backend never return to online (GH-615)
604
* nghttpx: Implement client IP based session affinity
605
* nghttpx: Add --api-max-request-body option to set maximum API
606
request body size
607
* nghttpx: Add api parameter to --frontend option to mark API
608
endpoint
609
* h2load: Add content-length header field for HTTP/2 and SPDY as
610
well
611
* h2load: Implement HTTP/1 upload (GH-611)
612
613
-------------------------------------------------------------------
614
Wed Jun 8 09:03:04 UTC 2016 - idonmez@suse.com
615
616
- Update to 1.11.1
617
* lib: Add nghttp2_hd_inflate_hd2() and deprecate
618
nghttp2_hd_inflate_hd()
619
* lib: Avoid 0-length DATA if NGHTTP2_DATA_FLAG_NO_END_STREAM is set
620
* lib: Fix bug that PING flags are ignored in nghttp2_submit_ping
621
* integration: Workaround runtime error: cgo argument has Go pointer
622
to Go pointer
623
* nghttp: Eliminate zero length DATA frame at the end if possible
624
* nghttpd: Set content-length in status response
625
* nghttpx: Add sni keyword to --backend option
626
* nghttpx: Allow mixed protocol and TLS settings among backends under
627
same pattern
628
* nghttpx: Don't add 0-length DATA when response HEADERS bears
629
END_STREAM flag
630
* nghttpx: Don't add chunked encoded response body for HEAD request
631
* nghttpx: Don't use CN if we have dNSName or iPAddress field
632
* nghttpx: Just call execv instead of execve to pass environ
633
* nghttpx: Make SETTINGS timeout value configurable
634
* nghttpx: Save PID file after it is ready to accept connections
635
* nghttpx: Treat backend failure if SETTINGS is not received within
636
timeout
637
* nghttpx: Wait for SETTINGS ACK to make sure that backend h2 server
638
is alive
639
640
-------------------------------------------------------------------
641
Wed Apr 27 10:04:48 UTC 2016 - mpluskal@suse.com
642
643
- Update to 1.10.0
644
* Pass unknown SETTINGS values to nghttp2_on_frame_recv_callback
645
* Add ALTSVC frame support
646
* Run error callback when peer does not send initial SETTINGS
647
frame
648
* Update http-parser
649
* Update sphinx_rtd_theme
650
* nghttp: add an --expect-continue option
651
* nghttpx: Fix downstream connect callback called early
652
* nghttpx: Truncate too long -b option signature
653
* nghttpx: Fix bug that server push from mruby script did not
654
work
655
* nghttpx: Try next HTTP/1 backend address when connection
656
cannot be made
657
* nghttpx: Retry next HTTP/2 backend address when connection
658
cannot be made
659
* nghttpx: Enable link header field based push for non-final
660
response
661
* nghttpx: Detect online/offline state of backend servers
662
* nghttpx: Better load balancing between backend HTTP/2 servers
663
* nghttpx: Fix crash with backend failure
664
665
-------------------------------------------------------------------
666
Wed Apr 13 18:31:20 UTC 2016 - mpluskal@suse.com
667
668
- Update to 1.9.2
669
* nghttpx: Fix crash with backend failure
670
* nghttpx: Better distribute load to backend h2 servers
671
* nghttpx: Fix error messages on deprecated mode
672
* nghttpx: Fix bug that logger wrote string which was not
673
NULL-terminated
674
* nghttpx: Fix bug that proxy with HTTP/1.1 CONNECT did not work
675
676
-------------------------------------------------------------------
677
Sun Mar 27 16:57:17 UTC 2016 - mpluskal@suse.com
678
679
- Update to 1.9.1
680
* nghttpx: Fix bug that backend tls keyword did not work with -s
681
option
682
* nghttpx: Fix handing stream after connection check was failed
683
- Changes for 1.9.0
684
* lib: Add nghttp2_error_callback to tell application human
685
readable error message
686
* lib: Reference counted HPACK name/value pair, adding
687
* nghttp2_on_header_callback2
688
* lib: Add nghttp2_option_set_no_auto_ping_ack() option
689
* lib: Add nghttp2_http2_strerror() to return HTTP/2 error code
690
string
691
* build: Makefile.msvc enhancements (Patch from Jan-E)
692
* build: Lower libev version requirement (Patch from Peter Wu)
693
* build: cmake build support (Patch from Peter Wu)
694
* asio: Fix bug that server event loop breaks with exception
695
* integration: Disable tests that sometimes break randomly on
696
travis
697
* integration: do not use recursive target (Patch from Peter Wu)
698
* h2load: Fix bug that it did not try to connect to server again
699
* h2load: Fix bug that initial max concurrent streams was too
700
large
701
* nghttpx: Memcached connection encryption with tls keyword
702
* nghttpx: Enable/disable TLS per frontend address
703
* nghttpx: Configure TLS per backend routing pattern
704
* nghttpx: Workaround for Ubuntu 15.04 which does not
705
value-initialize on std::make_shared.
706
* nghttpx: Add --error-page option to set custom error pages
707
* nghttpx: Add wildcard host routing
708
* nghttpx: Change read timeout reset timing
709
* nghttpx: Don't push if Link header field includes nopush
710
* nghttpx: Deprecate backend-http1-connections-per-host in favor
711
of backend-connections-per-host
712
* nghttpx: Restructure mode settings, removing --http2-bridge,
713
--client, and --client-proxy options
714
* nghttpx: Deprecate backend-http1-connections-per-frontend in
715
favor of backend-connections-per-frontend
716
* nghttpx: Don't share session which is already in draining
717
state
718
* nghttpx: Effectively disable backend HTTP/2 connection flow
719
control
720
* nghttpx: Add --frontend-http2-max-concurrent-streams and
721
--backend-http2-max-concurrent-streams, and deprecate
722
--http2-max-concurrent-streams option
723
* nghttpx: Deprecate --backend-http2-connections-per-worker
724
option
725
* nghttpx: Share TLS session cache between HTTP/2 and HTTP/1
726
backend
727
* nghttpx: Rewrite backend HTTP/2 connection coalesce strategy
728
729
-------------------------------------------------------------------
730
Fri Feb 26 13:00:38 UTC 2016 - mpluskal@suse.com
731
732
- Update to 1.8.0
733
* Add Architecture documents (work in progress)
734
* List all contributors in AUTHORS
735
* doc: fix out-of-tree doc builds (Patch from Peter Wu)
736
* Wrap AM_PATH_XML2 by m4_ifdef to handle the case when
737
_PATH_XML2 is not found
738
* Fix configure script for non-gcc, clang build
739
* Document compiling apps and include h2load in configure (Patch
740
from David Beitey)
741
* Don't check for dlopen/libdl on *BSD (Patch from Bernard Spil)
742
* Don't taint CXXFLAGS from AX_CXX_COMPILE_STDCXX_11
743
* Fixing Windows Makefile version detection (Patch from Reza
744
Tavakoli)
745
* lib: Tokenize extra HTTP header fields
746
* lib: Fix typo in HAVE_CONFIG_H name (Patch from Peter Wu)
747
* lib: Add HTTP/2 extension framework to send and receive
748
non-critical frames
749
* tests: remove unused macros (Patch from Peter Wu)
750
* src: Update default cipher list
751
* src: Fix compile error with gcc-6 which enables C++14 by default
752
* asio: client: Fix connect timeout does not work, return from cb
753
if session stopped, removing client::session::connect_timeout()
754
functon
755
* nghttpd: Start SETTINGS timer after it is written to output
756
buffer
757
* nghttpd: Add trailer header field to status responses
758
* nghttpd: Add -w and -W options to change window size
759
* nghttpx: Worker wide blocker which is used when socket(2) is
760
failed
761
* nghttpx: ConnectBlocker per backend address
762
* nghttpx: Interleave text/html pushed resources with associated
763
resource
764
* nghttpx: Add headers given in add-response-headers for mruby
765
response
766
* nghttpx: Deprecate --backend-ipv4 and --backend-ipv6 in favor
767
of --backend-address-family
768
* nghttpx: Add options to specify address family of memcached
769
connections
770
* nghttpx: Add encryption support for TLS ticket key retrieval
771
* nghttpx: Add TLS support for session cache memcached connection
772
* nghttpx: Refactor blacklisted cipher suite check (Patch from
773
Jay Satiro)
774
* nghttpx: Add TLS support for HTTP/1 backend
775
* nghttpx: Add request-header-field-buffer and
776
max-request-header-fields options, deprecating
777
header-field-buffer and max-header-fields options.
778
* nghttpx: Add --no-http2-cipher-black-list to allow black listed
779
cipher suite
780
* nghttpx: Limit header fields from backend
781
* nghttpx: Fix bug that IPv6 address in Forwarded "for" is not
782
quoted-string
783
* nghttpx: Support multiple frontend addresses
784
* integration-tests: support out-of-tree tests (Patch from Peter
785
Wu)
786
* examples: fix compile warnings (Patch from Peter Wu)
787
- Drop upstreamed nghttp2-c++14.patch
788
789
-------------------------------------------------------------------
790
Fri Feb 12 17:21:54 UTC 2016 - mpluskal@suse.com
791
792
- Update to 1.7.1
793
* Fix CVE-2016-1544 (boo#966514)
794
795
-------------------------------------------------------------------
796
Thu Jan 28 14:43:56 UTC 2016 - rguenther@suse.com
797
798
- Add nghttp2-c++14.patch to properly guard make_unique templates.
799
[bsc#964140]
800
801
-------------------------------------------------------------------
802
Tue Jan 26 20:02:00 UTC 2016 - mpluskal@suse.com
803
804
- Update to 1.7.0
805
* Reset (RST_STREAM) stream if flow control window gets overflow
806
* Validate :authroity, host, and :scheme value more strictly
807
* Check request/response submission error based side of session
808
* Strict outgoing idle stream detection
809
* Return error from nghttp2_submit_{headers,request} when self
810
dependency is made
811
* Add -ldl to APPLDFLAGS for static openssl linking
812
* asio: Stop acceptor on server::http2::stop
813
* asio: Rename http2::get_io_services() as http2::io_services()
814
* h2load: Support UNIX domain socket
815
* h2load: Improve readability of traffic numbers
816
* h2load: Remove "auto" for -m option
817
* h2load: Show progress in rate mode
818
* h2load: Perform sampling for request and connection timings to
819
reduce memory consumption
820
* nghttpd: Add --no-content-length option to omit content-length
821
in response
822
* nghttpx: Interleave pushed streams with the associated stream
823
if pushed streams are javascript and CSS resources
824
* nghttpx: The initial value of request/response buffer is
825
increased to 128K
826
* nghttpx: Fix bug that --listener-disable-timeout option is not
827
used
828
* nghttpx: Don't emit :authority if request does not contain
829
authority information
830
* nghttpx: Add clarification of quotes in configuration file
831
* nghttpx: Don't allow certain characters in host and :scheme
832
header field
833
* nghttpx: Add RFC 7239 Forwarded header field support
834
* nghttpx: Fix crash when running on IPv6 only (Patch from Vernon
835
Tang)
836
* nghttpx: Take into account of trailers when applying
837
max_header_fields
838
* nghttpx: Don't apply max_header_fields and header_field_buffer
839
limit to response
840
* nghttpx: Strict validation for header fields given in
841
configuration
842
* nghttpx: header value should not be lower-cased (Patch from
843
ayanamist)
844
845
-------------------------------------------------------------------
846
Thu Jan 21 08:28:51 UTC 2016 - pgajdos@suse.com
847
848
- fixed typo in libnghttp2_asio1 [bsc#962914]
849
850
-------------------------------------------------------------------
851
Wed Dec 23 17:48:47 UTC 2015 - mpluskal@suse.com
852
853
- Update to 1.6.0
854
* Fix heap-use-after-free bug when handling idle streams
855
* Strict error handling for frames which are not allowed after
856
closed (remote)
857
* Set max number of outgoing concurrent streams to 100 by
858
default
859
* Keep incoming streams only at server side
860
* Create stream object for pushed resource during
861
nghttp2_submit_push_promise()
862
* Add nghttp2_session_create_idle_stream() API
863
* Handle response in nghttp2_on_begin_frame_callback
864
* Add --lib-only configure option
865
* Compile with OpenSSL 1.1.0-pre1
866
* Fix build when OpenSSL 1.0.2 is not available (patch from
867
Sunpoet Po-Chuan Hsieh)
868
* asio: Add connect and read timeout to client API
869
* asio: Add TLS handshake and read timeout to server API
870
* asio: Added access to a requests remote endpoint (patch from
871
Andreas Pohl)
872
* asio: libnghttp2_asio: Added io_service accessors (patch from
873
Andreas Pohl)
874
* h2load: Add req/s min, max, mean and sd for clients
875
* h2load: Fix broken connection times
876
877
-------------------------------------------------------------------
878
Tue Dec 1 14:13:15 UTC 2015 - mpluskal@suse.com
879
880
- Update to 1.5.0
881
* Fix bug that nghttp2_session_find_stream(session, 0) returned
882
NULL
883
* Add nghttp2_session_change_stream_priority() to change stream
884
priority without sending PRIORITY frame
885
* Add nghttp2_session_check_server_session() API
886
* Consider to use CANCEL error code when closing streams with
887
GOAWAY
888
* Don't send push response if GOAWAY has been received
889
* Use error code CANCEL to reset pushed reserved stream from
890
remote
891
* Add nghttp2_session_upgrade2(), deprecate
892
nghttp2_session_upgrade()
893
* Workaround HTTP upgrade with HEAD request in
894
nghttp2_session_upgrade()
895
* Introduce NGHTTP2_NV_FLAG_NO_COPY_NAME and
896
NGHTTP2_NV_FLAG_NO_COPY_VALUE
897
* Add nghttp2_session_check_request_allowed() API function
898
* Switch to clang-format-3.6
899
* Update mruby to 1.2.0
900
* tests: fix broken linkage with --disable-static (Patch from
901
Kamil Dudka)
902
* python: Send RST_STREAM if remote side is not closed and
903
response finished
904
* asio: client: call on_error when connection is dropped
905
* asio: ALPN support
906
* h2load: Add --h1 option to force http/1.1 for both http and
907
https URI
908
* h2load: Fix crash when dealing with "connection: close" form
909
HTTP/1.1 server
910
* h2load: h2load goes into infinite loop when timing script file
911
starts with 0.0 in first line (Patch from Kit Chan)
912
* h2load: Override user-agent with -H option
913
* h2load: Print "space savings" to measure header compression
914
efficiency
915
* h2load: Stream error should be counted toward errored
916
* h2load: Show application protocol with OpenSSL < 1.0.2
917
* nghttpx: Don't send RST_STREAM to h2 backend if backend is
918
disconnected state
919
* nghttpx: Support server push from HTTP/2 backend
920
* nghttpx: Fix bug that causes connection failure with backend
921
proxy URI
922
* nghttpx: Use --backend-tls-sni-field to verify certificate
923
hostname
924
* nghttpx: Log :authority as $http_host if available
925
* nghttpd: Fix crash with CONNECT request
926
* nghttpd: Defered eviction of cached fd using timer
927
* nghttpd: Read /etc/mime.types to set content-type header field
928
* nghttp: Record request method to output it in har correctly
929
* nghttp: Use method given in -H with ":method" in HTTP Upgrade
930
- Drop nghttp2-1.4.0-fix-tests.patch (now in upstream)
931
932
-------------------------------------------------------------------
933
Mon Nov 16 17:21:15 UTC 2015 - mpluskal@suse.com
934
935
- Enable spdy and more example applications
936
937
-------------------------------------------------------------------
938
Sat Oct 31 10:21:56 UTC 2015 - sor.alexei@meowr.ru
939
940
- Update to 1.4.0:
941
* lib: Don't always expect dynamic table size update.
942
* lib: Shrink to the minimum table size seen in local SETTINGS.
943
* lib: Add new error code NGHTTP2_ERR_PAUSE to send_data_callback.
944
* lib: Avoid excessive WINDOW_UPDATE queuing.
945
* lib: Return fatal error if flooding is detected to close
946
session immediately.
947
* lib: Return type of nghttp2_submit_trailer is int.
948
* lib: Don't send WINDOW_UPDATE with 0 increment.
949
* lib: Fix bug that headers in CONTINUATION were ignored after
950
HEADERS with padding.
951
* package: Use -fvisibility=hidden for internal functions.
952
* package: Show more information in configure summary.
953
* package: Add PIDFile directive to systemd service.
954
* package: Fix daemon upgrade when running under systemd.
955
* app: Compile with BoringSSL.
956
* nghttp: Allow multiple -c option occurrence, and take min and
957
last value.
958
* nghttpd: Fix leak when server failed to listen to given port.
959
* nghttpx: Add TLS dynamic record size behaviour command line
960
options.
961
* nghttpx: Reduce default timeouts for read sockets to 1m.
962
* nghttpx: Fix bug that PUT is replaced with POST.
963
* nghttpx: Change mruby script handling.
964
* nghttpx: Added support for RFC 7413 (TCP Fast Open) on nghttpx
965
proxy listening connections.
966
* nghttpx: Add neverbleed support.
967
* h2load: Don't DOS our server!
968
* h2load: Use duration syntax for timeouts.
969
* h2load: Support subsecond rate period.
970
* h2load: Simplify rate mode.
971
* h2load: Add option for user-definable rate period.
972
* h2load: Reuse SSL/TLS session.
973
* h2load: Reconnect server on connection: close.
974
* h2load: Don't exit in the case of no ALPN protocol overlap.
975
* integration: Update go's http2 package URI.
976
- Add missing baselibs.conf.
977
- Add nghttp2-1.4.0-fix-tests.patch from commit 4825009.
978
- Small spec cleanup.
979
980
-------------------------------------------------------------------
981
Sun Sep 27 12:38:17 UTC 2015 - mpluskal@suse.com
982
983
- Update to 1.3.4
984
* Make traditional init script fail if new config file is broken
985
(Patch from Janusz Dziemidowicz)
986
* nghttpx-logrotate: Don't use killall since we have multiple
987
processes
988
* nghttpx: Fix improper signal handling
989
- Changes for 1.3.3
990
* Fix bug in padding handling of DATA frame
991
* Use hash table for dynamic table lookup
992
* More warning flags for --enable-werror
993
* Update mruby
994
* h2load: HTTP/1.1 support (Patch from Lucas Pardue)
995
* nghttpx: Do not try to set TCP_NODELAY when frontend is an
996
UNIX socket (Patch from Janusz Dziemidowicz)
997
* nghttpx: Chown UNIX domain socket to user specified as --user
998
* nghttpx: Split monolithic one process into control and worker
999
processes
1000
* nghttpx: Handle SSL/TLS data following PROXY protocol line
1001
- Changes for 1.3.2
1002
* Check header block limit after new stream is opened
1003
* nghttp: Show error if HEADERS frame cannot be sent for
1004
whatever reason
1005
* nghttpx: Fix assertion failure on TLS handshake
1006
* nghttpx: Add x-http2-push header field for pushed resource
1007
* nghttpx: Fix compile error with --disable-threads
1008
1009
-------------------------------------------------------------------
1010
Mon Sep 14 13:33:16 UTC 2015 - mpluskal@suse.com
1011
1012
- Update to 1.3.1
1013
* Avoid usage of typeof and replace __builtin_offsetof with
1014
offsetof
1015
* Honor stream->weight even if stream->last_writelen is 0
1016
* Compile third-party libraries if hpack-tools is enabled
1017
* nghttpx-init: Start nghttpx with --daemon
1018
* Bundle sphinxcontrib.rubydomain https://bitbucket.org/birkenfeld/sphinx-contrib/src/default/rubydomain/
1019
* Bundle mruby
1020
* h2load: Record TTFB on first byte of response body, rather
1021
than first socket read
1022
* h2load: Improve checking for timing script input, prevent
1023
false positive in certain situations
1024
* nghttpx: Implement PROXY protocol version 1
1025
(--accept-proxy-protocol option)
1026
* nghttpx: Allow link header server push for HTTP/2 backend
1027
as well
1028
* nghttpx: Don't initiate push if client disabled push
1029
* nghttpx: Allow absolute URI in Link header field for push
1030
* nghttpx: Fix crash with multi workers and QUIT signal
1031
* nghttpx: Add mruby support which is disabled by default
1032
(use --with-mruby configure option to enable it)
1033
* nghttpx: Drop connection before TLS finish if h2 requirement
1034
is not fulfilled
1035
- Fix typo in previous changelog entry
1036
1037
-------------------------------------------------------------------
1038
Tue Sep 1 06:59:43 UTC 2015 - mpluskal@suse.com
1039
1040
- Update to 1.3.1
1041
* Limit the number of incoming reserved (remote) streams
1042
* Add stream public API
1043
* Rewrite priority tree handling
1044
* Fix parallel make distcheck
1045
* Define it and itprep recursive target if
1046
AM_EXTRA_RECURSIVE_TARGETS is defined
1047
* fetch-ocsp-response: Handle spurious openssl exist status 0
1048
* nghttpx: Use nghttp2::ssl::DEFAULT_CIPHER_LIST for backend TLS
1049
connection
1050
* nghttpx: Don't allow blacked listed cipher suites for HTTP/2
1051
connection
1052
* nghttpx: better handle /dev/stderr and /dev/stdout (Patch from
1053
Tomasz Buchert)
1054
* nghttpd: GOAWAY if SSL/TLS requirements for HTTP/2 are not met
1055
* nghttpd: Return date header field for 304
1056
* nghttpd: Support HEAD request
1057
* h2load: Add Timing-script and base URI support (Patch from
1058
Lucas Pardue)
1059
* h2load: Add timeout options (Patch from Nora)
1060
- Fix typo in changelog
1061
1062
-------------------------------------------------------------------
1063
Mon Aug 17 10:51:27 UTC 2015 - mpluskal@suse.com
1064
1065
- Update to 1.2.1
1066
* doc: Reword the HPACK tutorial (Patch from Tom Harwood)
1067
* nghttpx: Fix stability issues
1068
* h2load: Fix crash if -r > -n
1069
1070
-------------------------------------------------------------------
1071
Mon Aug 10 14:10:20 UTC 2015 - mpluskal@suse.com
1072
1073
- Update to 1.2.0
1074
* Fix crash if response or data is submitted to closing stream
1075
* Header table size UINT32_MAX must be accepted
1076
* Use PROTOCOL_ERROR against DATA sent to idle stream
1077
* Allow multiple in-flight SETTINGS
1078
* Strictly check occurrence of dynamic table size update
1079
* Fix configure warning that 'missing' is missing or too old
1080
* Fix rm: cannot remove ‘*.rst’: No such file or directory when
1081
"make clean" (Patch from Alexis La Goutte)
1082
* doc: Reword some of the server and client tutorial (Patch
1083
from Tom Harwood)
1084
* src: Remove monotonic_clock replacement macro for gcc-4.6
1085
* nghttpx: Add TLS ticket key sharing among nghttpx instances
1086
using memcached
1087
* nghttpx: Add shared session cache using memcached
1088
* nghttpx: Set SSL/TLS session timeout to 12 hours
1089
* nghttpx: Enable session resumption on HTTP/2 backend
1090
* nghttpx: Don't rewrite host header field by default
1091
* nghttpx: Generate new ticket key every 1hr and its life time
1092
is now 12hrs
1093
* nghttpx: Don't reuse backend connection if it is not clean
1094
* nghttpx: Add AES-256-CBC encryption for TLS session ticket
1095
* nghttpd: Fix the bug that 304 response has non-empty body
1096
* h2load: Add -r and -C options to h2load (Patch from
1097
Nora Shoemaker)
1098
- Changes for 1.1.2
1099
* Fix linker error with libnghttp2_asio
1100
* Allow custom installation location for Python bindings
1101
- Drop no longer needed missing_nghttp2_timegm.patch
1102
1103
-------------------------------------------------------------------
1104
Thu Jul 16 06:58:40 UTC 2015 - mpluskal@suse.com
1105
1106
- Update to 1.1.1
1107
* nghttpx: Fix various stability issues and memory leak bug
1108
- Changes for 1.1.0
1109
* Fix DATA is not consumed if nghttp2_http_on_data_chunk failed
1110
* nghttp2_submit_response and nghttp2_submit_headers may return
1111
* NGHTTP2_ERR_DATA_EXIST
1112
* msvc build fixes and enchantments (Patch from Gabi Davar)
1113
* Compile with IRIX gcc-4.7 (Patch from Klaus Ziegler)
1114
* nghttp: Add --max-concurrent-streams option
1115
* nghttp: Add comment on HAR on pushed objects (Patch from
1116
acesso)
1117
* nghttpx: Add --include option to read additional configuration
1118
from given file
1119
* nghttpx: Add backend routing based on request host and path by
1120
extending -b option
1121
* nghttpx: Allow log variable to be enclosed by curly braces for
1122
disambiguation
1123
* nghttpx: Add log variables related to SSL/TLS connection
1124
* h2load: Add --ciphers option
1125
- Add patches
1126
* missing_nghttp2_timegm.patch to fix building of asio library
1127
* nghttp2-remove-python-build.patch to fix python bindings
1128
installation when autotools are used
1129
1130
-------------------------------------------------------------------
1131
Tue Jun 30 11:54:06 UTC 2015 - mpluskal@suse.com
1132
1133
- Update to 1.0.5
1134
* Add STREAM_DEP_DEBUG macro switch to enable runtime validation
1135
of depedency tree
1136
* Fix another bug in priority handling; sibling's item is not
1137
queued when ancestor's item is detached
1138
* nghttpx: Fix crash with --http2-bridge and both frontend and
1139
backend TLS
1140
1141
-------------------------------------------------------------------
1142
Wed Jun 24 10:52:12 UTC 2015 - mpluskal@suse.com
1143
1144
- Update to 1.0.4
1145
* Fix assertion failure in stream_update_dep_on_detach_item
1146
(GH-264)
1147
- Changes for 1.0.3
1148
* Fix bug that idle self-depending PRIORITY is not handled
1149
gracefully
1150
* Optimize dependency based priority code to Firefox style tree
1151
* enable third-party for asio_lib too (Patch from Mike
1152
Frysinger)
1153
* fetch-ocsp-response: Support LibreSSL, and include port in
1154
ocsp_host
1155
* src: Support compile with LibreSSL
1156
* nghttpx: Fix bug that x-forwarded-proto header field does not
1157
reflect frontend scheme on HTTP/2 backend
1158
* nghttpx: Validate :path on SPDY frontend
1159
1160
-------------------------------------------------------------------
1161
Tue Jun 16 08:27:32 UTC 2015 - mpluskal@suse.com
1162
1163
- Update to 1.0.2
1164
* Fix bug that data are not consumed for connection in race
1165
condition (GH-253)
1166
* Define NGHTTP2_EXTERN to __declspec(dllimport) when using
1167
nghttp2 for Windows build
1168
* Translate fetch-ocsp-response into Python
1169
* libevent-client: Fix bug that path is broken if URI does not
1170
contain path part
1171
* python: Call on_close callback when connection is lost for
1172
server session
1173
* python: Expose client certificate, if available (Patch from
1174
Fabian Wiesel)
1175
* python: Catch and log failure to set TCP_NODELAY (Patch from
1176
Fabian Wiesel)
1177
* nghttpx: Add --add-request-header option
1178
* nghttpx: Make WebSocket upgrade work
1179
* nghttpx: Fix bug that END_STREAM is not set in backend for
1180
POST with Upgrade
1181
* nghttpx: Don't send "Expect" header field twice
1182
1183
-------------------------------------------------------------------
1184
Mon May 25 15:13:45 UTC 2015 - mpluskal@suse.com
1185
1186
- Update to 1.0.1
1187
* Include stdint.h instead of inttypes.h when compiled with MSVC
1188
< 2013
1189
* Fix invalid memory free on out-of-memory handling
1190
* integration: Use our own copy of golang spdy package
1191
* android: Don't link zlib bundled with android NDK
1192
* Dockerfile.android: Update NDK ver, and ubuntu; build and link
1193
zlib
1194
* src, examples: Fix up OpenSSL initialization
1195
* nghttpx: Allow HTTP Upgrade from POST request if response
1196
header has not been sent to the client
1197
* nghttpx: Fix bug that PUSH_PROMISE is sent after associated
1198
response HEADERS
1199
* nghttpd: Close connection after settings timeout and GOAWAY
1200
was sent
1201
* h2load: Fix bug that NPN fails if ALPN is enabled
1202
1203
-------------------------------------------------------------------
1204
Thu May 21 06:50:36 UTC 2015 - mpluskal@suse.com
1205
1206
- Update to 1.0.0
1207
* v1.0.0 introduced backward incompatible changes from 0.7
1208
series. Read https://nghttp2.org/documentation/package_README.html#migration-from-v0-7-15-or-earlier
1209
to migrate from older version to this latest version.
1210
- Changes for 0.7.15
1211
* Hopefully, this is the last release for 0.7.x series.
1212
Development continues in 1.x series.
1213
* Access violation in buffers (GH-232) (Patch from Etienne Cimon)
1214
* Retry finding jemalloc lib by je_malloc_stats_print (GH-233)
1215
* inflatehd: Fix crash if 'wire' value is not string (GH-235)
1216
* nghttpx: Revert 585af93 to fix crash with TLS (GH-234)
1217
* nghttpd: Add --echo-upload option to send back request body
1218
1219
-------------------------------------------------------------------
1220
Wed May 13 13:07:14 UTC 2015 - mpluskal@suse.com
1221
1222
- Update to 0.7.14
1223
* Fix global-buffer-overflow in HPACK code
1224
* Fix doc for nghttp2_select_next_protocol
1225
* Fix bug that promised stream was not reset on decompression
1226
error
1227
* Add systemd and upstart configuration file for nghttpx
1228
(Patch from Zhuoyun Wei)
1229
* Improve nghttpx logrotate configuration file (Patch from
1230
Zhuoyun Wei)
1231
* Update sphinx_rtd_theme
1232
* h2load: Update h2load to give connect time and ttfb stats
1233
(Patch from ericcarlschwartz)
1234
* nghttpd: Add -m, --max-concurrent-streams option
1235
* nghttpx: Log absolute URI for HTTP/2 or client proxy request
1236
* nghttpx: Add --header-field-buffer and --max-header-fields
1237
options
1238
* nghttp: Fix assertion error if very large value is given to -t
1239
1240
-------------------------------------------------------------------
1241
Fri May 1 13:47:12 UTC 2015 - mpluskal@suse.com
1242
1243
- Update to 0.7.13
1244
* Fix bug that promised stream was not reset by returning
1245
NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE from
1246
nghttp2_on_header_callback. Instead, associated stream was reset.
1247
* Allow NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE from
1248
nghttp2_on_begin_headers_callback
1249
* h2load: Effectively disable flow control by setting large
1250
window size
1251
* asio: Graceful shutdown and joinable server (Patch from
1252
Xiaoguang Sun)
1253
1254
-------------------------------------------------------------------
1255
Mon Apr 20 08:40:33 UTC 2015 - mpluskal@suse.com
1256
1257
- Update to 0.7.12
1258
* Fix bug that nghttp2_session_set_next_stream_id accepts invalid
1259
stream_id
1260
* HPACK: Rewrite static header table handling
1261
* HPACK: Never index authorization and small cookie header field
1262
* Don't install libnghttp2_asio headers if they are disabled
1263
* doc: Specify program directive so that hyperlink to option is
1264
correctly pointed to the intended location
1265
* asio: client: Call error_cb on error occurred in do_read and
1266
do_write (Fixes GH-207)
1267
* nghttp: Add --no-push option to disable server push
1268
* nghttp: Show stream ID in statistics output
1269
* nghttp: Remove --dep-idle option
1270
* nghttp: Use same priority anchor nodes as Firefox does
1271
* nghttpx: Don't push resource if link header has non empty
1272
loadpolicy
1273
* nghttpx: Add logging for somewhat important events (logs,
1274
tickets, and ocsp)
1275
* nghttpx: Set Downstream to stream user data on HTTP Upgrade
1276
to h2
1277
1278
-------------------------------------------------------------------
1279
Sun Apr 12 17:38:36 UTC 2015 - mpluskal@suse.com
1280
1281
- Update to 0.7.11
1282
* nghttpx: Fix waitpid race condition in ocsp response update
1283
* nghttp: Consider user-provided :authority header field for SNI
1284
as well as host header field
1285
- Changes for 0.7.10
1286
* Make sure that nghttp2 license is MIT license
1287
* Add nghttp2_session_consume_{connection,stream} to consume
1288
bytes independent
1289
* Add nghttp2_send_data_callback to send DATA payload without
1290
copying "static inline" fix for build with VS2013 (Patch from
1291
Remo E)
1292
* Update lib/Makefile.msvc (Patch from Remo E)
1293
* Remove dependency on libws2_32 on Windows build
1294
* Define NGHTTP2_EXTERN macro to export function for Windows
1295
build
1296
* doc: Generate API doc per function
1297
* python: Add async body generation support
1298
* python: Fix pseudo-header field ordering bug
1299
* nghttpx: Redirect stderr to errorlog file
1300
* nghttpx: Fix bug that data buffered in SSL object are not
1301
read
1302
* nghttpx: Remove --tls-ctx-per-worker option
1303
* nghttpx: Add OCSP stapling feature
1304
1305
-------------------------------------------------------------------
1306
Sat Apr 4 16:55:55 UTC 2015 - mpluskal@suse.com
1307
1308
- Enable python bindings
1309
- Update to 0.7.9
1310
* Implements h2-14 protocol (http://tools.ietf.org/html/draft-ietf-httpbis-http2-14)
1311
* Implements HPACK 09 (http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09)
1312
* h2load: Fix crash if -t > -c
1313
* h2load: Add -d option to upload data to server
1314
* nghttpx: Forward only "trailers" keyword in te when forwarding HTTP/2 backend
1315
* nghttpx: Fix PUSH_PROMISE header field corruption [GH-194]
1316
* nghttpx: Fix te header field is duplicated when forwarding HTTP/2 backend
1317
* nghttp, nghttpd: Add --hexdump option to hexdump incoming traffic.
1318
* examples: Place AM_CPPFLAGS first to use in-package header files first [GH-192]
1319
- Changes for 0.7.8
1320
* Implements h2-14 protocol (http://tools.ietf.org/html/draft-ietf-httpbis-http2-14)
1321
* Implements HPACK 09 (http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09)
1322
* Validate :path header field for http or https URI scheme
1323
* NULL-terminate header field name and value presented by callback
1324
* README.rst: Cleaned up the grammar a bit (Patch from Ross Smith II)
1325
* h2load: fix for segfault by reserving correct worker count (Patch from Stefan Eissing)
1326
1327
-------------------------------------------------------------------
1328
Wed Mar 18 21:29:49 UTC 2015 - jengelh@inai.de
1329
1330
- Avoid shipping documentation redundantly. Set RPM groups.
1331
1332
-------------------------------------------------------------------
1333
Fri Mar 6 18:19:47 UTC 2015 - mpluskal@suse.com
1334
1335
- Fix rpm group
1336
1337
-------------------------------------------------------------------
1338
Tue Mar 3 22:15:13 UTC 2015 - mpluskal@suse.com
1339
1340
- Update to 0.7.5
1341
* Implements h2-14 protocol
1342
(http://tools.ietf.org/html/draft-ietf-httpbis-http2-14)
1343
* Implements HPACK 09
1344
(http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09)
1345
* Validate HTTP semantics by default
1346
* Add nghttp2_option_set_no_http_messaging() API function
1347
* Update http-parser
1348
* nghttp, nghttpd, nghttpx: Use "sensitive" to indicate
1349
"never indexed" header field
1350
* nghttp, nghttpd, nghttpx, h2load: Select/announce h2 in
1351
ALPN/NPN
1352
* nghttp: Fix unaligned field output in --stat
1353
* nghttp: Fix -H does not work with -u upgrade request
1354
* nghttp: Update resource timing terminology according to
1355
Resource Timing TR
1356
* nghttpd: Add -a option which takes an address parameter that
1357
allows nghttpd to bind to a non-default address. Patch
1358
from Brian Card
1359
* nghttpx: Use omit minor version in case of HTTP/2 in via
1360
header and access log
1361
* nghttpx: Support UNIX domain socket on both frontend and backend
1362
* nghttpx: Fix crash in http/1 backend when backend returns more
1363
bytes than CL
1364
* nghttpx: Cast configuration value to rlim_t to avoid compile
1365
error on 32bit
1366
* nghttpx: Fix 1 second delay in HTTP/2 backend connection
1367
* nghttpx: Fix request re-submission bug in HTTP/2 backend
1368
* asio-sv2: Fix compile error with OS X
1369
1370
-------------------------------------------------------------------
1371
Sun Feb 15 11:00:12 UTC 2015 - mpluskal@suse.com
1372
1373
- Initial packaging of 0.7.4
1374
1375