Skip to content

Releases: go-playground/form

Release 1.2.0

13 Jun 14:32
Compare
Choose a tag to compare

What Changes

  • Changed to use parseBool in util.go for performance + simpler code.
  • Reorganized some code for better readability.

Release 1.1.1

02 Jun 15:03
Compare
Choose a tag to compare

What's New?

  • Added Fallback boolean values on, off, yes, no, ok that are not handled by the default strconv.ParseBool(...)

Release 1.0

31 May 22:00
Compare
Choose a tag to compare

Welcome to the Release of form

parses url.Values and fills a struct with values, creating objects as necessary

Why another Form Parser

I was not satisfied with the shortcoming of some of the other libraries/packages out there i.e.

  • No map support
  • No pointer support (important for linked lists)
  • Efficiency issues
  • Needed a Form parser for lars, so now I have one to add.