Releases: drekka/Voodoo
Releases · drekka/Voodoo
iOS 17
Version 0.3.1 Decodable
Adds the functionality to decode a JSON request body into a Decodable
type.
Version 0.3.0
New
- Added the ability to set a delay. Delays affect all requests after being set. Use the admin path
_admin/delay/<n.n>
where 'n.nis the number of seconds to set. ie.
http://127.0.0.1/_admin/delay/2.0` sets a 2 second delay on all request from now on. Setting to 0 stops delaying requests. Delays can also be updated at any time in a XCTest withserver.delay = n.n
. - Added missing
unauthorised
andforbidden
to response decoding from YAML files.
Fixed
Refactored
-
Adjusted YAML model for responses. the
type
field has been removed and replaced with the individual types as it was an unnecessary abstraction. For exampleOld:
response: type: text text: Hello
New
response: text: hello
Lots of lots of good stuff... and GraphQL
Lots of changes in this release as a result of working through the addition of GraphQL.
Initial release
This is the initial release of Simulacra. Please let me know if you have any suggestions, bugs or tweaks.