Skip to content

v0.4.4

Compare
Choose a tag to compare
@saantiaguilera saantiaguilera released this 10 Feb 04:25
· 54 commits to master since this release
  • 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 doing ctx.GetInt64("tag") will now return int64(0) (default value) and false (doesn't exist) instead of previously int64(0) - true