All Versions
68
Latest Version
Avg Release Cycle
38 days
Latest Release
1744 days ago

Changelog History
Page 1

  • v1.9.0 Changes

    July 18, 2020
    • ๐Ÿ›  Fix Ignore and Empty to replace the QueryResults instance for Void. The instance has been deprecated.
    • โœ‚ Remove the deprecated parseResults method in QueryResults.
    • โž• Add the coerceDecoder method in QueryResults.
    • โฌ‡๏ธ Drop support for GHC 8.2 and older because of the use of EmptyDataDeriving.
    • โšก๏ธ Update doctest comments with TypeApplications.
  • v1.8.0 Changes

    June 19, 2020

    ๐Ÿš€ This release reworked the QueryResuls type class. There are some breaking changes:

    • ๐Ÿ—„ parseResults has been deprecated. QueryResults has now parseMeasurement method.
    • Decoder has been monomorphized so that it can be used with lens. The original Decoder type has been renamed to SomeDecoder.
    • QueryParams has now decoder field.
    • ๐Ÿ“œ parseResults and parseResultsWith had been using lenientDecoder and it caused some unintuitive behavior (#64, #66). Now they use strictDecoder instead.
    • ๐Ÿ‘€ parseErrorObject now doesn't fail. It returns the error message of a response.
    • ๐Ÿ—„ parseQueryField which has been deprecated is now deleted.
    • ๐Ÿ›  QueryResults instance for ShowSeries was broken. This is fixed.
    • ๐Ÿ“œ The constructor of Decoder, parseResultsWith, and parseResultsWithDecoder have been hidden from the top-level module. They're still available from Database.InfluxDB.JSON.

    ๐Ÿ‘€ See #68 for how to migrate your code from v1.7.x to v1.8.x.

  • v1.7.1 Changes

    July 19, 2019
    • Escape backslashes when encoding Lines (#75)
  • v1.7.1.6 Changes

    June 03, 2020
    • โœ… Relax upper version bound for doctest
  • v1.7.1.5 Changes

    May 26, 2020
    • ๐Ÿ˜Œ Relax upper version bound for http-client
  • v1.7.1.4 Changes

    May 26, 2020
    • ๐Ÿ˜Œ Relax upper version bound for aeson
    • ๐Ÿ›  Fix a GHC warning
  • v1.7.1.3 Changes

    April 02, 2020
    • ๐Ÿ˜Œ Relax upper version bound for base to support GHC 8.10.1
  • v1.7.1.2 Changes

    February 08, 2020
    • ๐Ÿ˜Œ Relax upper version bound for lens
    • ๐Ÿ›  Fix documentation bugs
    • โœ… Extend doctests
    • โœ… Test with GHC 8.8.2
  • v1.7.1.1 Changes

    September 09, 2019
    • ๐Ÿ˜Œ Relax upper version bound for lens
  • v1.7.0 Changes

    May 03, 2019
    • ๐Ÿ‘Œ Support GHC 8.8.1-alpha1
      • The types of getField and getTag have changed
    • ๐Ÿ˜Œ Relax upper version bounds for clock and network