non port: databases/redis-devel/Makefile |
SVNWeb
|
Number of commits found: 205 (showing only 100 on this page) |
Sun, 4 Nov 2018
|
[ 17:15 osa ]
Do not override the environment for make(1) when JEMALLOC knob
is defined.
Bump PORTREVISION.
|
Thu, 18 Oct 2018
|
[ 22:20 osa ]
Fix build on GCC-based architectures.
PR: 231780
|
[ 22:15 osa ]
Upgrade from 5.0-rc5 to 5.0.0.
<ChangeLog>
Upgrade urgency CRITICAL: Several fixes to streams AOF and replication.
Hi all and welcome to the first stable release of Redis 5! \o/
To start a quick recap of what's new in Redis 5:
1. The new Stream data type. https://redis.io/topics/streams-intro
2. New Redis modules APIs: Timers, Cluster and Dictionary APIs.
3. RDB now store LFU and LRU information.
4. The cluster manager was ported from Ruby (redis-trib.rb) to C code
inside redis-cli. Check `redis-cli --cluster help` for more info. (Only the first 15 lines of the commit message are shown above )
|
Tue, 18 Sep 2018
|
[ 11:57 linimon ]
Pet portlint. Found while chasing tier-2 problems.
Approved by: portmgr (tier-2 blanket)
|
Fri, 7 Sep 2018
|
[ 22:13 osa ]
Upgrade from 5.0-rc4 to 5.0-rc5.
<ChangeLog>
Upgrade urgency HIGH: Several imporant bugs fixed.
This is the release candidate number five, and has a lot of bug fixes inside,
together with a few big changes to the Redis behavior from the point of view
of replication of scripts and handling of the maxmemory directive in slaves.
Make sure to read the whole list!
* BREAKING BEHAVIOR: Slaves now ignore maxmemory by default.
* BREAKING BEHAVIOR: Now scripts are always replicated for their effects, and
never sending the script itself to slaves/AOF.
* Improvement: Big pipelining performances improved significantly.
* Fix: Rewrite BRPOPLPUSH as RPOPLPUSH to propagate.
* Fix: False positives in tests.
* Fix: Certain command flags were modified because not correct.
* Fix: Fix blocking XREAD for streams that are empty.
* Improvement: Allow scripts to timeout on slaves as well.
* Fix: Different corner cases due to CLIENT PAUSE are now fixed.
* Improvement: Optimize parsing large bulk greater than 32k.
* Fix: Propagate read-only scripts as SCRIPT LOAD, not as EVAL.
</ChangeLog>
|
Sun, 5 Aug 2018
|
[ 16:24 osa ]
Upgrade from 5.0-rc3 to 5.0-rc4.
<ChangeLog>
Upgrade urgency
HIGH: Many non critical but important issues fixed.
CRITICAL for Stream users: Many important bugs fixed.
Fixes:
* A number of fixes related to Streams: stability and correctnes.
* Fix dbRandomKey() potential infinite loop.
* Improve eviction LFU/LRU when keys are created by INCR commands family.
* Active defragmentation is now working on Redis 5. (Only the first 15 lines of the commit message are shown above )
|
Sun, 29 Jul 2018
|
[ 22:18 gerald ] (Only the first 10 of 1480 ports in this commit are shown above. )
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542
|
Tue, 19 Jun 2018
|
[ 23:00 osa ]
Upgrade from 5.0-rc1 to 5.0-rc3.
Add experimental support for jemalloc. (*)
Requested by: farrokhi (*)
|
Mon, 4 Jun 2018
|
[ 14:49 mat ]
Use USE_GITHUB.
Sponsored by: Absolight
|
Sun, 3 Jun 2018
|
[ 20:12 osa ]
Upgrade to recent unstable version 5.0-rc1.
Switch to new test framework.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES
|
Sat, 5 May 2018
|
[ 14:29 danfe ]
For ports in `databases' category: remove redundant PKGMESSAGE assignment,
which is set appropriately by the b.p.m when `pkg-message' appears on the
SUB_FILES list.
|
Tue, 17 Apr 2018
|
[ 23:05 osa ]
Add a workaround for solarisfixes.h header file.
Bump PORTREVISIONs.
|
Mon, 16 Apr 2018
|
[ 23:12 osa ]
Upgrade to recent stable version - 4.0.9.
Update CONFLICTS record.
|
[ 23:08 osa ]
Upgrade from 4.0.8 to 4.0.9.
Redis version 4.0.9 adds a few interesting new features and fixes a very
critical bug regarding the Append Only File.
ChangeLog: https://github.com/antirez/redis/blob/4.0/00-RELEASENOTES
|
Sat, 10 Mar 2018
|
[ 17:46 gerald ] (Only the first 10 of 1104 ports in this commit are shown above. )
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
|
Sun, 4 Feb 2018
|
[ 16:27 osa ]
Upgrade from 4.0.7 to 4.0.8.
<ChangeLog>
Upgrade urgency CRITICAL ONLY for Redis Cluster users. Otherwise no reason
to upgrade at all.
Redis 4.0.8 fixes a single critical bug in the radix tree data structure
used for Redis Cluster keys slot tracking. The problem was actually fixed
10 months ago into unstable, but it was fixed in a commit related to Streams
so it was never backported (for error) into the 4.0 branch.
The problem will crash Redis Cluster instances during deletions, but it is
very hard to trigger: only when the node removed is in the edge of a memory
mapped area there are the conditions to create an issue, because otherwise
the code just accesses an out of range word in read-only way in an allocated
structure: this is almost always harmless.
</ChangeLog>
|
Thu, 25 Jan 2018
|
[ 22:59 osa ]
Upgrade from 4.0.6 to 4.0.7.
<ChangeLog>
* Many 32 bit overflows were addressed in order to allow to use Redis with
a very significant amount of data, memory size permitting. (zhaozhao.zz,
Oran Agra)
* MEMORY USAGE fixed for the list type. (gnuhpc)
* Allow read-only scripts in Redis Cluster. (Salvatore Sanfilippo)
* Fix AOF pipes setup in edge case. (heqin)
* AUTH option for MIGRATE. (AlexStocks, Salvatore Sanfilippo, Fabio Nicotra) (Only the first 15 lines of the commit message are shown above )
|
Wed, 10 Jan 2018
|
[ 03:24 adamw ]
There is no USES=gcc
Pointy hat to: osa
|
Tue, 9 Jan 2018
|
[ 23:07 osa ]
A customer reported privately it's possible to build the package with
gcc on i386 platform, so it looks like it's a bug with clang 4 on i386.
Do not bump PORTREVISION cause package for i386 never been built.
Reference: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216745
|
Tue, 5 Dec 2017
|
[ 03:26 osa ]
Upgrade from 4.0.2 to 4.0.6.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/4.0/00-RELEASENOTES
|
Sat, 23 Sep 2017
|
[ 20:26 osa ]
Upgrade to 4.0.2.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/4.0/00-RELEASENOTES
|
[ 18:26 antoine ]
Partially revert r450351 and unbreak
Reported by: pkg-fallout
With hat: portmgr
|
Fri, 22 Sep 2017
|
[ 10:48 mat ] (Only the first 10 of 38 ports in this commit are shown above. )
Cleanup after removal of libexecinfo from ports.
PR: 220271
Submitted by: mat (review), Yasuhiro KIMURA (PR)
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11488
|
[ 10:48 mat ] (Only the first 10 of 175 ports in this commit are shown above. )
Remove USES=execinfo.
PR: 220271
Submitted by: mat (review), Yasuhiro KIMURA (PR)
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11488
|
Sat, 2 Sep 2017
|
[ 11:58 antoine ]
redis-devel fails to build on 11.0 i386 and head i386 too
Reported by: pkg-fallout
|
Mon, 28 Aug 2017
|
[ 12:57 mat ]
Mark BROKEN on 10/i386.
networking.o: In function `createClient':
networking.c:(.text+0x189): undefined reference to `__atomic_fetch_add_8'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Sponsored by: Absolight
|
Mon, 21 Aug 2017
|
[ 20:06 osa ]
Attempt to fix the issue for 10.x, 11.x and head on i386.
networking.o: In function `createClient':
networking.c:(.text+0x189): undefined reference to `__atomic_fetch_add_8'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Do not bump PORTREVISION since this change affects i386 only what's broken till
now.
|
Tue, 8 Aug 2017
|
[ 15:51 mat ]
Fails to build on 10 i386:
networking.o: In function `createClient':
networking.c:(.text+0x189): undefined reference to `__atomic_fetch_add_8'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Sponsored by: Absolight
|
Sun, 6 Aug 2017
|
[ 15:00 osa ]
Upgrade to the latest stable release - 4.0.1.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/4.0/00-RELEASENOTES
|
Tue, 6 Jun 2017
|
[ 16:18 mat ] (Only the first 10 of 37 ports in this commit are shown above. )
Convert every usage of https://github.com/.../archive/xxx to USE_GITHUB.
While there, fix small style issues.
Sponsored by: Absolight
|
Sat, 6 May 2017
|
[ 18:03 osa ]
Upgrade from 4.0-rc2 to 4.0-rc3.
|
Tue, 6 Dec 2016
|
[ 23:45 osa ]
Upgrade from 4.0-rc1 to 4.0-rc2.
<ChangeLog>
Upgrade urgency LOW: This release mainly fixes a rare GEO API bug and a crash
related to the modules subsystem.
Redis 4.0.0-RC2 (version number 3.9.102) just fixes two bugs:
1. GEORADIUS could fail reporting items with very big radius lengths because
of a bug in the bounding box computation function. This was fixed and tests
with large radius sizes were added.
2. There was a crash in the modules subsystem that was not merged into RC1 for
an error, while it was already fixed into the "unstable" branch.
</ChangeLog>
|
[ 01:38 osa ]
Upgrade from 3.2.5 to 4.0-rc1.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/4.0/00-RELEASENOTES
|
Mon, 5 Dec 2016
|
[ 00:46 osa ]
Upgrade from 3.2.4 to 3.2.5.
<ChangeLog>
Upgrade urgency LOW: This release only fixes a compilation issue due to the
missing -ldl at linking time.
zach shipko in commit 4736407:
BSDs don't have -ldl
1 file changed, 15 insertions(+), 5 deletions(-)
antirez in commit 9ada818:
Fix modules compilation when libc malloc is used.
1 file changed, 2 insertions(+), 2 deletions(-)
</ChangeLog>
|
Tue, 27 Sep 2016
|
[ 23:09 osa ]
Upgrade from 3.2.3 to 3.2.4.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES
|
Sun, 7 Aug 2016
|
[ 23:40 osa ]
Remove needless code, no functional change.
|
[ 23:18 osa ]
Upgrade from 3.2.1 to 3.2.3.
ChageLog: https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES
|
Sat, 18 Jun 2016
|
[ 16:03 osa ]
Upgrade from 3.2.0 to 3.2.1.
Upgrade urgency HIGH: Critical fix to Redis Sentinel, due to
3.2.0 regression compared to 3.0.
ChangeLog: https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES
|
Wed, 11 May 2016
|
[ 23:35 osa ]
Upgrade to the latest release - 3.2.0.
|
Fri, 1 Apr 2016
|
[ 14:00 mat ] (Only the first 10 of 5103 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
|
Wed, 3 Feb 2016
|
[ 01:02 osa ]
Upgrade from 3.0.7 to latest 3.2.0-rc3.
|
[ 00:13 osa ]
Upgrade from 3.0.5 to 3.0.7.
<ChangeLog>
--[ Redis 3.0.7 ] Release date: 28 jan 2016
Upgrade urgency MODERATE: this release fixes important Redis Cluster bugs.
* [FIX] avg_ttl reporting in INFO improved. (Salvatore Sanfilippo)
* [FIX] Redis Cluster address update (via gossip section) processing improved
to avoid initiating inwanted handshakes.
* [FIX] Many fixes to MIGRATE multiple keys implementation. The command
could handle errors in a faulty way leading to crashes or other
unexpected behaviors. MIGRATE command refactoring.
(The analysis of the faulty conditions was conducted by (Only the first 15 lines of the commit message are shown above )
|
Sat, 7 Nov 2015
|
[ 20:08 osa ]
Enable profiles support.
Bump PORTREVISION.
PRs: 171372, 179551
|
Thu, 29 Oct 2015
|
[ 01:34 osa ]
Add rc script for sentinel.
Bump PORTREVISION.
PR: 204025
|
Sun, 25 Oct 2015
|
[ 23:39 osa ]
Upgrade from 3.0.4 to 3.0.5.
<ChangeLog>
--[ Redis 3.0.5 ] Release date: 15 Oct 2015
Upgrade urgency: MODERATE, the most important thing is a fix in the replication
code that may make the slave hanging forever if the master
remains with an open socket even if it is no longer able to
reply.
* [FIX] MOVE now moves the TTL as well. A bug lasting forever... finally
fixed thanks to Andy Grunwald that reported it.
(reported by Andy Grunwald, fixed by Salvatore Sanfilippo)
* [FIX] Fix a false positive in HSTRLEN test. (Only the first 15 lines of the commit message are shown above )
|
Mon, 14 Sep 2015
|
[ 23:42 osa ]
Upgrade from 3.0.3 to 3.0.4.
<ChangeLog>
Upgrade urgency: HIGH for Redis and Sentinel. However note that in order to
fix certain replication bugs, the replication internals were
modified in a very heavy way. So while this release is
conceptually saner, it may contain regressions. For this
reason, before the release, QA activities were performed by
me (antirez) and Redis Labs and no evident bug was found.
* [FIX] A number of bugs related to replication PSYNC and the (yet experimental)
diskless replication feature were fixed. The bugs could lead to
inconsistency between masters and slaves. (Salvatore Sanfilippo, Oran
Agra fixed the issue found by Yuval Inbar) (Only the first 15 lines of the commit message are shown above )
|
Sat, 18 Jul 2015
|
[ 00:05 osa ]
Upgrade from 3.0.2 to 3.0.3.
<ChangeLog>
--[ Redis 3.0.3 ] Release date: 17 Jul 2015
Upgrade urgency: LOW for Redis and Sentinel.
* [FIX] Fix blocking operations timeout precision when HZ is at its default
value (not increased) and there are thousands of clients connected
at the same time. This bug affected Sidekiq users that experienced
a very long delay for BLPOP and similar commands to return for
timeout. Check commit b029ff1 for more info. (Salvatore Sanfilippo)
* [FIX] MIGRATE "creating socket: Invalid argument" error fix. Check
issues #2609 and #2612 for more info. (Salvatore Sanfilippo) (Only the first 15 lines of the commit message are shown above )
|
Fri, 5 Jun 2015
|
[ 00:52 osa ]
Security upgrade from 3.0.1 to 3.0.2.
<ChangeLog>
--[ Redis 3.0.2 ] Release date: 4 Jun 2015
Upgrade urgency: HIGH for Redis because of a security issue.
LOW for Sentinel.
* [FIX] Critical security issue fix by Ben Murphy: http://t.co/LpGTyZmfS7
* [FIX] SMOVE reply fixed when src and dst keys are the same. (Glenn Nethercutt)
* [FIX] Lua cmsgpack lib updated to support str8 type. (Sebastian Waisbrot)
* [NEW] ZADD support for options: NX, XX, CH. See new doc at redis.io.
(Salvatore Sanfilippo)
* [NEW] Senitnel: CKQUORUM and FLUSHCONFIG commands back ported.
(Salvatore Sanfilippo)
</ChangeLog>
|
Wed, 6 May 2015
|
[ 01:24 osa ]
Fix rc.d script for allow to specify the config path in rc.conf.
Bump PORTREVISION.
PR: 199607
|
[ 01:12 osa ]
Upgrade from 3.0.0 to 3.0.1.
<ChangeLog>
--[ Redis 3.0.1 ] Release date: 5 May 2015
Upgrade urgency: LOW for Redis, Sentinel, Cluster.
* [FIX] Sentinel memory leak due to hiredis fixed. (Salvatore Sanfilippo)
* [FIX] Sentinel memory leak on duplicated instance. (Charsyam)
* [FIX] Redis crash on Lua reaching output buffer limits. (Yossi Gottlieb)
* [FIX] Sentinel flushes config on +slave events. (Bill Anderson)
</ChangeLog>
|
Tue, 7 Apr 2015
|
[ 22:14 osa ]
Upgrade from 3.0.0-rc4 to 3.0.0.
<ChangeLog>
--[ Redis 3.0.0 ] Release date: 1 Apr 2015
Changes between RC6 and 3.0.0 stable:
>> General changes
* Fixes to diskless replication. (Oran Agra)
* Test for BLPOP replication on role change. (Salvatore Sanfilippo)
* prepareClientToWrite() error handling improvements. (Salvatore Sanfilippo)
* Remove dict.c no longer used function. (Salvatore Sanfilippo)
(Only the first 15 lines of the commit message are shown above )
|
Wed, 25 Mar 2015
|
[ 09:33 marino ] (Only the first 10 of 29 ports in this commit are shown above. )
databases category: Remove $PTHREAD_LIBS
Note: virtuoso did not pass check-plist from before, so it was fixed.
approved by: PTHREAD blanket
|
Sat, 21 Feb 2015
|
[ 02:47 osa ]
Upgrade from 3.0.0-rc3 to 3.0.0-rc4.
<ChangeLog>
--[ Redis 3.0.0 RC4 (version 2.9.104) ] Release date: 13 feb 2015
Upgrade urgency: High for Redis if you use LRU eviction, low otherwise.
This is the 4th release candidate of Redis 3.0.0, it fixes problems with
LRU eviction that are not present in older release (2.8.x is not affected)
and adds new tools to inspect latency and load-test LRU.
>> General changes
* [FIX] redis-cli CSV output NIL spurious newline removed. (Matt Collier) (Only the first 15 lines of the commit message are shown above )
|
Wed, 4 Feb 2015
|
[ 01:38 osa ]
Upgrade from 3.0.0-rc2 to 3.0.0-rc3.
<ChangeLog>
--[ Redis 3.0.0 RC3 (version 2.9.103) ] Release date: 30 jan 2015
Upgrade urgency: High for Redis Cluster users, Low otherwise.
This is the third release candidate for Redis 3.0.0, the new RC fixes
several critical issues with Redis Cluster.
>> General changes
* [FIX] AOF bug unlikely to happen in practice and mostly harmless: child
process segfaults when parent is not reachable via pipe. (Sun He) (Only the first 15 lines of the commit message are shown above )
|
Sat, 17 Jan 2015
|
[ 19:23 osa ]
Upgrade from 3.0.0-rc1 to 3.0.0-rc2.
<ChangeLog>
--[ Redis 3.0.0 RC2 (version 2.9.102) ] Release date: 13 jan 2014
Upgrade urgency: LOW.
This is the second release candidate of Redis Cluster. The major changes
are back porting of things implemented into the unstable branch while
this was still possible (with the new development model adopted only
bug fixes will be merged in the future).
RC2 also fixes a few Redis Cluster non critical bugs.
(Only the first 15 lines of the commit message are shown above )
|
Mon, 20 Oct 2014
|
[ 10:41 bapt ] (Only the first 10 of 451 ports in this commit are shown above. )
Cleanup plist
|
Fri, 10 Oct 2014
|
[ 21:18 osa ]
Upgrade from 3.0.0-beta8 to 3.0.0-rc1.
<ChangeLog>
--[ Redis 3.0.0 RC1 (version 2.9.101) ] Release date: 9 oct 2014
This is the first release candidate of Redis Cluster.
>> General changes
* [FIX] An very large number of small fixes, old and new, merged in the
context of a the issue #1906. Please see the issue page here
for exact credits: https://github.com/antirez/redis/pull/1906
of each commit. (Matt Stancliff and many others).
* [FIX] SAVE is no longer propagated to AOF / slaves. (Only the first 15 lines of the commit message are shown above )
|
Tue, 9 Sep 2014
|
[ 22:38 osa ]
Upgrade from 3.0.0-beta6 to 3.0.0-beta8.
<ChangeLog>
--[ Redis 3.0.0 Beta 8 (version 2.9.57) ] Release date: 29 jul 2014
This is the 8th beta of Redis 3.0.0.
>> General changes
* [FIX] Solaris compilation issues. (Matt Stancliff, Salvatore Sanfilippo)
* [FIX] Allow shared integer objects if maxmemory policy is not LRU based.
(Salvatore Sanfilippo)
* [FIX] PFSELFTEST: less false positives. (Salvatore Sanfilippo)
* [FIX] Fail SYNC if background save child aborted due to a signal. (Yossi (Only the first 15 lines of the commit message are shown above )
|
Tue, 5 Aug 2014
|
[ 06:36 bapt ]
USES=execinfo
|
Fri, 20 Jun 2014
|
[ 09:12 osa ]
Upgrade from 3.0.0-beta5 to 3.0.0-beta6.
<ChangeLog>
* [FIX] Fix software watchdog signal handler crash due to re-entering.
* [FIX] Better Lua number -> string conversion for Lua scripts.
* [FIX] Serious replication bug when min-slaves-* feature is used in slaves
configuration fixed.
* [FIX] Blocking pop on lists now works when the list is created by commands
other than *PUSH* (for example SORT STORE).
>> Cluster changes
* [FIX] CRITICAL: For a bug in the implementation of CLUSTER SET-CONFIG-EPOCH
introduced with beta-3 (especially beta-4 where the command
is actually used by redis-trib), a configEpoch for a node could
jump backward, breaking the eventual consistency property of the
slots -> nodes mapping in the cluster.
</ChangeLog>
|
Tue, 10 Jun 2014
|
[ 07:39 olgeni ] (Only the first 10 of 388 ports in this commit are shown above. )
Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. Categories D-F.
CR: D196
Approved by: portmgr (bapt)
|
Mon, 2 Jun 2014
|
[ 01:42 osa ]
Upgrade from 3.0.0-beta2 to 3.0.0-beta5.
Fix lua/luajit-specific extra patches.
Stagefy.
<ChangeLog>
--[ Redis 3.0.0 Beta 5 (version 2.9.54) ] Release date: 26 may 2014
This is the 5th beta of Redis 3.0.0. It does not include any real
worthwhile change (just three days passed since the previous beta), but
fixes two stupid bugs preventing cluster tests to pass.
--[ Redis 3.0.0 Beta 4 (version 2.9.53) ] Release date: 23 may 2014
This is the fourth beta of Redis 3.0.0. (Only the first 15 lines of the commit message are shown above )
|
Mon, 26 May 2014
|
[ 15:28 bapt ] (Only the first 10 of 84 ports in this commit are shown above. )
Replace lang/lua with the new lang/lua51
lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1
Make the default lua lua52
Make all lua ports using USES=lua
Approved by: portmgr (implicit)
|
Sun, 23 Mar 2014
|
[ 16:51 osa ]
Upgrade from 3.0.0-beta1 to 3.0.0-beta2.
Rewrite entries for pkg-plist.
<ChangeLog>
>> General
* [FIX] Sometimes the absolute config file path was obtained in a wrong way.
This happened when there was a "dir" directive inside the config file
and at the same time the configuration file was given as a relative
path to redis-server or redis-sentinel executables.
* [FIX] redis-cli: Automatically enter --slave mode when SYNC or PSYNC are
called during an interactive session.
* [FIX] BITCOUNT: fixed unaligned access causing issues in sparc and other
archs not capable of dealing with unaligned accesses. This also makes (Only the first 15 lines of the commit message are shown above )
|
Mon, 17 Feb 2014
|
[ 22:19 osa ]
Upgrade from 2.8.6 to 3.0.0-beta1.
<ChangeLog>
--[ Redis 3.0.0 Beta 1 (version 2.9.50) ] Release date: 11 Feb 2014
This is the first beta of Redis 3.0.0 (official version is 2.8.50).
The following is a list of improvements in Redis 3.0, compared to Redis 2.8.
* [NEW] Redis Cluster: a distributed implementation of a subset of Redis.
* [NEW] New "embedded string" object encoding resulting in less cache
misses. Big speed gain under certain work loads.
* [NEW] WAIT command to block waiting for a write to be transmitted to
the specified number of slaves.
* [NEW] MIGRATE connection caching. Much faster keys migraitons.
* [NEW] MIGARTE new options COPY and REPLACE.
* [NEW] CLIENT PAUSE command: stop processing client requests for a
specified amount of time.
</ChangeLog>
|
[ 22:00 osa ]
Upgrade from 2.8.4 to 2.8.6.
<ChangeLog>
--[ Redis 2.8.6 ] Release date: 13 Feb 2014
# UPGRADE URGENCY: HIGH for Redis, LOW for Sentinel. Redis users using Lua
scripts with EVALSHA and attached slaves and/or AOF
persistence should consider upgrading ASAP.
* [FIX] Fixed an critical EVALSHA script cache bug: scripts executed may not
propagate to AOF / Slaves correctly under certain conditions.
See issue #1549 at Github for more information.
* [FIX] Fixed multiple bugs resulting into closing the link with master or slave
during replication without good reasons. This will result in useless (Only the first 15 lines of the commit message are shown above )
|
[ 13:22 gahr ]
- Convert to USES=tcl gmake
|
Tue, 14 Jan 2014
|
[ 10:28 osa ]
Upgrade from 2.8.3 to 2.8.4.
<ChangeLog>
# UPGRADE URGENCY: MODERATE for Redis and Sentinel.
* [FIX] Makefile compatibility with non common make variants improved.
* [FIX] SDIFF crash in very unlikely to trigger state fixed.
* [FIX] Config rewriting fixed: don't wipe options unknown to the rewrite
process.
* [FIX] Set TCP port to 0 works again to disable TCP networking.
* [FIX] Fixed replication with old Redis instances as masters by not
sending REPLCONF ACK to them.
* [FIX] Fix keyspace notifications rewrite and CONFIG GET output.
* [FIX] Fix RESTORE TTL handling in 32 bit systems (32 bit overflow).
* [NEW] Sentinel now has a run time configuration API.
* [NEW] Log when we lost connection with master or slave.
* [NEW] When instance is turned from slave to master now inherits the
old master replication offset when possible. This improves the
Sentinel failover procedure.
</ChangeLog>
|
Wed, 11 Dec 2013
|
[ 16:55 osa ]
Upgrade from 2.8.2 to 2.8.3.
Use modern name for dependent libraries.
<ChangeLog>
# UPGRADE URGENCY: MODERATE for Redis, HIGH for Sentinel.
* [FIX] Sentinel instance role sampling fixed, the system is now more
reliable during failover and when reconfiguring instances with
non matching configuration.
* [FIX] Inline requests are now handled even when terminated with just LF.
* [FIX] Replication timeout handling greatly improved, now the slave is able
to ping the master while removing the old data from memory, and while
loading the new RDB file. This avoid false timeouts sensed by
masters.
* [FIX] Fixed a replication bug involving 32 bit instances and big datasets
hard to compress that resulted into more than 2GB of RDB file sent.
* [FIX] Return error for inline requests with unbalanced quotes.
* [FIX] Publish the slave replication offset even when disconnected from the
master if there is still a cached master instance.
</ChangeLog>
|
Tue, 3 Dec 2013
|
[ 17:04 osa ]
Upgrade from 2.8.1 to 2.8.2.
<ChangeLog>
# UPGRADE URGENCY: MODERATE for both Redis and Sentinel.
* [FIX] Sentinel better desynchronization to avoid split-brain elections
where no Sentinel managed to get elected.
* [FIX] Stop accepting writes on "MISCONF" error only if master, not slave.
* [FIX] Reply to PING with an error on "MISCONF" errors.
</ChangeLog>
|
Thu, 28 Nov 2013
|
[ 17:56 osa ]
Upgrade from 2.8.0 to 2.8.1.
<ChangeLog>
# UPGRADE URGENCY: LOW for Redis, CRITICAL for Senitnel. You don't need to
upgrade your Redis instances but it is highly recommended
to upgrade and restart all the Sentinel processes.
* [FIX] Fixed a bug in "new Sentinel" config propagation.
* [FIX] Fixed a false positive in Redis tests.
</ChangeLog>
|
Sat, 23 Nov 2013
|
[ 11:02 osa ]
Upgrade from 2.8.0-rc6 to 2.8.0.
<ChangeLog>
# UPGRADE URGENCY: LOW, unless you want to upgrade to new Sentinel code.
* [FIX] Fixed an error in rdbWriteRaw() that should have no practical impact.
* [NEW] Log the new master when SLAVEOF command is used.
* [NEW] Sentinel code synchronized with the unstable branch, the new Sentinel
is a reimplementation that uses more reliable algorithms.
</ChangeLog>
|
Wed, 6 Nov 2013
|
[ 16:02 osa ]
Update from 2.8.0-rc5 to 2.8.0-rc6.
<ChangeLog>
--[ Redis 2.8 Release Candidate 5 (2.7.106) ] Release date: 6 Nov 2013
This is the 6th release candidate of Redis 2.8 (official version is 2.7.106).
# UPGRADE URGENCY: LOW, only new features back ported, no fixes.
* [NEW] SCAN, SSCAN, HSCAN, ZSCAN commands.
</ChangeLog>
|
Sat, 12 Oct 2013
|
[ 06:28 osa ]
Update from 2.8.0-rc4 to 2.8.0-rc5.
<ChangeLog>
--[ Redis 2.8 Release Candidate 5 (2.7.105) ] Release date: 9 Oct 2013
This is the 5th release candidate of Redis 2.8 (official version is 2.7.105).
Important bugs fixed inside.
# UPGRADE URGENCY: HIGH because of many non critical replication bugs fixed.
* [FIX] redis-cli: don't crash with --bigkeys when the key no longer exist.
* [FIX] Allow AUTH / PING when disconnected from slave and serve-stale-data is
no.
* [FIX] PSYNC: safer handling of PSYNC requests with offsets in the future.
* [FIX] Replication: Fix master timeout detection.
* [FIX] Replication: Correctly install the write handler after successful PSYNC.
</ChangeLog>
|
Fri, 20 Sep 2013
|
[ 16:13 bapt ] (Only the first 10 of 927 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
|
Fri, 30 Aug 2013
|
[ 14:40 osa ]
Update from 2.8.0-rc3 to 2.8.0-rc4.
<ChangeLog>
--[ Redis 2.8 Release Candidate 4 (2.7.104) ] Release date: 30 Aug 2013
This is the fourth release candidate of Redis 2.8 (official version is 2.7.104).
Important bugs fixed inside.
# UPGRADE URGENCY: HIGH because of the EVAL memory leak.
* [FIX] Fixed a serious EVAL memory leak in the Lua stack.
* [FIX] Fixed server startup when no IPv6 address exists in any interface.
* [FIX] Send MISCONFIG error when BGSAVE fails because can't fork.
* [FIX] Memory efficiency with large (> a few kbytes) values improved
considerably.
* [NEW] DEBUG SDSLEN for sds memory debugging.
</ChangeLog>
|
Thu, 22 Aug 2013
|
[ 04:40 osa ]
Add support for lang/lua, disabled by default.
Do not bump PORTREVISION.
|
Tue, 20 Aug 2013
|
[ 17:24 osa ]
Update from 2.8.0-rc2 to 2.8.0-rc3.
Disable debug flags.
<ChangeLog>
# UPGRADE URGENCY: HIGH
* [FIX] Improved expired keys collection algorithm. Even under heavy load keys
to be expired can't accumulate because of lack of CPU time.
* [FIX] Replication speed regression fixed (issue #1238).
* [FIX] Fixed an hard to trigger PSYNC bug.
* [FIX] Fixed Issue #1240, ZUNIONSTORE could lead to wrong result.
* [NEW] Add per-db average TTL information in INFO output.
* [NEW] redis-benchmark improvements.
* [NEW] dict.c API wrong usage detection.
</ChangeLog>
|
Tue, 13 Aug 2013
|
[ 17:39 osa ]
Update from 2.6.14 to 2.8.0-rc2.
Changes: https://raw.github.com/antirez/redis/2.8/00-RELEASENOTES
|
Thu, 20 Jun 2013
|
[ 15:31 osa ]
Update from 2.6.13 to 2.6.14.
PR: 179745
<ChangeLog>
UPGRADE URGENCY: HIGH because of the following two issues:
* Lua scripting + Replication + AOF in slaves problem (see Issue #1164).
* AOF + expires possible race condition (see Issue #1079).
* [FIX] AOF bug: expire could be removed from key on AOF rewrite.
* [FIX] Allow writes from scripts called by AOF loading in read-only slaves.
* [FIX] Sentinel: parse new verison of INFO replication output correctly.
* [NEW] Reset masterauth if an empty string is configured.
</ChangeLog>
|
Fri, 3 May 2013
|
[ 17:38 osa ]
Update from 2.6.11 to 2.6.13.
PR: 178124
<ChangeLog>
[ Redis 2.6.13 ]
UPGRADE URGENCY: MODERATE, nothing very critical but upgrading
is suggested if you experienced:
1) Strange issues with Lua scripting.
2) Not reconfigured reappearing master using Sentinel.
3) Server continusly trying to save on save error.
(Only the first 15 lines of the commit message are shown above )
|
Tue, 12 Mar 2013
|
[ 18:31 osa ]
Update from 2.6.10 to 2.6.11.
<ChangeLog>
UPGRADE URGENCY: LOW, however updating is encouraged if you have many instances
per server and you want to lower the CPU / energy usage.
* [BUGFIX] Replication: more strict error checking for master PING reply.
* [BUGFIX] redis-cli: use keepalive socket option for improved reliability.
* [BUGFIX] Allow AUTH while loading the DB in memory.
* [BUGFIX] Don't segfault on unbalanced quotes while parsing config file.
* [IMPROVED] serverCron() frequency is now a runtime parameter (was REDIS_HZ).
* [IMPROVED] Use a lot less CPU when idle, even with many configured DBs.
</ChangeLog>
|
Mon, 11 Feb 2013
|
[ 18:38 osa ]
Update from 2.6.9 to 2.6.10.
<ChangeLog>
UPGRADE URGENCY: MODERATE, this release contains many non-critical fixes
and many small improvements.
* [BUGFIX] redis-cli --rdb, fixed when the server sends newlines to ping.
* [BUGFIX] redis-cli, minor fixes on connection handling, prompt.
* [BUGFIX] Slow log: don't log EXEC, just executed commands.
* [BUGFIX] On failed shutdown don't try again and again compulsively.
* [BUGFIX] Fix build on sunos without backtrace().
* [BUGFIX] UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply (see 742e580)
* [BUGFIX] Lua struct library was broken, upgraded.
* [BUGFIX] Fix a bug in srandmemberWithCountCommand() with count argument.
* [BUGFIX] Test: disable clients timeout to prevent issues on slow systems.
* [BUGFIX] Sentinel: don't advertise the promoted slave as master too early.
* [IMPROVED] Whitelist SIGUSR1, see http://redis.io/topics/signals.
* [IMPROVED] Simpler to understand redis-cli --bigkeys output.
* [IMPROVED] Test now works with tclsh > 8.5.
* [IMPROVED] Added option to turn of the Nagle algorithm in slave socket.
* [IMPROVED] Optionally use SO_KEEPALIVE to detect dead peers.
</ChangeLog>
|
Mon, 21 Jan 2013
|
[ 17:14 osa ]
Update from 2.6.8 to 2.6.9.
<ChangeLog>
UPGRADE URGENCY: MODERATE if you use replication.
* [BUGFIX] Changing master at runtime (SLAVEOF command) in presence of
network problems, or in very rapid succession, could result
in non-critical problems (GitHub Issue #828).
* [IMPROVED] CLINGET GETNAME and SETNAME to set and query connection names
reported by CLIENT LIST. Very useful for debugging of
problems.
* [IMPROVED] redis-cli is now able to transfer an RDB file from a remote
server to a local file using the --rdb <filename> command
line option.
</ChangeLog>
|
Sat, 12 Jan 2013
|
[ 15:48 osa ]
Update from 2.6.7 to 2.6.8.
Add experimental support for lang/luajit, disabled by default.
<ChangeLog>
UPGRADE URGENCY: MODERATE if you use Lua scripting. Otherwise LOW.
* [BUGFIX] Multiple fixes for EVAL (issue #872).
* [BUGFIX] Fix overflow in mstime() in redis-cli and benchmark.
* [BUGFIX] Fix Linux / PPC64 behavior by correcting endianess detection.
* [BUGFIX] Fix NetBSD build by defining _XOPEN_SOURCE appropriately.
* [BUGFIX] Added missing license and copyright in a few places.
* [BUGFIX] Better error reporting when fd event creation fails.
</ChangeLog>
|
Tue, 4 Dec 2012
|
[ 04:30 osa ]
Update from 2.6.6 to 2.6.7.
PR: 174084
Feature safe: yes
<ChangeLog>
UPGRADE URGENCY: MODERATE (unless you BLPOP using the same key multiple times).
* [BUGFIX] Don't crash if BLPOP & co are called with the same key repeated
multiple times (Issue #801).
</ChangeLog>
|
Fri, 30 Nov 2012
|
[ 12:49 osa ]
Update from 2.6.5 to 2.6.6.
Feature safe: yes
<ChangeLog>
UPGRADE URGENCY: CRITICAL if you experienced one more more crashes.
MODERATE if Redis is running fine for you.
* [BUGFIX] Jemalloc updated to 3.2.0.
</ChangeLog>
|
Sat, 24 Nov 2012
|
[ 13:48 osa ]
Fix pkg-plist for packages.
Feature safe: yes
|
Thu, 22 Nov 2012
|
[ 18:17 osa ]
Update from 2.6.4 to 2.6.5.
Feature safe: yes
<ChangeLog>
UPGRADE URGENCY: MODERATE
Warning: this release of Redis introduces a different behavior in MULTI/EXEC
handling of errors. This was done because the new behavior is safer
compared to the old one, and should not break any code targeting
Redis 2.6 in a critical way.
For more information check http://redis.io/topics/transactions
* [IMPROVED] RDB/AOF childern now log amount of additional memory used
because of copy on write.
* [BUGFIX] MIGRATE non critical fixes (see commits for details).
* [BUGFIX] MULTI/EXEC: now EXEC aborts on errors before EXEC.
* [BUGFIX] Fix integer overflow in zunionInterGenericCommand resulting
into Z[INTER|UNION][STORE] commands to crash under extremely
unlikely conditions (almost impossible in real world).
* [BUGFIX] EVALSHA is now case insensitive (and will not crash).
</ChangeLog>
|
Thu, 8 Nov 2012
|
[ 21:37 osa ]
Update from 2.6.3 to 2.6.4.
Feature safe: yes
|
Wed, 7 Nov 2012
|
[ 11:56 osa ]
Update from 2.6.2 to 2.6.3.
Feature safe: yes
<ChangeLog>
* [BUGFIX] Fixed 32 bit build on Linux systems.
* [BUGFIX] MONITOR and CLIENT LIST: propertly display unix socket clients.
* [IMPROVED] redis-cli inline help updated.
* [IMPROVED] Marginally more robust AOF child handling.
* [IMPROVED] Fixed a few typos in comments.
</ChangeLog>
|
Fri, 26 Oct 2012
|
[ 20:53 osa ]
Update from 2.6.0 to 2.6.2.
Feature safe: yes
<ChangeLog>
[ Redis 2.6.2 ]
* [BUGFIX] The compilation fix for RHLE5 in 2.6.1 was broken. Fixed.
* [IMPROVED] Linenoise updated, now supports Ctrl+w.
[ Redis 2.6.1 ]
* [BUGFIX] Compilation on Linux < 2.6.17 or glibc < 2.6 fixed (RHLE5 & co).
</ChangeLog>
|
Wed, 24 Oct 2012
|
[ 17:34 osa ]
Update from 2.6.0rc8 to 2.6.0.
Feature safe: yes
<ChangeLog>
* [BUGFIX] Allow AUTH when server is in -BUSY state because of a slow script.
* [BUGFIX] MULTI/EXEC flow now makes sense when observed in MONITOR
* [BUGFIX] SCRIPT KILL now uses different error prefixes for different errors.
* [BUGFIX] Default memory limit for 32bit archs lowered from 3.5 to 3 GB.
* [BUGFIX] redis-check-dump is now compatible with RDB files generated by 2.6.
* [IMPROVED] New field in INFO: slave_read_only.
</ChangeLog>
|
Sat, 6 Oct 2012
|
[ 13:54 osa ]
Update from 2.6.0rc7 to 2.6.0rc8.
Add TEST option for running unit tests.
Add test and regression-test targets.
Remove needless patch.
New Makefile header convention.
PR: 172396
<ChangeLog>
* [BUGFIX] Fixed compilation on FreeBSD.
* [IMPROVED] SRANDMEMBER <count> that returns multiple random elements.
* [IMPROVED] Sentinel backported to 2.6. It will be taken in sync with 2.8.
* [IMPROVED] Helper function for scripting to return errors and status replies.
* [IMPROVED] SORT by nosort [ASC|DESC] uses sorted set elements ordering.
* [BUGFIX] Better resistence to system clock skew.
* [IMPROVED] Warn the user when the configured maxmemory seems odd.
* [BUGFIX] Hashing function is now murmurhash2 for security purposes.
* [IMPROVED] Install script no longer uses a template but redis.conf itself.
</ChangeLog>
|
Wed, 19 Sep 2012
|
[ 18:20 osa ]
Update from 2.6.0rc6 to 2.6.0rc7.
<ChangeLog>
UPGRADE URGENCY: HIGH
* [BUGFIX] Theoretical bug in ziplist fixed.
* [BUGFIX] Better out of memory handling (Log produced in log file).
* [BUGFIX] Incrementally flush RDB file on slave side while performing the
first synchronization with the master. This makes Redis less
blocking in environments where disk I/O is slow.
* [BUGFIX] Don't crash with Lua's redis.call() without arguments.
* [BUGFIX] Don't crash after a big number of Lua calls on 32 bit systems
because of a failed assertion.
* [BUGFIX] Fix SORT behaviour when called from scripting. (Only the first 15 lines of the commit message are shown above )
|
Fri, 3 Aug 2012
|
[ 04:24 osa ]
Fix whitespaces, remove needless double quotes.
|
[ 04:21 osa ]
Add license.
|
Thu, 2 Aug 2012
|
[ 19:07 osa ]
Update from 2.6.0-rc5 to 2.6.0-rc6.
|
Thu, 19 Jul 2012
|
[ 17:29 osa ]
Remove databases/redis-scripting, use databases/redis-devel instead.
Update CONFLICTS for databases/redis and databases/redis-devel.
|
Tue, 17 Jul 2012
|
[ 18:23 osa ] (Only the first 10 of 12 ports in this commit are shown above. )
Readding the removed port redis-devel.
Update to the latest development version 2.6.0-rc5.
|
Number of commits found: 205 (showing only 100 on this page) |