Skip to content

Releases: RedisGears/rgsync

Version 1.2.0

27 Apr 06:16
7861d51
Compare
Choose a tag to compare

Changes

  • Updating dependencies to latest (#111)
  • Added db2 support (#58)

Version 1.1.4

04 Jan 15:44
7439160
Compare
Choose a tag to compare

This is a maintenance release.

Changes

  • Pinning pymongo version (#101)

Version 1.1.3

09 Dec 12:03
acb2af7
Compare
Choose a tag to compare

This is a maintenance release for version 1.1.
Update urgency: Low - No need to upgrade unless there are new features you want to use.

Minor changes:

  • #99 INSERT OR REPLACE for SQLite for safer updating
  • #94 Adding cluster support for MongoDB write-behind
  • #93 Flattening the JSON structure in MongoDB

Version 1.1.2

22 Nov 10:21
ddcc906
Compare
Choose a tag to compare

This is a maintenance release for version 1.1.
Update urgency: Low

Minor changes:

  • #89 MySQL - Changed update query instead of merge strategy …
  • #91 CentOS 8 / RHEL 8 Support

Version 1.1.1

17 Nov 10:21
54e875e
Compare
Choose a tag to compare

Changes

  • Pinning redis to 3.5.3 and updating minor version (#90)
  • Fixing pyproject trove, adding python 3.10 (#87)

Version 1.0.3

04 Oct 21:03
120749b
Compare
Choose a tag to compare

This is a maintenance release for version 1.0.
Update urgency: Medium

New Connectors:

Bug Fixes:

  • #57 Fix 'exactly once' MySQL execution error
  • #69 Remove credentials from logging statement
  • #63 Postgresql connector lifted separately

1.0.2

01 Mar 08:43
3dc7d49
Compare
Choose a tag to compare

This is a maintenance release for version 1.0.
Update urgency: Medium

  • New Connectors:
    • Redis connector - Sync hashes to another Redis database (big thank to @socialratnesh for contributing this connector)
    • MSSQL connector - Sync hashes to MS SQL database (big thank to @viragtripathi for contributing this connector)

1.0.1

01 Jul 17:19
5da1bfc
Compare
Choose a tag to compare

This is a maintenance release for version 1.0.
Update urgency: Medium

  • Features:
    • #25 - Added a transformation step to transform the data into a hash when another data structure is followed to write behind (like zset, lists, ..)

1.0 GA

12 May 13:38
Compare
Choose a tag to compare

This is the 1.0 GA version of rgsync, a library that contains several database synchronisation recipes for Redis that can will register functions in RedisGears.
Supported recipes currently are

  • Write-Behind
  • Write-Through

Please read the readme of the 1.0 branch for more information.

Enhancements (compared to last release):

  • #23 - Connection arguments can be callbacks which will be called on every reconnect.
    Example:
Read from RedisGears configuration using configGet (https://oss.redislabs.com/redisgears/master/runtime.html#configget) function

def User():
	return configGet('MySqlUser')

def Password():
	return configGet('MySqlPassword')

def DB():
	return configGet('MySqlDB')

connection = MySqlConnection(User, Password, DB)

Note:
This release is compatible with RedisGears v1.0.0 and above.

0.2.0

27 Apr 14:36
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Version 0.2.0 of rgsync

Features:

  • Support SQLite target

Note:
This release compatible with RedisGears 1.0-RC1 and above.