From ebd389f5a1ed5c240359a60f4ca1b7a416a1718b Mon Sep 17 00:00:00 2001 From: Christian Battaglia Date: Sun, 1 Mar 2026 20:34:57 -0500 Subject: [PATCH] Update Lua library listing to cdbattags/lua-resty-jwt The previous listing pointed to SkyLothar/lua-resty-jwt, which has been abandoned since 2020. The actively maintained fork at cdbattags/lua-resty-jwt now has full IANA JOSE algorithm coverage (v0.3.0), OpenSSL 3.x support, and a CVE fix. --- src/data/libraries-next.json | 41 +++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/src/data/libraries-next.json b/src/data/libraries-next.json index 5de66633..e7b95082 100644 --- a/src/data/libraries-next.json +++ b/src/data/libraries-next.json @@ -2438,32 +2438,35 @@ "support": { "sign": true, "verify": true, - "iss": false, - "sub": false, - "aud": false, + "iss": true, + "sub": true, + "aud": true, "exp": true, "nbf": true, - "iat": false, - "jti": false, + "iat": true, + "jti": true, + "typ": true, "hs256": true, - "hs384": false, + "hs384": true, "hs512": true, "rs256": true, - "rs384": false, - "rs512": false, - "es256": false, - "es384": false, - "es512": false, - "ps256": false, - "ps384": false, - "ps512": false + "rs384": true, + "rs512": true, + "es256": true, + "es384": true, + "es512": true, + "ps256": true, + "ps384": true, + "ps512": true, + "eddsa": true, + "es256k": false }, - "authorUrl": "https://github.com/SkyLothar", - "authorName": "SkyLothar", - "gitHubRepoPath": "SkyLothar/lua-resty-jwt", - "repoUrl": "https://github.com/SkyLothar/lua-resty-jwt", + "authorUrl": "https://github.com/cdbattags", + "authorName": "cdbattags", + "gitHubRepoPath": "cdbattags/lua-resty-jwt", + "repoUrl": "https://github.com/cdbattags/lua-resty-jwt", "installCommandMarkdown": [ - "git clone https://github.com/SkyLothar/lua-resty-jwt.git" + "luarocks install lua-resty-jwt" ], "stars": 505 }