Lua 5.5 compatibility #66
Labels
No labels
area/api
area/content_model
area/framework
area/infrastructure
area/io
area/presentation
area/preservation
area/rdf
area/security
area/submission
area/ui
s
blocked
s
done
s
progress
s
testing
s
wontfix
p
critical
p
high
p
low
p
normal
t
bug
t
documentation
t
enhancement
t
feature
t
test
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ktx/pocket_archive#66
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Make Pocket Archive compatible with Lua 5.5.
It is also possible to make it backwards incompatible with Lua 5.4, to possibly reduce future maintenance, because a stable Pocket Archive version hasn't been yet released yet.
Lua 5.5 compatibility requires a change in the
httplibrary, which has a dependency oncompat53, which is only required for Lua 5.2 and older, and cannot run on Lua 5.5.compat53is likely required to maintain backwards compatibility with older Lua versions.Solutions:
httpand remove thecompat53(and while at it, alsobit32which in a comment is noted as only needed by Lua 5.1). This would impose an additional long-term maintenance burden but it's the safest and most straightforward solution.