Skip to content

Commit

Permalink
[RELEASE] Released version 1.8.13
Browse files Browse the repository at this point in the history
Released version 1.8.13 with the following main changes :
    - MINOR: systemd: consider exit status 143 as successful
    - BUG/MINOR: ssl: properly ref-count the tls_keys entries
    - MINOR: mux: add a "show_fd" function to dump debugging information for "show fd"
    - MINOR: h2: implement a basic "show_fd" function
    - BUG/MINOR: h2: remove accidental debug code introduced with show_fd function
    - MINOR: h2: keep a count of the number of conn_streams attached to the mux
    - MINOR: h2: add the mux and demux buffer lengths on "show fd"
    - BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
    - BUG/MEDIUM: h2: never leave pending data in the output buffer on close
    - BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
    - BUG/MINOR: http: Set brackets for the unlikely macro at the right place
    - BUILD: Generate sha256 checksums in publish-release
    - MINOR: debug: Add check for CO_FL_WILL_UPDATE
    - MINOR: debug: Add checks for conn_stream flags
    - BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
    - MINOR: h2: add the error code and the max/last stream IDs to "show fd"
    - BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
    - BUG/MEDIUM: stats: don't ask for more data as long as we're responding
    - BUG/MINOR: servers: Don't make "server" in a frontend fatal.
    - BUG/MEDIUM: threads/sync: use sched_yield when available
    - BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
    - BUG/MINOR: config: stick-table is not supported in defaults section
    - BUG/MINOR: threads: Handle nbthread == MAX_THREADS.
    - BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
    - MINOR: threads: move "nbthread" parsing to hathreads.c
    - BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
    - MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed
    - SCRIPTS: git-show-backports: add missing quotes to "echo"
  • Loading branch information
wtarreau committed Jul 30, 2018
1 parent 8dcf957 commit ada31af
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG
@@ -1,6 +1,36 @@
ChangeLog :
===========

2018/07/30 : 1.8.13
- MINOR: systemd: consider exit status 143 as successful
- BUG/MINOR: ssl: properly ref-count the tls_keys entries
- MINOR: mux: add a "show_fd" function to dump debugging information for "show fd"
- MINOR: h2: implement a basic "show_fd" function
- BUG/MINOR: h2: remove accidental debug code introduced with show_fd function
- MINOR: h2: keep a count of the number of conn_streams attached to the mux
- MINOR: h2: add the mux and demux buffer lengths on "show fd"
- BUG/MEDIUM: h2: don't accept new streams if conn_streams are still in excess
- BUG/MEDIUM: h2: never leave pending data in the output buffer on close
- BUG/MEDIUM: h2: make sure the last stream closes the connection after a timeout
- BUG/MINOR: http: Set brackets for the unlikely macro at the right place
- BUILD: Generate sha256 checksums in publish-release
- MINOR: debug: Add check for CO_FL_WILL_UPDATE
- MINOR: debug: Add checks for conn_stream flags
- BUG/MEDIUM: threads: Fix the exit condition of the thread barrier
- MINOR: h2: add the error code and the max/last stream IDs to "show fd"
- BUG/MEDIUM: stream-int: don't immediately enable reading when the buffer was reportedly full
- BUG/MEDIUM: stats: don't ask for more data as long as we're responding
- BUG/MINOR: servers: Don't make "server" in a frontend fatal.
- BUG/MEDIUM: threads/sync: use sched_yield when available
- BUG/MEDIUM: h2: prevent orphaned streams from blocking a connection forever
- BUG/MINOR: config: stick-table is not supported in defaults section
- BUG/MINOR: threads: Handle nbthread == MAX_THREADS.
- BUG/MEDIUM: threads: properly fix nbthreads == MAX_THREADS
- MINOR: threads: move "nbthread" parsing to hathreads.c
- BUG/MEDIUM: threads: unbreak "bind" referencing an incorrect thread number
- MEDIUM: proxy_protocol: Convert IPs to v6 when protocols are mixed
- SCRIPTS: git-show-backports: add missing quotes to "echo"

2018/06/27 : 1.8.12
- BUG/MAJOR: stick_table: Complete incomplete SEGV fix
- MINOR: stick-tables: make stktable_release() do nothing on NULL
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -3,7 +3,7 @@
----------------------
version 1.8
willy tarreau
2018/06/27
2018/07/30


1) How to build it
Expand Down
2 changes: 1 addition & 1 deletion VERDATE
@@ -1,2 +1,2 @@
$Format:%ci$
2018/06/27
2018/07/30
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.8.12
1.8.13
2 changes: 1 addition & 1 deletion doc/configuration.txt
Expand Up @@ -4,7 +4,7 @@
----------------------
version 1.8
willy tarreau
2018/06/27
2018/07/30


This document covers the configuration language as implemented in the version
Expand Down
5 changes: 4 additions & 1 deletion examples/haproxy.spec
@@ -1,6 +1,6 @@
Summary: HA-Proxy is a TCP/HTTP reverse proxy for high availability environments
Name: haproxy
Version: 1.8.12
Version: 1.8.13
Release: 1
License: GPL
Group: System Environment/Daemons
Expand Down Expand Up @@ -74,6 +74,9 @@ fi
%attr(0755,root,root) %config %{_sysconfdir}/rc.d/init.d/%{name}

%changelog
* Mon Jul 30 2018 Willy Tarreau <w@1wt.eu>
- updated to 1.8.13

* Wed Jun 27 2018 William Lallemand <wlallemand@haproxy.org>
- updated to 1.8.12

Expand Down

0 comments on commit ada31af

Please sign in to comment.