m6w6/ext-http
6 years agoMerge pull request #70 from mhei/fix_register_null_strings
Michael Wallner [Wed, 7 Jun 2017 06:07:32 +0000 (08:07 +0200)] 
Merge pull request #70 from mhei/fix_register_null_strings

Handle NULL strings gracefully during constant registration

6 years agoHandle NULL strings gracefully during constant registration 70/head
Michael Heimpold [Sun, 4 Jun 2017 13:00:33 +0000 (15:00 +0200)] 
Handle NULL strings gracefully during constant registration

When libcurl is compiled not using e.g. libz or SSL, then a call to
curl_version_info could return NULL in the corresponding fields of
curl_version_info_data.

Passing such NULL pointers down to REGISTER_NS_STRING_CONSTANT results
in a segfault during php startup, so let's check for this special case
and register a NULL constant in this case.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
7 years agofix #68
Michael Wallner [Tue, 4 Apr 2017 19:05:21 +0000 (21:05 +0200)] 
fix #68

7 years agofix #66 & fix #67
Michael Wallner [Tue, 4 Apr 2017 18:48:42 +0000 (20:48 +0200)] 
fix #66 & fix #67

7 years agoclean up test
Michael Wallner [Tue, 4 Apr 2017 11:38:11 +0000 (13:38 +0200)] 
clean up test

7 years agoFixed issue #63
Michael Wallner [Tue, 4 Apr 2017 11:35:18 +0000 (13:35 +0200)] 
Fixed issue #63

Use urldecode instead of raw_urldecode in http_params

7 years agocurl: fix gnutls include
Michael Wallner [Tue, 4 Apr 2017 09:53:08 +0000 (11:53 +0200)] 
curl: fix gnutls include

7 years agoadministrativa
Michael Wallner [Tue, 4 Apr 2017 07:21:56 +0000 (09:21 +0200)] 
administrativa

7 years agoFix issue #65
Michael Wallner [Tue, 4 Apr 2017 07:09:20 +0000 (09:09 +0200)] 
Fix issue #65

http\Client::enqueue(): Could not enqueue request: The easy handle
is already added to a multi handle (@rcanavan, Mike)

7 years ago3.1.1dev
Michael Wallner [Tue, 4 Apr 2017 07:09:11 +0000 (09:09 +0200)] 
3.1.1dev

7 years agoTODO: crash--; leaks++;
Michael Wallner [Tue, 31 Jan 2017 14:13:19 +0000 (15:13 +0100)] 
TODO: crash--; leaks++;

7 years agoavoid COW violation
Michael Wallner [Mon, 30 Jan 2017 15:16:26 +0000 (16:16 +0100)] 
avoid COW violation

7 years agofix opcache weirdance
Michael Wallner [Mon, 30 Jan 2017 15:16:04 +0000 (16:16 +0100)] 
fix opcache weirdance

7 years agoavoid COW violation
Michael Wallner [Mon, 30 Jan 2017 11:41:03 +0000 (12:41 +0100)] 
avoid COW violation

7 years agoderef
Michael Wallner [Mon, 30 Jan 2017 11:40:36 +0000 (12:40 +0100)] 
deref

7 years agoseparate input hashtables to avoid string memleaks
Michael Wallner [Tue, 24 Jan 2017 10:54:57 +0000 (11:54 +0100)] 
separate input hashtables to avoid string memleaks

7 years agofix querystring object conversion on master
Michael Wallner [Tue, 24 Jan 2017 07:38:58 +0000 (08:38 +0100)] 
fix querystring object conversion on master

7 years agoUse ntohl instead of doing LE conversion yourself 60/head
Ondřej Surý [Mon, 23 Jan 2017 09:39:48 +0000 (10:39 +0100)] 
Use ntohl instead of doing LE conversion yourself

7 years agoconfigure: fix -Werror builds
Michael Wallner [Tue, 13 Dec 2016 09:10:09 +0000 (10:10 +0100)] 
configure: fix -Werror builds

7 years agofix build
Remi Collet [Mon, 12 Dec 2016 12:49:33 +0000 (13:49 +0100)] 
fix build

