Skip to content

Releases: redis/jvm-redis-authx-entraid

0.1.1-beta1

20 Dec 11:15
a407114
Compare
Choose a tag to compare
0.1.1-beta1 Pre-release
Pre-release

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.

0.1.0

29 Nov 15:04
Compare
Choose a tag to compare
0.1.0 Pre-release
Pre-release

Experimental first release !!

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