Skip to content

Releases: tair-opensource/RedisShake

release-v2.0.0-20200422

22 Apr 11:52
Compare
Choose a tag to compare

v2.0开始支持断点续传,具体使用文档和架构介绍文档将会在4月23日发布在wiki。

2020-04-22 Alibaba Cloud.

* VERSION: 2.0
* FEATURE: support resuming from breakpoint.

release-v1.6.28-20200421

21 Apr 05:21
Compare
Choose a tag to compare

2020-04-21 Alibaba Cloud.

* VERSION: 1.6.28
* IMPROVE: polish redigo log.

release-v1.6.27-20200330

30 Mar 11:13
Compare
Choose a tag to compare

2020-03-25 Alibaba Cloud.

* VERSION: 1.6.27
* BUGFIX: transaction bug that only using one key but still raised "not
hashed in the same slot" error, see #257.
* IMPROVE: polish redis save rdb failed log, see #256.
* IMPROVE: support mset/msetnx command, see #247.
* IMPROVE: change "rewrite" to "key_exists" in configuration, see #259.

release-v1.6.26-20200206

06 Feb 15:17
Compare
Choose a tag to compare

2020-02-06 Alibaba Cloud.

* VERSION: 1.6.26
* IMPROVE: set auth_type to auth as default, see #237.
see #227.

release-v1.6.25-20200121

20 Jan 22:16
Compare
Choose a tag to compare

2020-01-21 Alibaba Cloud.

* VERSION: 1.6.25
* BUGFIX: in redis 2.8, delete key but convert the returned reply failed.
see #227.

release-v1.7.x-20191231

31 Dec 08:39
Compare
Choose a tag to compare

2019-12-31 Alibaba Cloud.

* VERSION: 1.7-unstable
* FEATURE: add integration test.
* FEATURE: support resuming from break-point.

Pay attention: this is an unstable version so that the package may be updated several times.
当前版本是非稳定版本,如想使用稳定版本请拉取1.6的最新版本。

  • 2019-12-31: MD5 = 740377532efc6778ff3720b72c2de4fc

release-v1.6.24-20191220

20 Dec 09:17
Compare
Choose a tag to compare

2019-12-20 Alibaba Cloud.

* VERSION: 1.6.24
* BUGFIX: cluster receive channel size adjust from 4096 to `sender.count`.
* BUGFIX: update redis-go-cluster to solve the send and receive
concurrency conflict.
* BUGFIX: fix some bugs in redis-go-cluster including io timeout problem,
see #192, #210.
* IMPROVE: set 'psync' to true by default in configuration, if the source
redis version is less than v2.8, switch to false.
* IMPROVE: when target version is less than the source, do restore
directly. Then catch the "Bad data format" and retry by split value. see
#211.
* IMPROVE: catch more errors in `restoreBigRdbEntry` function.
* BUGFIX: merge bad resp CRLF bugfix, see #204.

release-v1.6.23-20191128

28 Nov 12:45
Compare
Choose a tag to compare

2019-11-28 Alibaba Cloud.

    * VERSION: 1.6.23
    * BUGFIX: update redis-go-cluster driver to solve MOVED error in lua
    script.
    * BUGFIX: update redis-go-clister driver to remove the error when meets
    nil bluk string.
    * IMPROVE: add keep_alive in cluster connection.

release-v1.6.22-20191125

25 Nov 10:51
Compare
Choose a tag to compare

2019-11-25 Alibaba Cloud.
2019-11-26 Update: update binary. MD5 of tar file: 7a5cb9e173c3934784b9f695fef313f2

* VERSION: 1.6.22
* BUGFIX: solve MOVED error when key is unicode encoding which is not
solved completed in v1.6.21.
* BUGFIX: update redis-go-cluster to solve the bug of \r\n. see #73 in
redis-full-check.
* BUGFIX: solve flushcount comparison: "flushcount=4097 > 4096" =>
"flushcount=4096 >= 4096".
* IMPROVE: add more log in redis-go-cluster.

release-v1.6.21-20191112

12 Nov 07:05
Compare
Choose a tag to compare

2019-11-12 Alibaba Cloud.

* VERSION: 1.6.21
* BUGFIX: update redis-go-cluster to solve the MOVED error when target
redis type is cluster and key is unicode encoding. Thanks
@shuff1e([email protected]). see#68 in RedisFullCheck.
* IMPROVE: rump: filter key in fetching stage instead of writing stage.