7 years agorelease 3.1.0 RELEASE_3_1_0
Michael Wallner [Mon, 12 Dec 2016 09:02:56 +0000 (10:02 +0100)] 
release 3.1.0

+ Added http\Client\Curl\User interface for userland event loops
+ Added http\Url::IGNORE_ERRORS, http\Url::SILENT_ERRORS and
  http\Url::STDFLAGS
+ Added http\Client::setDebug(callable $debug)
+ Added http\Client\Curl\FEATURES constants and namespace
+ Added http\Client\Curl\VERSIONS constants and namespace
+ Added share_cookies and share_ssl (libcurl >= 7.23.0) options to
  http\Client::configure()
+ http\Client uses curl_share handles to properly share cookies and
  SSL/TLS sessions between requests
+ Improved configure checks for default CA bundles
+ Improved negotiation precision
* Fixed regression introduced by http\Params::PARSE_RFC5987: negotiation
  using the params parser would receive param keys without the trailing
  asterisk, stripped by http\Params::PARSE_RFC5987.
* Fix gh-issue #50: http\Client::dequeue() within
  http\Client::setDebug() causes segfault (Mike, Maik Wagner)
* Fix gh-issue #47: http\Url: Null pointer deref in sanitize_value()
  (Mike, @rc0r)
* Fix gh-issue #45: HTTP/2 response message parsing broken with
  libcurl >= 7.49.1 (Mike)
* Fix gh-issue #43: Joining query with empty original variable in query
  (Mike, Sander Backus)
* Fix gh-issue #42: fatal error when using punycode in URLs
  (Mike, Sebastian Thielen)
* Fix gh-issue #41: Use curl_version_info_data.features when
  initializing options (Mike)
* Fix gh-issue #40: determinde the SSL backend used by curl at runtime
  (Mike, @rcanavan)
* Fix gh-issue #39: Notice: http\Client::enqueue(): Could not set option
  proxy_service_name (Mike, @rcanavan)
* Fix gh-issue #38: Persistent curl handles: error code not properly
  reset (Mike, @afflerbach)
* Fix gh-issue #36: Unexpected cookies sent if persistent_handle_id is
  used (Mike, @rcanavan, @afflerbach)
* Fix gh-issue #34: allow setting multiple headers with the same name
  (Mike, @rcanavan)
* Fix gh-issue #33: allow setting prodyhost request option to NULL
  (Mike, @rcanavan)
* Fix gh-issue #31: add/improve configure checks for default
  CA bundle/path (Mike, @rcanavan)

Changes from beta1:
* Fixed recursive calls to the event loop dispatcher

Changes from beta2:
+ Improved configure checks for IDNA libraries (added
  --with-http-libicu-dir, --with-http-libidnkit{,2}-dir,
  --with-http-libidn2-dir)
* Fix bug #73055: crash in http\QueryString (Mike, @rc0r)
  (CVE-2016-7398)
* Fix bug #73185: Buffer overflow in HTTP parse_hostinfo() (Mike, @rc0r)
  (CVE-2016-7961)
* Fix HTTP/2 version parser for older libcurl versions (Mike)
* Fix gh-issue #52: Underscores in host names: libidn Failed to parse
  IDN (Mike, @canavan)

7 years agoprepare 3.1.0
Michael Wallner [Mon, 12 Dec 2016 07:36:14 +0000 (08:36 +0100)] 
prepare 3.1.0

7 years agoignore new headers in root
Michael Wallner [Mon, 12 Dec 2016 07:30:01 +0000 (08:30 +0100)] 
ignore new headers in root

7 years agotypo
Michael Wallner [Mon, 12 Dec 2016 07:28:59 +0000 (08:28 +0100)] 
typo

7 years agoprepare 2.6.0
Michael Wallner [Mon, 12 Dec 2016 07:27:41 +0000 (08:27 +0100)] 
prepare 2.6.0

7 years agofix ICU ifdefs
Michael Wallner [Fri, 21 Oct 2016 08:50:42 +0000 (10:50 +0200)] 
fix ICU ifdefs

