Skip to content

0.1.1-beta1

Pre-release
Pre-release
Compare
Choose a tag to compare
@atakavci atakavci released this 20 Dec 11:15
a407114

Initial Beta release !!

This is the first beta release of the extension for Redis Java client libraries(lettuce and Jedis) to support token-based authentication.

This initial version provides common classes and interfaces in the core to build an infrastructure for both;

  • making it easy to integrate on both client libraries (Jedis & Lettuce)
  • extensibility to provide different identity providers.

As well as core, it introduces the first implementation to integrate Microsoft EntraID into it with entra module.
Basic usage would look like this;

    TokenAuthConfig tokenAuthConfig = EntraIDTokenAuthConfigBuilder.builder()
        .clientId("YOUR_CLIENT_ID").secret("YOUR_SECRET")
        .authority("YOUR_AUTHORITY").scopes("SCOPES").build();

With this tokenAuthConfig provided, clients can build their own way of consuming tokens.