[libredis-perl] branch master updated (969594f -> d7bf522)

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Thu Oct 1 18:01:30 UTC 2015


This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a change to branch master
in repository libredis-perl.

      from  969594f   releasing package libredis-perl version 2:1.9790-1
      adds  c34a505   module-starter --module Redis --author="Dobrica Pavlinusic" --email=dpavlin at rot13.org
      adds  c17c55f   quit, ping
      adds  ca631de   set, get
      adds  3e0104f   test non-existing key and strip cr/lf after get value
      adds  a57e5b0   setnx
      adds  43600e0   dependencies
      adds  034e1ce   incr, incrby
      adds  233f624   decr
      adds  220f99f   exists
      adds  5ecd629   del, small refacture into sock_result
      adds  7b0869d   make _sock_result private, type
      adds  889c043   keys, _sock_result_bulk
      adds  63abbe0   randomkey
      adds  8f10dd2   rename, renamenx
      adds  96778b6   cleanup NX variants of commands
      adds  b6b3dff   use stable key names to have predictible results
      adds  74f0957   dbsize
      adds  b8c759e   rpush, refactor _sock_send_bulk to expect +OK
      adds  17bcbd7   lpush
      adds  9cfdc80   llen, _sock_send
      adds  6a1de5c   lrange, _sock_send refactor
      adds  d83b940   ltrim
      adds  7b61388   lindex
      adds  158e857   lset, generalize _sock_send_bulk to any number of arguments
      adds  37f07d1   check type of list
      adds  0530ee2   lrem
      adds  7b06790   lpop, rpop
      adds  62521c9   support for set foo => undef
      adds  b9bd006   Redis::List to tie perl arrays
      adds  27b1d5b   sadd, srem
      adds  5a01d65   scard
      adds  5a3c019   sismember
      adds  14f9ac6   sinter
      adds  c6feb7a   sinterstore
      adds  6f1f76f   added link to Redis::List
      adds  a3369ad   fix boilerplate texts
      adds  8834a0a   REDIS enviroment variable controlls debug output
      adds  ad8fa0d   select
      adds  7fe2fcf   cleanup fails on empty database
      adds  64af4a2   move
      adds  b8ff672   flushdb, flushall
      adds  16b05e0   Redis::Hash tie with optional prefix
      adds  d614f74   fixed Redis::Hash keys problem, separate prefix from key with :, return key names without prefix
      adds  01860f4   sort keys so we get predictible order for test
      adds  3957dcf   mget
      adds  baf5779   comment debug output
      adds  f5a339e   sort
      adds  776f191   save
      adds  5fd015d   comment debug output
      adds  844f868   bgsave, lastsave, shutdown
      adds  1c54c8b   info
      adds  ac0aee7   benchmark bindings and redis server
      adds  bc7a707   update bindings for new protocol 0.08
      adds  1c86d14   cleanup
      adds  24aed6f   fix warnings
      adds  eee28c0   implement same benchmarks as redis-benchmark in C with comparable results and rnd variant for comparison
      adds  5a4f5b7   sinter ordering of results (in insertion order?) changed with recent redis from git
      adds  223e1a0   test that info returns HASH
      adds  3f297ca   document and test redis object for issuing normal commands
      adds  12cbdd9   added Redis::Hash benchmarks
      adds  e99389a   version bump [0.0801]
      adds  9d787cb   test contructor with server argument
      adds  8a36a2c   use Data::Dumper instead of Data::Dump so all our dependencies are perl core modules
      adds  e5d91d8   confess command and result
      adds  5845f18   Added support for Redis >= 1.2 bulk commands
      adds  d33128f   version bump [1.2001]
      adds  23708d7   document changes in new version
      adds  cc82d8d   added CPAN RT #54841 info
      adds  c1c0072   added use bytes to support utf-8 encoded strings
      adds  49804f1   use Encode::_utf8_on to mark bytes from Redis socket as utf-8 chars
      adds  9868ef2   added encoding notice
      adds  213be1c   notice utf-8 fix
      adds  10440d1   return undef makes @list = ( undef ), which is sad
      adds  5bd01e4   add lib/Redis/* to MANIFEST so that CPAN distro contains relevant files
      adds  b6c1e58   add scripts/* to MANIFEST
      adds  cf899e2   Redis GET with undef is a protocol error for 2.x and beyond
      adds  cc53b38   Make sure you pass each SORT argument separate
      adds  0fedd6a   Make sure setting/getting an empty string works
      adds  46a0312   Add support for Redis 2.x, and other tweaks:
      adds  623d7d4   Make debug prettier
      adds  fbd7d22   Promote all die's to confess(): more usefull information in case of errors
      adds  cf498c4   Extract send command logic from AUTOLOAD; make it more robust
      adds  529539c   Move QUIT command out of the common case
      adds  06792bd   Added tests with big values
      adds  b4a7fc5   Rewrote response reading code, moved INFO and KEYS out of AUTOLOAD
      adds  297a71d   Cleanup comments
      adds  f8b1b5a   Add initial support for subscriber mode:
      adds  71b3d1d   Run perltidy on the Redis.pm class
      adds  096689e   Added __can_read_sock(): attempts to read from Redis server, non-blocking
      adds  4f81a9b   Fix: __is_valid_command() must deal with both upper and lower-case cmds
      adds  0f371f4   Allow size of reads from socket to be tuned
      adds  370cecf   On quit(), remove our internal buffer even if we can't close the socket
      adds  3e83977   Fix __read_response() call in keys(): used wrong command
      adds  56197d6   Added support for Redis PubSub:
      adds  cfbee15   Fix __read_responses() with multi-bulk replies containing $-1 responses
      adds  4eca5fd   Add support for nested multi-bulk responses:
      adds  6fd91ba   Tidy up test files
      adds  cd98995   simple publish script for testing
      adds  c952549   Added super-basic test for hset/hget
      adds  68bb511   made POD coverage tests run conditionally
      adds  2768e42   added .gitignore
      adds  0ce6fb9   added tests for all Hash Commands
      adds  5c63946   ignore dist files
      adds  91693e7   added tests for most of the zset commands
      adds  7f8e6e5   Fix encoding parameter to new():
      adds  8465483   Split __read_sock into __read_line and __read_len
      adds  5958a32   Replace sysread-based network code with PerlIO buffered reads:
      adds  41d1109   Merge branch 'redis2.0'
      adds  6d66139   Cleanup Changes
      adds  7c150ea   Ignore redis-server dump.rdb file
      adds  f188669   Cleanup Makefile.PL:
      adds  65e8e98   Documentation tweaks:
      adds  0da904c   Tidy Redis::List and Redis::Hash
      adds  4ca14da   Added Test::SpawnRedisServer for startup/cleanup of a Redis server
      adds  706c589   Convert most tests to use the new Test::SpawnRedisServer
      adds  a765bf6   Improve Redis::List
      adds  a14e729   Improve Redis::Hash
      adds  a80a57b   Tidy Redis tests
      adds  d4942da   Update MANIFEST
      adds  3d3fbca   Fix README
      adds  7dc37a0   Bump version to 1.900_01, our first release candidate for the new 2.0 rel
      adds  5121f33   Rename test files, make this uniform with the others
      adds  4060f46   Prepare version 1.901
      adds  a63592a   Add special case for shutdown(): there is no response
      adds  b40b595   Make sure ping() never dies
      adds  cd8bc45   Prepare release 1.902
      adds  50a63b3   Bump Test::More to version 0.96:
      adds  d86ec26   Removed Guard dependency, replaced with the use of a END block
      adds  111c515   Prepare version 1.903
      adds  1324843   Deal with multi-bulk NIL responses (Case 42) RT#64040
      adds  93f1e4a   Prepare release 1.904
      adds  89478fa   minor documentatio fixes
      adds  437eaf8   minor nitpicks and completed tests for sets
      adds  1268714   completed documentation for sets
      adds  09cc30e   Merge pull request #7 from polettix/master
      adds  4f773a1   Fail due to missing binary looks nicer
      adds  5f3017b   Merge pull request #8 from rhaen/master
      adds  2f25840   Add ACKS for recent merges
      adds  7dd466b   Add test for reconnect.
      adds  fa589f7   Added ACK for Thiago tests
      adds  852f804   Tidy
      adds  7e8f333   Add a auto-reconnect mode:
      adds  eba6d3e   Added documentation to the Redis constructor
      adds  2685fd0   Merge branch 'reconnect'
      adds  a9355b8   Document REDIS_DEBUG env var
      adds  e1b288d   Add support for UNIX domain sockets
      adds  4917271   Test non-blocking code over UNIX sockets
      adds  adcbbb6   Make sure double quit() and shutdown() calls work properly
      adds  c7185b5   Make sure we kill the server only once
      adds  5e7eefa   Make sure the server is dead before we test the failed connection timeout
      adds  ecfbfb1   Remove private PATH settings
      adds  1ba4aa7   Allow REDIS_SERVER ENV to be used with both tcp and unix sockets
      adds  c091a90   The read() call requires a defined data when using IO::String
      adds  4f9a76b   Fix copyright year
      adds  a0aeb29   Add missing dependencies
      adds  cde01ed   Prep 1.925 release
      adds  22836d6   Use debug loglevel on the test server
      adds  bec0279   Make sure we catch dead servers and timeouts:
      adds  31cbdca   Remove missing debug information from previous commit
      adds  7dfaa0c   Do at least 5 seconds per round per benchmark case
      adds  e21881a   Fix MANIFEST with missing test files
      adds  09424ad   Prepare bugfix release 1.926
      adds  4dabb72   Cache AUTOLOAD-generated methods for future use
      adds  5c007ba   Merge pull request #9 from arc/autoload-cache
      adds  fb5f5bd   Factor out new __with_reconnect method
      adds  4054b4d   Bug fix: apply reconnect logic to KEYS and INFO
      adds  2c3b57a   Bug fix: forbid PING and SHUTDOWN in SUBSCRIBE mode
      adds  6a61b12   Document scalar-context KEYS return
      adds  d8a1856   Refactor: don't conflate subscription commands with standard commands
      adds  f859ef4   Rename __try_reconnect to __throw_reconnect
      adds  3b1c2e8   Refactor to use __run_cmd where possible
      adds  5cc8b55   Remove final argument in __read_response, __read_response_r
      adds  ba03498   Always call __read_response_r as a method
      adds  ad922d7   Pipelining support
      adds  dea5540   Refactor __run_cmd as __queue_cmd
      adds  89241f4   Add tests for pipelined INFO and KEYS
      adds  8c6f8c8   Factor out new __run_cmd method
      adds  9fc61b4   Refactor: inline __queue_cmd in its only caller
      adds  9c18872   Refactor: save one level of closure invocation
      adds  05a2973   Performance enhancement in non-reconnect mode
      adds  1a9371b   Documentation for pipelining
      adds  157cb35   Merge pull request #10 from arc/pipelining
      adds  5b0aaf7   Add deprecation of encoding constructor attribute
      adds  401f589   Adjust documentation to use Github infrastructure for code and issues
      adds  80554d0   Add Aaron Crane to the CREDITS section
      adds  24f79ea   Prepare release 1.950
      adds  2e6391d   Drop vm-enabled no:
      adds  328e026   Improve the documentation:
      adds  e68e0fd   dzil-ify the distribution
      adds  bfa70cc   Remove unused variable
      adds  756e0ac   Make sure SYNOPSIS is valid Perl
      adds  df5d299   Mark multi()/exec() + pipelining as alpha
      adds  0c4d09f   Skip Kwalitee tests for now
      adds  c7919ed   Stop using D::Z::P::RemovePrereqs, we have the same feature in @MELO
      adds  b1c5b98   Document Pub/Sub commands
      adds  3da8e3d   v1.950
      adds  2d823e1   Remove Tie::StdHash from our dependencies, its creating probs
      adds  73494df   Disable POD tests for now, the 404 checks fail with the Github links
      adds  5ad3e00   v1.951
      adds  79d9f31   Add config file for http://travis-ci.org/
      adds  ccbbc2b   Fix .travis.yml so that it is valid YAML travis can parse
      adds  276f6ca   Merge pull request #19 from michaelklishin/patch-1
      adds  c071615   Remove --noquiet to debug travis-ci + Dist::Zilla powered modules
      adds  184d9d2   Tweak for travis + Dist::Zilla, using mjgardner/svn-simple-hook example
      adds  fec78a4   Use --notest while installing Dist::Zilla + our dependencies
      adds  83160e7   Make sure Dist::Zilla::Plugin::Authority knows who is the AUTHORITY
      adds  273d2d4   Pushed default authority for @Author::Melo dzil bundle
      adds  b60d1a1   Add support for automatic AUTH command on connect:
      adds  defe631   Take care of bad passwords:
      adds  b346368   Tweak documentation for automatic authentication
      adds  b3d5a71   Document changes for automatic authentication
      adds  d927b0d   Make more use of Test::Deep to simplify tests
      adds  83f2f67   Make tests more resilient to Redis hash-order changes
      adds  8313695   Make tests pass under Redis 2.6
      adds  7cb7b67   Handle 2.6-format INFO output
      adds  2327f17   Document 2.6.x support in Changes
      adds  03e41d7   Merge pull request #23 from arc/support-2-6
      adds  80da1a6   Fix typo in Redis::Hash documentation
      adds  843a832   Make sure REDIS_SERVER_PATH works
      adds  17194e2   Make sure our test directory is clean before starting the Redis server
      adds  f6c0887   Our test redis-server can have a customizable timeout now:
      adds  5905431   Move "is Windows32" decision to a constant
      adds  59d32b1   Be more flexible when detecting Windows:
      adds  04affbd   Prepare next release, check Changes
      adds  7262b65   Fix dist.ini to work with latest @Author::MELO
      adds  b8130c6   v1.952
      adds  a1aa6e7   Make sure we include perl 5.16
      adds  128750d   Tracking down a problem installing D::Z::PB::Author::MELO:
      adds  9f32d7c   Prepare small release to fix travis.ci setup
      adds  2199ecf   v1.953
      adds  0aa9a9f   Transform multi-word commands into separate strings in Redis protocol
      adds  c79ed77   Merge pull request #26 from tsee/master
      adds  881b451   Replace read() with sysread() in __try_read_sock() if we are running Win32
      adds  3f0a866   Merge branch 'windows-fix-with-sysread'
      adds  1c418cc   Remove left over die from script tests
      adds  c9e7878   Improve script tests to check script_load() returns valid sha1 digest
      adds  329c53b   Add documentation for the new scripting commands
      adds  878c124   Prepare next release
      adds  7580a08   Remove trailing spaces
      adds  6e43ef4   v1.954
      adds  8db2040   Skip scripting tests if redis-server found lack scripting support
      adds  fc05c0f   v1.955
      adds  70adaa4   Add on_connect callback to Redis constructor
      adds  2219dbc   Tidy code a bit
      adds  14ad85a   Remove extra cpanm commands: installing the PluginBundle should be enough
      adds  dcbaf47   Make sure we have a redis-server available
      adds  702345b   Switch from Digest::SHA1 to Digest::SHA, the latter is core RT-81841
      adds  5304c45   Be more precise when dealing with syswrite errors
      adds  6da2acf   Make sure quit() doesn't die if we fail to send the command:
      adds  f6ada68   Update Changes for new release
      adds  d057697   Tweak Dist::Zilla config, enable some tests, disable portability for now
      adds  2e87f86   v1.956
      adds  79def64   Prepare release 1.957
      adds  ba1ba34   v1.957
      adds  3ee2bc8   Disable MinimumPerl plugin for now, see RT82718
      adds  888f0f4   Replace Test::Exception with Test::Fatal
      adds  ac23ffa   Fix Pod
      adds  68df948   Use Redis.pm to test the new server connection, return redis-server version
      adds  76b19fb   If redis-server cannot be started, make sure we reap the zombie
      adds  11ca249   T::SpawnRedisServer::redis() accepts requires_version => VER now
      adds  7af9dd7   Add tests for 2.6.9 client {set,get}name commands
      adds  38d7eaa   Add name parameter to new(): sets the connection name (2.6.9+)
      adds  c685c54   Updated docs with CLIENT * commands, plus name constructor parameter
      adds  6032719   Update Changes, prepare for new release
      adds  1887747   Merge branch 'client_set_get_name'
      adds  ca41f68   v1.958
      adds  5286e87   Re-organize pubsub tests into a subtest
      adds  e61c532   Make reap() available to test files if requested
      adds  b9d966a   Second parameter to reap() is the limit (in seconds) to wait for a child
      adds  c079395   Allow multiple, concurrent, test redis-server's:
      adds  7839e81   Make sure only the process that created the redis test server can kill it
      adds  a4e18f4   The coderef that kills the test redis-server returns true if it died
      adds  654beeb   Add test case for #31: wait_for_messages() shouldn't block if sock is dead
      adds  ecec0fc   Check errno more thoroughly, better detection of EOF situations in __try...
      adds  22db3e9   Tidy everything using tidyall -a; config files included now
      adds  afe2ef2   Make sure we kill the server before we leave
      adds  a4d3c9c   Don't include my own tidyall and perltidyrc:
      adds  dee934b   Update ChangeLog to new release, 1.959
      adds  379b6f2   v1.959
      adds  faf184f   Allow new() name param to be used safely with redis-server < 2.6.9
      adds  f39e8c8   Update Changes for 1.960
      adds  d0a250c   v1.960
      adds  b306bfc   Tweak qr{}, "fix" broken syntax highlight
      adds  a2e8e9e   Extract wait_one_response() from wait_all_responses()
      adds  fa30bc6   Update Changes for 1.961
      adds  cbb5c9b   v1.961
      adds  ba6a9fd   The name parameter to new() can be a CodeRef
      adds  8ccc116   Added documentation for working with Redis-Hashes.
      adds  3e1035a   Merge pull request #39 from vkroll/documentation/hashes
      adds  3a0fa0d   set syntax error (or)
      adds  ddb425b   Merge pull request #54 from jbolila/patch-1
      adds  1b21e0b   add dams as co-maintainer
      adds  d3dd2d1   try to make travis work
      adds  6123258   try to make travis work
      adds  832140b   updated Changes
      adds  1404f63   set git user name to TravisCI, hopefully will help travis to build it
      adds  cf685c0   remove Test::Kwalitee for now
      adds  26d35c5   v1.962
      adds  c9a760e   added fork-safe
      adds  0aa90e3   fix fork safe test
      adds  74dd7a9   Merge pull request #51 from Songmu/feature/fork-safe
      adds  a8f3cfb   fix duplicate spop
      adds  030b588   Merge pull request #48 from nightlord/master
      adds  c2fa6dd   fix typo
      adds  af2aa38   Add documentation for the slowlog command
      adds  73bf51c   Merge branch 'rgs-doc-slowlog'
      adds  b2fcf0e   updated Changes
      adds  9d782a1   remove the encoding / decoding features
      adds  a80a9bd   minor tidying
      adds  50040cc   rewrite dist.ini
      adds  34b8cc3   updated changes
      adds  47c9849   fix typo
      adds  d8e6f58   add missing test require
      adds  34d91af   v1.963
      adds  c7daff4   minor dist.ini fix
      adds  9f7ed9d   v1.964
      adds  b2dd97f   typo fixes
      adds  17ce65f   Merge pull request #59 from dsteinbrunner/patch-1
      adds  04841d7   add naive sysread / read benchmark
      adds  ae40c6e   select current database upon reconnection
      adds  d4c5daf   updated changes (fix #38)
      adds  0de2efb   compare performance of readline vs sysread vs recv
      adds  5337804   reuse addr
      adds  eecdb9c   uncomment needed lines in benchmark
      adds  849782d   fix #34
      adds  e9d7312   updated Changes
      adds  ed918a3   fix #60:  makemaker required version
      adds  0797d1d   v1.965
      adds  02abecf   Fixed POD for hset
      adds  fa102e9   Merge pull request #61 from mbeijen/hset-pod
      adds  e992345   hdel POD did not render correctly.
      adds  741404e   Merge pull request #62 from mbeijen/hdel-pod
      adds  33a2898   fix #63 (test for 2.8)
      adds  5c4b666   v1.966
      adds  6d00805   use MBT and MMF
      adds  1b1879f   remove useless install of Dist::Zilla::PluginBundle::Author::MELO
      adds  a4db7ee   connection, read & write timeout
      adds  676fb8a    added test files to test timeout feature
      adds  791c664   typo
      adds  e12a9ca   typo
      adds  9042817   use new IO::Socket::Timeout with different API
      adds  5b87b51   updated changes
      adds  69cdb7d   don't include logs in the release
      adds  df3455a   v1.967
      adds  792cce8   localizing $? prevents interference with the use of $? within Test::Builder
      adds  17d9eac   introduce SKIPs for all tests that fail on redis 1.2.0
      adds  e98cd5e   Merge pull request #66 from andk/compat-redis-120
      adds  46c7e71   minor cleanup
      adds  d9000ee   Work around a pod parser bug with some http links
      adds  efcdca7   Remove redundant test for debug mode
      adds  47ab55f   Merge pull request #67 from rgs/master
      adds  221c09f   Add a no_auto_connect_on_new option to ->new
      adds  b60f468   fixed trivial bug when using cnx_timeout
      adds  3cc7026   exclude logs from release
      adds  be78928   gitignore
      adds  70c0ef2   try to get a cnx timeout
      adds  4b3f753   Merge pull request #71 from celogeek/master
      adds  95fa3de   use Test::TCP for cnx_timeout test
      adds  5f549be   Merge pull request #72 from celogeek/master
      adds  e0f67fa   Clarification for (p)unsubscribe commands.
      adds  556e3f6   Merge pull request #70 from vsespb/unsubscribe_docs
      adds  9dca922   use Net::EmptyPort to get a free port. Some phrasing fixes
      adds  9b34fde   emphasis even more
      adds  ca806ef   v1.968
      adds  21e4d40   changes
      adds  71a6878   v1.969
      adds  f1f4655   fix tests breaking in some cases
      adds  b67ec42   v1.970
      adds  a939cfb   skip tests that fail on some platforms
      adds  9c2d155   documentation
      adds  13e76bd   v1.971
      adds  f2178db   fix test prereqs for travis
      adds  6c37922   Redis->new(server=>'') does not connect to localhost:6379 #77
      adds  89cdaf0   use exists $args{server} in missing places, and do the same with sock
      adds  50a5eb4   Merge pull request #78 from PerlRedis/ikruglov/77_new_server_empty
      adds  230c1b5   __try_read_sock: also check errno if read returns 0
      adds  4a4a4de   Merge pull request #75 from xtab/master
      adds  45a4073   don't use each, use foreach keys
      adds  9455f4e   forgot to use exists in one place
      adds  40bd504   WIP: Prototype Redis Sentinel implementation
      adds  d22910d   Tentatively correct "Sentinel replying IDONTKNOW" handling
      adds  8f10c04   Implement other sentinel subcommands and sentinel autoupdate
      adds  99018f1   don't include logs in git
      adds  eca5019   now we can test redis Sentinel. fixed some various typos
      adds  5330352   use diag
      adds  d5926ba   fix test
      adds  ddc954d   don't use confess, use croak instead
      adds  a031981   reimplement Sentinel support
      adds  6da5c13   doc
      adds  e0d1e57   documentation
      adds  9762009   Merge branch 'sentinel2'
      adds  331d2f5   added sentinel timeouts
      adds  b418f13   more doc, more sentinels options
      adds  d6bc657   v1.972
      adds  92d908f   fix issue #76 : we need Test::TCP 1.19 or more
      adds  7b24544   fix doc for 'every' option, fix #81
      adds  eec617d   fix sentinel tests
      adds  9cd36e1   PP Redis protocol parcer implementation based on sysread
      adds  4a8738d   Merge branch 'ikruglov/sysread_implementation'
      adds  258cd2d   changelog
      adds  981ab05   v1.973_01
      adds  b46c5c9   Fix usage of MSG_DONTWAIT in Win32
      adds  516c8e2   optimize __try_read_sock()
      adds  319d4dc   Update Redis.pm
      adds  cd87327   Merge pull request #84 from PerlRedis/ikruglov/optimize_try_read_sock
      adds  a484867   dev release
      adds  a7325aa   v1.973_02
      adds  a7d4d2c   test to prove bug #85
      adds  3376d1c   extend tests for bug #85
      adds  d220175   keep track of WATCH/UNWATCH/MULTI/EXEC/DISCARD and disable reconnection bug #85
      adds  71c016d   add Net::Emptyport to dist.ini
      adds  4b6005c   Revert "add Net::Emptyport to dist.ini"
      adds  f9c5564   use croak instead of die
      adds  c93bcf3   Merge pull request #86 from PerlRedis/ikruglov/reconnect_during_transaction
      adds  f996d52   1.973_03
      adds  7bb67e6   v1.973_03
      adds  ba0507a   1.973_04
      adds  1ec03db   v1.973_04
      adds  205071c   new version
      adds  4ea3a88   v1.974
      adds  8d62b71   changelog
      adds  61edac4   fix test
      adds  1e3f090   fix 'every' option unit documentation and examples
      adds  2aa96ec   Merge pull request #91 from bjakubski/bjakubski/every_option_docs
      adds  6a3e7cb   fix test requirement #92
      adds  6b51e65   updated changelog
      adds  d1d9872   back to gitversion
      adds  271b3b3   back to gitversion
      adds  71d1950   v1.975
      adds  f7896a8   Fixing inconsistency with binary strings (called "the unicode bug").
      adds  46174f1   Merge pull request #96 from vsespb/fix_the_unicode_bug
      adds  ae525ca   fix dist ini syntax, try to make travis happy
      adds  0fd7070   remove DevelopRequires as it's not supported by travis
      adds  b282ece   better exception message for the fix of inconsistency with binary strings (called "the unicode bug").
      adds  d80d250   v1.976
      adds  325a750   Support topic "0" in psubscribe
      adds  ef2e53f   Merge pull request #106 from kappa/zero-topic
      adds  c504542   PR #101 : croak when reconnecting while responses are pending.
      adds  5ffc614   redo the fix, instead introduce safe_reconnect
      adds  78ce0f2   documentation reorg
      adds  786404d   copyright
      adds  f54e727   new generated documentation
      adds  0ba098e   v1.977
      adds  10a4d55   changelog
      adds  02c2f32   replaced safe_reconnect into conservative_reconnect
      adds  9ff46a2   typo
      adds  8dc0935   v1.978
      adds  335e30b   require IO::Socket::Timeout = 0.28 which fixes an important issue when using non timed out sockets along with timed out ones when using socket based timeout detection (meaning on OSes like windows, solaris)
      adds  5613d3a   require IO::Socket::Timeout = 0.29 which fixes an important issue when using non timed out sockets along with timed out ones when using socket based timeout detection (meaning on OSes like windows, solaris)
      adds  92cb938   updated changes
      adds  07bb9d5   v1.979
      adds  804e596   fix éseté documentation as per Emanuele Tomasi <et at libersoft.it> suggestion
      adds  febdf08   fix éseté documentation as per Emanuele Tomasi <et at libersoft.it> suggestion
      adds  856c489   v1.980
      adds  9b46ff0   fix a bug where when not yet connected, pid is undef, leading to warnings
      adds  ba69bd2   Imported Upstream version 1.9810
       new  25b93d9   Merge tag 'upstream/1.9810'
       new  0180470   Update debian/changelog
       new  d7bf522   Releasing libredis-perl version 2:1.9810-1

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Build.PL              |  2 +-
 Changes               |  6 ++++++
 META.json             |  4 ++--
 META.yml              |  4 ++--
 Makefile.PL           |  6 +++---
 README                |  2 +-
 debian/changelog      |  7 +++++++
 lib/Redis.pm          | 13 ++++++++-----
 lib/Redis/Hash.pm     |  4 ++--
 lib/Redis/List.pm     |  4 ++--
 lib/Redis/Sentinel.pm |  4 ++--
 11 files changed, 36 insertions(+), 20 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libredis-perl.git



More information about the Pkg-perl-cvs-commits mailing list