7 years agoMerge pull request #57 from m6w6/lc-utf8
Michael Wallner [Fri, 7 Oct 2016 10:34:54 +0000 (12:34 +0200)] 
Merge pull request #57 from m6w6/lc-utf8

avoid skipping test when current locale is C

7 years agoavoid skipping test when current locale is C 57/head
Remi Collet [Fri, 7 Oct 2016 07:25:34 +0000 (09:25 +0200)] 
avoid skipping test when current locale is C

7 years agoMerge pull request #56 from m6w6/Fix-3-0-1-Windows-build
Michael Wallner [Fri, 7 Oct 2016 05:58:04 +0000 (07:58 +0200)] 
Merge pull request #56 from m6w6/Fix-3-0-1-Windows-build

Fixed #55 VC14 Windows build

7 years agoEnable libicu (IDNA2008/IDNA2003) 56/head
Jan-E [Fri, 7 Oct 2016 01:48:45 +0000 (03:48 +0200)] 
Enable libicu (IDNA2008/IDNA2003)

https://github.com/m6w6/ext-http/issues/55 Add PHP_HTTP_HAVE_LIBICU support

7 years agoSome further AC_DEFINE's
Jan-E [Thu, 6 Oct 2016 09:41:59 +0000 (11:41 +0200)] 
Some further AC_DEFINE's

Additional changes cf https://github.com/m6w6/ext-http/issues/55

7 years agoFixed #55 VC14 Windows build
Jan-E [Wed, 5 Oct 2016 21:55:49 +0000 (23:55 +0200)] 
Fixed #55 VC14 Windows build

Fix for https://github.com/m6w6/ext-http/issues/55

7 years agofix build with GCC-4
Michael Wallner [Wed, 5 Oct 2016 11:15:28 +0000 (13:15 +0200)] 
fix build with GCC-4

closes #54

7 years agofix tests
Michael Wallner [Wed, 5 Oct 2016 11:14:50 +0000 (13:14 +0200)] 
fix tests

7 years agofix build issues with SSL, NSS etc.
Michael Wallner [Wed, 5 Oct 2016 11:13:55 +0000 (13:13 +0200)] 
fix build issues with SSL, NSS etc.

close #53

7 years agoCVE number is known now
Michael Wallner [Wed, 5 Oct 2016 06:24:13 +0000 (08:24 +0200)] 
CVE number is known now

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 5 Oct 2016 06:23:19 +0000 (08:23 +0200)] 
Merge branch 'v2.6.x'

7 years agoCVE number is known now
Michael Wallner [Wed, 5 Oct 2016 06:19:41 +0000 (08:19 +0200)] 
CVE number is known now

7 years agorelease 3.1.0RC1 RELEASE_3_1_0_RC1
Michael Wallner [Tue, 4 Oct 2016 15:46:01 +0000 (17:46 +0200)] 
release 3.1.0RC1

+ Added http\Client\Curl\User interface for userland event loops
+ Added http\Url::IGNORE_ERRORS, http\Url::SILENT_ERRORS and
http\Url::STDFLAGS
+ Added http\Client::setDebug(callable $debug)
+ Added http\Client\Curl\FEATURES constants and namespace
+ Added http\Client\Curl\VERSIONS constants and namespace
+ Added share_cookies and share_ssl (libcurl >= 7.23.0) options to
http\Client::configure()
+ http\Client uses curl_share handles to properly share cookies and
SSL/TLS sessions between requests
+ Improved configure checks for default CA bundles
+ Improved negotiation precision
* Fixed regression introduced by http\Params::PARSE_RFC5987: negotiation
using the params parser would receive param keys without the trailing
asterisk, stripped by http\Params::PARSE_RFC5987.
* Fix gh-issue #50: http\Client::dequeue() within
http\Client::setDebug() causes segfault (Mike, Maik Wagner)
* Fix gh-issue #47: http\Url: Null pointer deref in sanitize_value()
(Mike, @rc0r)
* Fix gh-issue #45: HTTP/2 response message parsing broken with libcurl
>= 7.49.1 (Mike)
* Fix gh-issue #43: Joining query with empty original variable in query
(Mike, Sander Backus)
* Fix gh-issue #42: fatal error when using punycode in URLs (Mike,
Sebastian Thielen)
* Fix gh-issue #41: Use curl_version_info_data.features when
initializing options (Mike)
* Fix gh-issue #40: determinde the SSL backend used by curl at runtime
(Mike, @rcanavan)
* Fix gh-issue #39: Notice: http\Client::enqueue(): Could not set option
proxy_service_name (Mike, @rcanavan)
* Fix gh-issue #38: Persistent curl handles: error code not properly
reset (Mike, @afflerbach)
* Fix gh-issue #36: Unexpected cookies sent if persistent_handle_id is
used (Mike, @rcanavan, @afflerbach)
* Fix gh-issue #34: allow setting multiple headers with the same name
(Mike, @rcanavan)
* Fix gh-issue #33: allow setting prodyhost request option to NULL
(Mike, @rcanavan)
* Fix gh-issue #31: add/improve configure checks for default CA
bundle/path (Mike, @rcanavan)

