Skip to content

Releases: swift-server/RediStack

RediStack 1.0.0 Alpha 5

11 Jul 21:44

Choose a tag to compare

Pre-release

API Docs are always available at docs.redistack.info

Major

  • The library module was renamed from RedisNIO to RediStack !73
  • RedisNIOError was renamed to RedisClientError !72
    • .responseConversion(to:) was renamed to .failedRESPConversion(to:)
    • .unsupportedOperation(method:message:) was removed
  • RedisCommandHandler is no longer open (now public final) !55
  • RedisCommandContext was renamed to RedisCommand !66
  • RedisCommand.command was renamed to message and the initializer signature updated to match its properties (2605763)
  • RedisCommandHandler.init(logger:) is now .init(initialQueueCapacity:logger:) !66
  • The names for the ChannelPipeline handlers are now explicitly named !66
    • RediStack.OutgoingHandler
    • RediStack.IncomingHandler
    • RediStack.CommandHandler
  • The Redis namespace enum was removed !71
    • The makeConnection factory method was moved to RedisConnection.connect
      • This method now requires a NIO.EventLoop instance, no longer creating a MultiThreadedEventLoopGroup for you
      • This method also now supports overriding the default NIO.ClientBootstrap and is the preferred way of building your own pipelines
  • RedisConnection.init is now internal, all connections are made with RedisConnection.connect !71
  • A few different logs have had their severity adjusted
    • Sending a command while the connection is closed is now a warning !71
  • Sorted Set methods zadd, zunionstore, and zinterstore, have stronger type safety with options defined as enums !70 and (0ecb3c1)
  • RESPValueConvertible is no longer used as an existential !69
    • This also changes RedisConnection.send(command:with:) to require the RESPValue arguments up front, rather than doing the conversion for you
  • RESPValue and RESPValueConvertible had many internal implementations changed !67
    • RESPValue.array no longer uses ContiguousArray
    • ContiguousArray is no longer RESPValueConvertible
    • several of the computed properties on RESPValue will no longer behave exactly the same, or have moved to the new RediStackTestUtils module
  • Redis.makeDefaultClientBootstrap(using:) was renamed and moved to ClientBootstrap.makeRedisTCPClient(group:) !64
    • The implementation for adding the "default" RESP handlers is now publicly available with Channel.addBaseRedisHandlers()
  • RESPTranslator saw a major refactor !63
    • It is now a struct instead of an enum
    • ByteBuffer.writeRESPValue(_:) is a new method carrying most of the implementation for writing out RESPValue
    • RESPTranslator.ParsingResult was removed
    • RESPTranslator now updates the passed in ByteBuffer.readerIndex on successful parses
    • RESPTranslator.parseBytes(from:) uses the passed in ByteBuffer entirely for position and recursion
  • RESPValueConvertible.init(_:) was renamed to .init(fromRESP:) !56

Minor

  • A new module RediStackTestUtils is available for some helpers with writing tests for RediStack !67

Patch

  • The observable behavior of closing a channel should be more straight forward and dependable !71

RedisNIO 1.0.0 Alpha 3

11 Jul 21:35

Choose a tag to compare

Pre-release

Major

  • NIO is no longer exported, you will need to explicitly import NIO !57
  • errorCaught in RedisCommandHandler now fails all pending responses, and does not increment RedisMetrics.commandFailureCount !59
  • EventLoopFuture.mapFromRESP has been renamed to `EventLoopFuture.convertFromRESPValue !60

Minor

  • The APPEND command is now available with the append(_:to:) method !61

RedisNIO 1.0.0 Alpha 2.1

11 Jul 21:34

Choose a tag to compare

Pre-release

Minor

  • Added new RedisConnection.defaultPort static property set to 6379 for users to reference !51

RedisNIO 1.0.0 Alpha 2

11 Jul 21:33

Choose a tag to compare

Pre-release

Major

  • Added explicit conformance to RESPValueConvertible for Foundation.Data to resolve a bug where it received conformance from Collection (!50)

RedisNIO 1.0.0 Alpha 1.1.1

11 Jul 21:33

Choose a tag to compare

Pre-release

Patch

  • Fix warning from default in switch (788f69de)

RedisNIO 1.0.0 Alpha 1.1

11 Jul 21:28

Choose a tag to compare

Pre-release

Minor

  • Improve debugging of RESPValue (d4584924)

RedisNIO 1.0.0 Alpha 1

11 Jul 21:27

Choose a tag to compare

RedisNIO 0.10.0

11 Jul 21:22

Choose a tag to compare

RedisNIO 0.10.0 Pre-release
Pre-release

This release introduces a "minor" breaking change that is large enough that it warrants releasing it as a major revision.

SE-0226 Package Manager Target Dependency Resolution introduces a change to expected form of packages and their naming.

To be compliant with future changes to SPM - it was decided to rename the package from redis-nio (matching the module name) to swift-redis-nio-client to match the repo instead.

Major

  • Renamed package from redis-nio to swift-redis-nio-client !47

RedisNIO 0.9.0: Renaming

06 Jun 17:06
a765914

Choose a tag to compare

Pre-release

This release brings a major breaking change. GitHub will forward most requests from the previous repository URL to the new one - but in code it has more specific ramifications.

This is necessary to align with the goals of the SSWG and to solve problems that will exist in the future before it causes real issues.

For further context into the discussion, see the following threads on the Swift Forums:

Major

  • Renamed the repo in GitHub from nio-redis to swift-redis-nio-client
  • Renamed the package from nio-redis to redis-nio
  • Renamed the NIORedis module to RedisNIO
  • Renamed NIORedisError to RedisNIOError
  • Changed references to NIORedis to RedisNIO in object labels such as NIO Channel Handlers & Loggers

Minor

  • Changed all references in copyright blocks, project files (README, LICENSE, etc.) to refer to the project as RedisNIO

NIORedis 0.8.0: Blocking & Pub/Sub

06 Jun 16:46
7ae2024

Choose a tag to compare

Pre-release

Major

  • Added SwiftMetrics dependency (#41)
  • Changed ChannelPipeline registration of handlers for RedisConnection to now have a reliable name (d0da3e7)

Minor

  • Added bzpopmin and bzpopmax convenience methods for sorted sets (#42)
  • Added brpop, blpop, and brpoplpush convenience methods for lists (#43)

Patch

  • Update legal notices for SwiftLog & SwiftMetrics (b0d0882)
  • Fixed minor comment issues (d9d61ba)