I'll research the breaking changes introduced in Lua versions 5.2, 5.3, and 5.4 that may cause scripts written in Lua 5.1 to break. This will include changes in language syntax, libraries, and runtime behavior. I'll provide a structured breakdown of these changes so you can better understand their impact on your scripts.
I'll update you once I have the findings.
- New Reserved Keyword (
goto
): Lua 5.2 introduces agoto
statement, making "goto
" a reserved word (Lua 5.2 readme). Any Lua 5.1 code usinggoto
as an identifier will fail to compile in 5.2. The fix is to rename such variables or avoid using "goto
" as a name. Lua 5.2 also added labels (::label::
) forgoto
, but this is new functionality and doesn’t affect 5.1 compatibility except for the keyword reservation. - Identifier Character Restrictions: In Lua 5.1, identifier names