Changes from beta1:
* Fixed recursive calls to the event loop dispatcher

Changes from beta2:
+ Improved configure checks for IDNA libraries (added
--with-http-libicu-dir, --with-http-libidnkit{,2}-dir,
--with-http-libidn2-dir)
* Fix bug #73055: crash in http\QueryString (Mike, @rc0r)
(CVE-2016-7398)
* Fix bug #73185: Buffer overflow in HTTP parse_hostinfo() (Mike, @rc0r)
* Fix HTTP/2 version parser for older libcurl versions (Mike)
* Fix gh-issue #52: Underscores in host names: libidn Failed to parse
IDN (Mike, @canavan)

7 years agorelease 2.6.0RC1 RELEASE_2_6_0_RC1
Michael Wallner [Tue, 4 Oct 2016 15:43:09 +0000 (17:43 +0200)] 
release 2.6.0RC1

+ Added http\Client\Curl\User interface for userland event loops
+ Added http\Url::IGNORE_ERRORS, http\Url::SILENT_ERRORS and
http\Url::STDFLAGS
+ Added http\Client::setDebug(callable $debug)
+ Added http\Client\Curl\FEATURES constants and namespace
+ Added http\Client\Curl\VERSIONS constants and namespace
+ Added share_cookies and share_ssl (libcurl >= 7.23.0) options to
http\Client::configure()
+ http\Client uses curl_share handles to properly share cookies and
SSL/TLS sessions between requests
+ Improved configure checks for default CA bundles
+ Improved negotiation precision
* Fixed regression introduced by http\Params::PARSE_RFC5987: negotiation
using the params parser would receive param keys without the trailing
asterisk, stripped by http\Params::PARSE_RFC5987.
* Fix gh-issue #50: http\Client::dequeue() within
http\Client::setDebug() causes segfault (Mike, Maik Wagner)
* Fix gh-issue #47: http\Url: Null pointer deref in sanitize_value()
(Mike, @rc0r)
* Fix gh-issue #45: HTTP/2 response message parsing broken with libcurl
>= 7.49.1 (Mike)
* Fix gh-issue #43: Joining query with empty original variable in query
(Mike, Sander Backus)
* Fix gh-issue #42: fatal error when using punycode in URLs (Mike,
Sebastian Thielen)
* Fix gh-issue #41: Use curl_version_info_data.features when
initializing options (Mike)
* Fix gh-issue #40: determinde the SSL backend used by curl at runtime
(Mike, @rcanavan)
* Fix gh-issue #39: Notice: http\Client::enqueue(): Could not set option
proxy_service_name (Mike, @rcanavan)
* Fix gh-issue #38: Persistent curl handles: error code not properly
reset (Mike, @afflerbach)
* Fix gh-issue #36: Unexpected cookies sent if persistent_handle_id is
used (Mike, @rcanavan, @afflerbach)
* Fix gh-issue #34: allow setting multiple headers with the same name
(Mike, @rcanavan)
* Fix gh-issue #33: allow setting prodyhost request option to NULL
(Mike, @rcanavan)
* Fix gh-issue #31: add/improve configure checks for default CA
bundle/path (Mike, @rcanavan)

