v0.4.4
- Handle wrong types when getting values from a
Context
as missing.- This is to avoid weird behaviours such as believing a default value was the expected one. Eg. If the context contains
"string value"
for the tag"tag"
. When doingctx.GetInt64("tag")
will now returnint64(0)
(default value) andfalse
(doesn't exist) instead of previouslyint64(0)
-true
- This is to avoid weird behaviours such as believing a default value was the expected one. Eg. If the context contains