This repository was archived by the owner on Feb 18, 2023. It is now read-only.
Releases: clugg/sm-httpreq
Releases · clugg/sm-httpreq
v2.0.0
- Rewrite library to use StringMaps for storing request information. This causes multiple breaking changes, but most importantly removes the limitation on the number of active requests. All breaking changes can be seen in the README diff for the relevant commit, but they are also listed below:
- Creating a new HTTPRequest now requires the 'new' keyword (e.g.
new HTTPRequest
instead ofHTTPRequest
) - Passing a callback to the HTTPRequest now requires a function instead of a string (e.g.
new HTTPRequest(..., OnRequestComplete)
instead ofnew HTTPRequest(..., "OnRequestComplete")
) - The callback now has a typedef which functions must follow
- Creating a new HTTPRequest now requires the 'new' keyword (e.g.
- Update public methods to stocks