Changes from beta1:
* Fixed PHP-5.3 compatibility
* Fixed recursive calls to the event loop dispatcher

Changes from beta2:
* Fix bug #73055: crash in http\QueryString (Mike, @rc0r)
(CVE-2016-7398)
* Fix bug #73185: Buffer overflow in HTTP parse_hostinfo() (Mike, @rc0r)
* Fix HTTP/2 version parser for older libcurl versions (Mike)

7 years agoMerge branch 'v2.6.x' of ../ext-http
Michael Wallner [Tue, 4 Oct 2016 14:05:57 +0000 (16:05 +0200)] 
Merge branch 'v2.6.x' of ../ext-http

7 years agochangelog & new configure options
Michael Wallner [Tue, 4 Oct 2016 14:05:46 +0000 (16:05 +0200)] 
changelog & new configure options

7 years agofix performance regression with event loop
Michael Wallner [Tue, 4 Oct 2016 14:01:03 +0000 (16:01 +0200)] 
fix performance regression with event loop

7 years agoprepare 3.1.0RC1
Michael Wallner [Tue, 4 Oct 2016 08:41:14 +0000 (10:41 +0200)] 
prepare 3.1.0RC1

7 years agoChangeLog-v3
Michael Wallner [Tue, 4 Oct 2016 08:32:30 +0000 (10:32 +0200)] 
ChangeLog-v3

7 years agoMerge branch 'v2.6.x' of ../ext-http
Michael Wallner [Tue, 4 Oct 2016 08:28:41 +0000 (10:28 +0200)] 
Merge branch 'v2.6.x' of ../ext-http

7 years agofix idna parser flags checking
Michael Wallner [Mon, 3 Oct 2016 13:34:22 +0000 (15:34 +0200)] 
fix idna parser flags checking

7 years agofix curl-config --libs treatment
Michael Wallner [Mon, 3 Oct 2016 10:42:09 +0000 (12:42 +0200)] 
fix curl-config --libs treatment

7 years agobuild fixes
Michael Wallner [Mon, 3 Oct 2016 10:24:21 +0000 (12:24 +0200)] 
build fixes

7 years agotry to find common level of strictness; fixes #52
Michael Wallner [Mon, 3 Oct 2016 10:07:24 +0000 (12:07 +0200)] 
try to find common level of strictness; fixes #52

7 years agofix custom version checks
Michael Wallner [Mon, 3 Oct 2016 10:06:33 +0000 (12:06 +0200)] 
fix custom version checks

7 years agoupdate config.m4; allow disabling idna; add idnkit
Michael Wallner [Mon, 3 Oct 2016 09:48:32 +0000 (11:48 +0200)] 
update config.m4; allow disabling idna; add idnkit

7 years agoflush
Michael Wallner [Mon, 26 Sep 2016 10:29:22 +0000 (12:29 +0200)] 
flush

7 years agotrusty seems faster, try again
Michael Wallner [Thu, 22 Sep 2016 08:47:17 +0000 (10:47 +0200)] 
trusty seems faster, try again

7 years agoupdate travis/pecl
Michael Wallner [Thu, 22 Sep 2016 07:02:16 +0000 (09:02 +0200)] 
update travis/pecl

7 years agoupdate travis/pecl
Michael Wallner [Thu, 22 Sep 2016 06:51:48 +0000 (08:51 +0200)] 
update travis/pecl

7 years agotry trusty
Michael Wallner [Thu, 22 Sep 2016 04:37:13 +0000 (06:37 +0200)] 
try trusty

7 years agoprepare 2.6.0RC1
Michael Wallner [Tue, 4 Oct 2016 08:23:40 +0000 (10:23 +0200)] 
prepare 2.6.0RC1

7 years agoupdate travis-pecl
Michael Wallner [Tue, 4 Oct 2016 08:18:11 +0000 (10:18 +0200)] 
update travis-pecl

