util.dependencies: Consider Lua 5.4 Supported™️

I have been running my own server exclusively on Lua 5.4 for months and
apart from packaging issues I remember on major issues.
This commit is contained in:
Kim Alvefur 2021-11-28 23:12:25 +01:00
parent 0a4923938a
commit 74e1de54fd

View file

@ -153,7 +153,7 @@ local function check_dependencies()
end
local function log_warnings()
if _VERSION > "Lua 5.3" then
if _VERSION > "Lua 5.4" then
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
end
local ssl = softreq"ssl";