Upgrade urgency for both 6.0.6 and 6.0.7 is MODERATE, see changelog for
details. Notably, the fix for the sentinel crash was merged upstream.
https://raw.githubusercontent.com/antirez/redis/6.0/00-RELEASENOTES
There is another test that occasionally fails since 6.0.6:
[err]: Piping raw protocol in tests/integration/redis-cli.tcl
Tested on amd64 and macppc, build tested with clang and egcc on sparc64.
Thanks to danj for testing and okaying 6.0.6.
ok sthen
SQL::Abstract::Classic was inspired by the excellent DBIx::Abstract. However, in
using that module I found that what I really wanted to do was generate SQL, but
still retain complete control over my statement handles and use the DBI
interface. So, I set out to create an abstract SQL generation module.
While based on the concepts used by DBIx::Abstract, there are several important
differences, especially when it comes to WHERE clauses. I have modified the
concepts used to make the SQL easier to generate from Perl data structures and,
IMO, more intuitive. The underlying idea is for this module to do what you mean,
based on the data structures you provide it. The big advantage is that you don't
have to modify your code every time your data changes, as this module figures it
out.
From MAINTAINER wen heping <wenheping2000 () hotmail ! com>
OK benoit@
add BDEP on xmlto, it's used if present (detection is done in a Makefile
just before it's run, but seems xmlto takes long enough to run that
kmos@ ran into a problem with dpb junking)
from Matthias Pitzl; OK afresh1
Comment:
Perl extension for access to cdb databases
Description:
CDB_File is a module which provides a Perl interface to Dan Bernstein's
cdb package.
- Cf http://www.pgbouncer.org/changelog.html, brings support for SCRAM
authentication, which is the recommenced method to use by default in
/usr/local/share/doc/pkg-readmes/postgresql-server since a while..
- Switch from libeventextra to libevent2
- Enable tests, the ones that want to play with firewall rules are
skipped by default (rely on sudo, and USE_SUDO being set in the env,
cf test/README.md) - all the other tests pass fine.
- update PLIST while here
maintainer timeout
this but API seems different than sqsh expects (it wants things like
CS_MAX_CHAR, CS_SEC_CHANBIND, CS_SEC_CONFIDENTIALITY, CS_SEC_INTEGRITY).
breakage reported by aja@, thanks!
The Redis sentinel would crash with a segfault after a few minutes because
it tried to read from a page without read permissions. Check up front
whether the sds is long enough to contain redis:slave or redis:master
before memcmp() as is done everywhere else in sentinelRefreshInstanceInfo().
From Nam Nguyen