7 years agodocs
Michael Wallner [Tue, 4 Oct 2016 08:18:06 +0000 (10:18 +0200)] 
docs

7 years agofix PHP-73185
Michael Wallner [Tue, 4 Oct 2016 08:13:35 +0000 (10:13 +0200)] 
fix PHP-73185

7 years agoremove duplicate entries
Michael Wallner [Fri, 30 Sep 2016 10:13:16 +0000 (12:13 +0200)] 
remove duplicate entries

7 years agoremove leftover merge conflict
Michael Wallner [Fri, 30 Sep 2016 10:12:36 +0000 (12:12 +0200)] 
remove leftover merge conflict

Thanks @rcanavan

7 years agoupdate travis/pecl
Michael Wallner [Wed, 21 Sep 2016 13:07:20 +0000 (15:07 +0200)] 
update travis/pecl

7 years agoupdate travis/pecl
Michael Wallner [Wed, 21 Sep 2016 12:52:49 +0000 (14:52 +0200)] 
update travis/pecl

7 years agocppcheck & 7.1RC tests
Michael Wallner [Wed, 21 Sep 2016 12:31:35 +0000 (14:31 +0200)] 
cppcheck & 7.1RC tests

7 years agoSquashed commit of the following:
Michael Wallner [Thu, 15 Sep 2016 06:18:57 +0000 (08:18 +0200)] 
Squashed commit of the following:

commit 788a59093cd72295f7c122f453e693a624038cac
Author: Michael Wallner <mike@php.net>
Date:   Thu Sep 15 08:18:14 2016 +0200

    flush

commit e6eb81c90406275f1b27df1ba9ccaa6987980bf8
Author: Michael Wallner <mike@php.net>
Date:   Thu Sep 15 07:59:57 2016 +0200

    checking if we really need this

commit 9cb4ac2e1003aa2aa6465854cb99382b447db2bb
Author: Michael Wallner <mike@php.net>
Date:   Thu Sep 15 07:44:14 2016 +0200

    cd src/.libs

commit ec71e1dbf561a6ce1b6b46b027f0e013a8dc2209
Author: Michael Wallner <mike@php.net>
Date:   Wed Sep 14 22:43:35 2016 +0200

    try to locate gcno files

commit 4889271cdaeaf8dc4445523d04b8d95779b13af9
Author: Michael Wallner <mike@php.net>
Date:   Wed Sep 14 21:31:25 2016 +0200

    anothertry

commit 28e3c60b50fa25f459ed6255298483f6210cc317
Author: Michael Wallner <mike@php.net>
Date:   Wed Sep 14 19:39:50 2016 +0200

    manually run gcov

commit 61d159102918e99ac4c674d597fdc12c490850eb
Author: Michael Wallner <mike@php.net>
Date:   Wed Sep 14 19:12:35 2016 +0200

    codecov

7 years agocodecov
Michael Wallner [Wed, 14 Sep 2016 15:30:35 +0000 (17:30 +0200)] 
codecov

7 years agoadd coverity script
Michael Wallner [Wed, 14 Sep 2016 12:36:48 +0000 (14:36 +0200)] 
add coverity script

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 14 Sep 2016 10:56:01 +0000 (12:56 +0200)] 
Merge branch 'v2.6.x'

7 years agocoverity fix
Michael Wallner [Wed, 14 Sep 2016 10:55:43 +0000 (12:55 +0200)] 
coverity fix

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 14 Sep 2016 09:39:47 +0000 (11:39 +0200)] 
Merge branch 'v2.6.x'

7 years agocoverity fix
Michael Wallner [Wed, 14 Sep 2016 09:39:25 +0000 (11:39 +0200)] 
coverity fix

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 14 Sep 2016 07:54:24 +0000 (09:54 +0200)] 
Merge branch 'v2.6.x'

7 years agocoverity fixes
Michael Wallner [Wed, 14 Sep 2016 07:39:59 +0000 (09:39 +0200)] 
coverity fixes

7 years agocoverity fixes
Michael Wallner [Wed, 14 Sep 2016 07:39:24 +0000 (09:39 +0200)] 
coverity fixes

