- 17 May, 2019 17 commits
-
-
amdmi3 authored
Approved by: portmgr blanket
-
antoine authored
Reported by: pkg-fallout
-
amdmi3 authored
- Update WWW Approved by: portmgr blanket
-
tz authored
Changelog: Enhancements - Doc: Improve Reference II, PCP commands document. (Tatsuo Ishii) - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) - Doc: add restrictions entry. (Takuma Hoshiai) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Remove unused .sgml file. (Takuma Hoshiai) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Add missing test/watchdog_setup to EXTRA_DIST. (bug 470) (Bo Peng) - Doc: mention that multi-statement queries are sent to primary node only. (bug 492) (Tatsuo Ishii) - Fix md5 auth broken in raw mode with more than 1 backends. (bug 491) (Tatsuo Ishii) - Test: Fix occasional regression test failure of 014.watchdog_test_quorum_bypass. (Tatsuo Ishii) - Abort session if failover/failback is ongoing to prevent potential segfault. (bug 481, bug 482) (Tatsuo Ishii) - Fix compiler warnings. (Tatsuo Ishii) - Fix memory leak in "batch" mode in extended query. (bug 468) (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-4-0-5.html MFH: 2019Q2
-
tz authored
Changelog Enhancements - Doc: Improve Reference II, PCP commands document. (Tatsuo Ishii) - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) - Doc: add restrictions entry. (Takuma Hoshiai) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Remove unused .sgml file. (Takuma Hoshiai) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Add missing test/watchdog_setup to EXTRA_DIST. (bug 470) (Bo Peng) - Doc: mention that multi-statement queries are sent to primary node only. (bug 492) (Tatsuo Ishii) - Test: Fix occasional regression test failure of 014.watchdog_test_quorum_bypass. (Tatsuo Ishii) - Abort session if failover/failback is ongoing to prevent potential segfault. (bug 481, bug 482) (Tatsuo Ishii) - Fix compiler warnings. (Tatsuo Ishii) - Fix memory leak in "batch" mode in extended query. (bug 468) (Tatsuo Ishii) MFH: 2019Q2
-
tz authored
Changelog: Enhancements - Doc: Improve Reference II, PCP commands document. (Tatsuo Ishii) - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) - Doc: add restrictions entry. (Takuma Hoshiai) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Remove unused .sgml file. (Takuma Hoshiai) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Add missing test/watchdog_setup to EXTRA_DIST. (bug 470) (Bo Peng) - Doc: mention that multi-statement queries are sent to primary node only. (bug 492) (Tatsuo Ishii) - Abort session if failover/failback is ongoing to prevent potential segfault. (bug 481, bug 482) (Tatsuo Ishii) - Fix compiler warnings. (Tatsuo Ishii) - Fix memory leak in "batch" mode in extended query. (bug 468) (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-6-17.html MFH: 2019Q2
-
tz authored
Changelog: Enhancements - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Abort session if failover/failback is ongoing to prevent potential segfault. (bug 481, bug 482) (Tatsuo Ishii) - Fix compiler warnings. (Tatsuo Ishii) - Fix memory leak in "batch" mode in extended query. (bug 468) (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-5-21.html MFH: 2019Q2
-
tz authored
Changelog: Enhancements - Speed up failover when all of backends are down. (Tatsuo Ishii) - pgpool-recovery extension and pgpool_setup is now ready for the next major release PostgreSQL 12. (Tatsuo Ishii) Bug fixes - Fix the wrong error message "ERROR: connection cache is full", when all backend nodes are down. (bug 487) (Bo Peng) - Avoid exit/fork storm of pool_worker_child process. (Tatsuo Ishii) - Fix black_function_list's broken default value. (Tatsuo Ishii) - Fix "not enough space in buffer" error. (bug 499) (Tatsuo Ishii) - The error occurred while processing error message returned from backend and the cause is that the query string in question is too big. Problem is, the buffer is in fixed size (8192 bytes). Eliminate the fixed size buffer and use palloced buffer instead. This also saves some memory copy work. - Fix DROP DATABASE failure. (Tatsuo Ishii) - Fix wrong variable in read_status_file() function. (bug 493) (Takuma Hoshiai) - Fix compiler warnings. (Tatsuo Ishii) Changelog taken from: http://www.pgpool.net/docs/latest/en/html/release-3-4-24.html
-
antoine authored
-
antoine authored
Pointy hat: koobs
-
koobs authored
- Pet portlint, NO_ARCH in USE{S} section Changelog: https://github.com/praw-dev/praw/blob/v6.2.0/CHANGES.rst
-
koobs authored
The "PRAW" acronym is unusual enough to warrant expansion in pkg-descr, with additional reference to the consuming port www/py-praw providing further breadcrumbs. Suggested by: pi
-
koobs authored
- Update LICENSE [1] - Update pkg-descr, add WWW: URL - Add USE_PYTHON=concurrent, package installs a script - Remove backports.ssl_match_hostname dependency, only needed for Python < 2.7.9 [2] Changelog: https://github.com/websocket-client/websocket-client/blob/v0.56.0/ChangeLog [1] https://github.com/websocket-client/websocket-client/commit/e94ed9e078c7772a7dc0a115da1a34c493f290b6 [2] https://github.com/websocket-client/websocket-client/commit/f7f5f70681c621d169b82fc842cb2396265203d5 Reviewed by: alfred (maintainer) Approved by: alfred (maintainer) Differential Revision: D20283
-
glewis authored
PR: 237370
-
glewis authored
PR: 237208
-
koobs authored
prawcore is a low-level communication layer for PRAW 4+. Features: * Dynamic rate limiting based on reddit's response headers. * Authorization URL generation * Retrieval of access and refresh tokens from authorization grants * Access and refresh token revocation WWW: https://github.com/praw-dev/prawcore
-
- 16 May, 2019 23 commits
-
-
sunpoet authored
-
sunpoet authored
-
sunpoet authored
-
sunpoet authored
-
sunpoet authored
Changes: https://opennebula.org/release/
-
sunpoet authored
Changes: https://github.com/aws/aws-sdk-ruby/releases
-
sunpoet authored
Changes: https://github.com/aws/aws-sdk-ruby/releases
-
sunpoet authored
Changes: https://github.com/aws/aws-sdk-ruby/releases
-
sunpoet authored
Changes: https://github.com/pallets/werkzeug/releases
-
sunpoet authored
Changes: https://github.com/instagrambot/instabot/commits/master
-
sunpoet authored
Changes: https://github.com/googleapis/google-cloud-python/releases
-
sunpoet authored
Changes: https://github.com/googleapis/google-cloud-python/releases
-
sunpoet authored
Changes: https://github.com/googleapis/google-cloud-python/releases
-
sunpoet authored
Changes: https://bitbucket.org/rpy2/rpy2/src/default/NEWS
-
-
sunpoet authored
Changes: https://github.com/timothycrosley/isort/releases
-
sunpoet authored
Changes: https://github.com/rq/django-rq/blob/master/CHANGELOG.md
-
sunpoet authored
Changes: https://github.com/Martiusweb/asynctest/commits/master
-
sunpoet authored
Changes: https://metacpan.org/changes/distribution/MooseX-App
-
sunpoet authored
Changes: https://metacpan.org/changes/distribution/Minion
-