Skip to content

Releases: ekondur/RedisUI

v1.9.0

20 Jun 13:34

Choose a tag to compare

What's Changed

  • Improve Redis key browsing with lazy previews, lossless pagination, a… by @ekondur in #52

Full Changelog: v1.8.0...v1.9.0

v1.8.0

25 Mar 16:01

Choose a tag to compare

What's Changed

  • Support more Redis types #48
  • TTL and expiration management #49

Full Changelog: v1.7.0...v1.8.0

v1.7.0

25 Mar 16:00
7c4c9e9

Choose a tag to compare

What's Changed

Full Changelog: v1.6.0...v1.7.0

v1.6.0

22 Mar 15:10
8e183fc

Choose a tag to compare

What's Changed

Full Changelog: v1.5.0...v1.6.0

v1.5.0

22 Mar 14:57
3bd0cdd

Choose a tag to compare

What's Changed

Full Changelog: v1.4.0...v1.5.0

1.4.0

22 Jun 14:41

Choose a tag to compare

What's Changed

image

Full Changelog: v1.3.1...v1.4.0

1.3.1

14 Jun 11:09

Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.3.1

1.3.0

02 Apr 20:19
d5d7900

Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.3.0

v1.2.0

01 Apr 19:53
73dfd6a

Choose a tag to compare

What's Changed

ConfigurationOptions options = new ConfigurationOptions
{
    EndPoints = { { "my-redis.cloud.redislabs.com", 6379 } },
    User = "default",  // use your Redis user. More info https://redis.io/docs/management/security/acl/
    Password = "secret", // use your Redis password
    Ssl = true,
    SslProtocols = System.Security.Authentication.SslProtocols.Tls12                
};
app.UseRedisUI(new RedisUISettings
{
    ConfigurationOptions = options
});

Full Changelog: v1.1.0...v1.2.0

1.1.0

18 Mar 19:16
83c5180

Choose a tag to compare

#31 Added Key Deletion Functionality