7 years agocoverity fixes
Michael Wallner [Wed, 14 Sep 2016 07:05:13 +0000 (09:05 +0200)] 
coverity fixes

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 14 Sep 2016 06:07:59 +0000 (08:07 +0200)] 
Merge branch 'v2.6.x'

7 years agonew curlinfo
Michael Wallner [Wed, 14 Sep 2016 06:05:22 +0000 (08:05 +0200)] 
new curlinfo

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Mon, 12 Sep 2016 06:54:16 +0000 (08:54 +0200)] 
Merge branch 'v2.6.x'

7 years agoadd missing test
Michael Wallner [Mon, 12 Sep 2016 06:53:59 +0000 (08:53 +0200)] 
add missing test

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Mon, 12 Sep 2016 06:30:57 +0000 (08:30 +0200)] 
Merge branch 'v2.6.x'

7 years agofix bug #73055
Michael Wallner [Mon, 12 Sep 2016 06:24:54 +0000 (08:24 +0200)] 
fix bug #73055

7 years agofix bug title
Michael Wallner [Mon, 12 Sep 2016 06:24:37 +0000 (08:24 +0200)] 
fix bug title

7 years agofix bug title
Michael Wallner [Mon, 12 Sep 2016 06:23:50 +0000 (08:23 +0200)] 
fix bug title

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Thu, 8 Sep 2016 06:30:51 +0000 (08:30 +0200)] 
Merge branch 'v2.6.x'

7 years agoattempt to fix that HTTP/2 nonsense
Michael Wallner [Wed, 7 Sep 2016 12:55:24 +0000 (14:55 +0200)] 
attempt to fix that HTTP/2 nonsense

7 years agofix package.xml RELEASE_3_1_0_BETA2
Michael Wallner [Wed, 7 Sep 2016 06:42:32 +0000 (08:42 +0200)] 
fix package.xml

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Wed, 7 Sep 2016 06:01:09 +0000 (08:01 +0200)] 
Merge branch 'v2.6.x'

7 years agoadministrativa RELEASE_2_6_0_BETA2
Michael Wallner [Wed, 7 Sep 2016 05:55:15 +0000 (07:55 +0200)] 
administrativa

7 years ago5.3 compatibility
Michael Wallner [Tue, 6 Sep 2016 14:25:39 +0000 (16:25 +0200)] 
5.3 compatibility

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Tue, 23 Aug 2016 11:46:50 +0000 (13:46 +0200)] 
Merge branch 'v2.6.x'

7 years agoavoid recursive calls to the event loop dispatcher
Michael Wallner [Tue, 23 Aug 2016 11:37:53 +0000 (13:37 +0200)] 
avoid recursive calls to the event loop dispatcher

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Tue, 23 Aug 2016 09:51:01 +0000 (11:51 +0200)] 
Merge branch 'v2.6.x'

7 years agoavoid recursive calls to the event loop dispatcher
Michael Wallner [Tue, 23 Aug 2016 09:50:08 +0000 (11:50 +0200)] 
avoid recursive calls to the event loop dispatcher

7 years agoprepare 3.1.0beta1 RELEASE_3_1_0_BETA1
Michael Wallner [Mon, 22 Aug 2016 13:50:28 +0000 (15:50 +0200)] 
prepare 3.1.0beta1

7 years agoprepare 2.6.0beta1 RELEASE_2_6_0_BETA1
Michael Wallner [Mon, 22 Aug 2016 13:50:10 +0000 (15:50 +0200)] 
prepare 2.6.0beta1

7 years agoupdate travis/pecl
Michael Wallner [Mon, 22 Aug 2016 13:03:46 +0000 (15:03 +0200)] 
update travis/pecl

7 years agoMerge branch 'v2.6.x'
Michael Wallner [Mon, 22 Aug 2016 11:38:39 +0000 (13:38 +0200)] 
Merge branch 'v2.6.x'

7 years agofix test
Michael Wallner [Mon, 22 Aug 2016 10:23:03 +0000 (12:23 +0200)] 
fix test