refactor: move http_client from daw-lua-common to daw-lua-net #12
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#12
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?
Goal
Move
http_client.luafrom DAW/daw-lua-common to DAW/daw-lua-net where it belongs.Problem
http_client.luais a network utility and should live indaw-lua-net,not in
daw-lua-common. However, several projects already depend on itat its current path (
daw.lua.common.http_client).Acceptance Criteria
http_client.luaadded to DAW/daw-lua-net undersrc/daw/lua/net/daw.lua.common.http_clientidentifieddaw.lua.net.http_client(one commit per project)Affected Projects (to be identified)
Run in each repo:
grep -r "http_client" src/
Migration Order
Technical Notes
Deprecation shim example:
-- daw/lua/common/http_client.lua (deprecated)
io.stderr:write("[WARN] daw.lua.common.http_client is deprecated, use daw.lua.net.http_client\n")
return require("daw.lua.net.http_client")
Done -- http_client.lua now lives in DAW/daw-lua-net. README updated to remove the module section.