mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
[RELEASE] released 1.3.4
Released 1.3.4 with the following major changes :
- support for cttproxy on the server side to present the client
address to the server.
- added support for SO_REUSEPORT on Linux (needs kernel patch)
- new RFC2616-compliant HTTP request parser with header indexing
- split proxies in frontends, rulesets and backends
- implemented the 'req[i]setbe' to select a backend depending
on the contents
- added the 'default_backend' keyword to select a default BE.
- new stats page featuring FEs and BEs + bytes in both dirs
- improved log format to indicate the backend and the time in ms.
- lots of cleanups
This commit is contained in:
parent
35d66b0c28
commit
6620dbb47a
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
|
@ -96,7 +96,9 @@ DEFINE = -DTPROXY
|
|||
|
||||
# Now let's determine the version, sub-version and release date.
|
||||
# If we're in the GIT tree, we can use the last commit's version and date.
|
||||
ifeq ($(IGNOREGIT),)
|
||||
VERSION := $(shell [ -d .git/. ] && ref=$$(git-describe --tags 2>/dev/null) && ref=$${ref%-g*} && echo "$${ref\#v}" )
|
||||
endif
|
||||
|
||||
ifneq ($(VERSION),)
|
||||
# OK git is there and works.
|
||||
|
|
@ -105,9 +107,9 @@ VERDATE := $(shell date +%Y/%m/%d -d "$$(git-log HEAD^.. 2>/dev/null | grep ^Dat
|
|||
else
|
||||
# Otherwise, use the hard-coded version of last tag, number of changes
|
||||
# since last tag, and release date.
|
||||
VERSION := 1.3.3
|
||||
SUBVERS := -36
|
||||
VERDATE := 2006/12/23
|
||||
VERSION := 1.3.4
|
||||
SUBVERS :=
|
||||
VERDATE := 2007/01/02
|
||||
endif
|
||||
|
||||
#### build options
|
||||
|
|
|
|||
Loading…
Reference in a new issue