Skip to content

Releases: pbeshai/use-query-params

v0.3.2

21 May 19:29
Compare
Choose a tag to compare
  • Resolves #11 by adjusting compilation settings to work with ES5

v0.3.1

04 Apr 15:32
Compare
Choose a tag to compare
  • Resolves #10: makes it so the query object returned from useQueryParams remains the same unless one of its values changes.

v0.3.0

23 Mar 23:43
Compare
Choose a tag to compare

Breaking Changes

  • No longer looks for a query object on location since the history package got rid of that in version 4.0.0. (#7)
  • When encoding parameters that are not explicitly configured, defaults to converting them to strings.

Other Changes

v0.2.0

16 Mar 14:06
Compare
Choose a tag to compare

Breaking Change

  • Resolved issue: #1 (see #2)
    • Switches ArrayParam and NumericArrayParam to work with arr=a&arr=b&arr=c -> ['a', 'b', 'c'] style.
    • Renames old ArrayParam to DelimitedArrayParam, NumericArrayParam to DelimitedNumericArrayParam
    • Adds safe handling of array inputs to all parameters