packages feed

tomland-1.3.3.2: CHANGELOG.md

# Changelog

`tomland` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 1.3.3.2 – Oct 5, 2022

* [#395](https://github.com/kowainik/tomland/issues/395):
  Support GHC-9.2.4.
* Upgrade `text` to version `2`.
* Upgrade `hedgehog` and `hspec`.

## 🍁 1.3.3.1 β€” Nov 8, 2021

* Disable building executables by default
* Bump up dependencies:
    * Allow `bytestring-0.11.*`
    * Allow `hashable-1.4.0.0`
    * Allow `megaparsec-9.2.0`
    * Allow `time-1.13`
    * Allow `transformers-0.6.*`

## πŸ₯ž 1.3.3.0 β€” Mar 14, 2021

* [#370](https://github.com/kowainik/tomland/issues/370):
  Support GHC-9.0.1.
* [#368](https://github.com/kowainik/tomland/issues/368):
  Upgrade `hashable` lower bound to 1.3.1.0.
* Sort keys in pretty printing by default.

## πŸ‚ 1.3.2.0 β€” Feb 12, 2021

* [#186](https://github.com/kowainik/tomland/issues/186):
  Implement TOML difference. Add `decodeExact` and `decodeFileExact`.
* [#325](https://github.com/kowainik/tomland/issues/325):
  Add ability to one or multiline printing to `PrintOptions` for arrays.
* [#329](https://github.com/kowainik/tomland/issues/329):
  Add `_Harcoded` codec and `hardcoded` combinator.
* [#333](https://github.com/kowainik/tomland/issues/333):
  Fix bug with parsing leading zeroes in numeric values.
* [#334](https://github.com/kowainik/tomland/issues/334):
  Escape unicode characters correctly in `encode`.
* [#364](https://github.com/kowainik/tomland/issues/364):
  Update GHC from `8.10.2` to `8.10.4`.
* [#358](https://github.com/kowainik/tomland/issues/358):
  Upgrade `parser-combinators` upper bound to allow `1.3`.

## 1.3.1.0 β€” Sep 21, 2020

* [#331](https://github.com/kowainik/tomland/issues/331):
  Support hexidecimal, octal and binary values with underscores.
* [#335](https://github.com/kowainik/tomland/issues/335):
  Consider table array keys in `tableMap`s as well.
* [#338](https://github.com/kowainik/tomland/issues/338):
  Allow `megaparsec-9.0` and `hspec-megaparsec-2.2`.
* Update GHC from `8.8.3` to `8.8.4`, from `8.10.1` to `8.10.2`.

## 1.3.0.0 β€” May 19, 2020

* [#253](https://github.com/kowainik/tomland/issues/253):
  Support GHC-8.10.1. Move to GHC-8.8.3 from 8.8.1.
* Drop support of GHC-8.2.2.
* [#271](https://github.com/kowainik/tomland/issues/271):
  Use `Validation` from `validation-selective` in `TomlEnv`.
  This allows to accumulate and display all errors that occurs during the
  decoding phase.
  All  previous decode functions return list of all `TomlDecodeError`s.

  __Note:__ Due to the specific of `Validation` data type, there is no `Monad`
  instanse of `Codec` anymore. However, this doesn't limit any previously
  released features.
* Add `decodeValidation`, `decodeFileValidation` functions to return
  `Validation` instead of `Either`.
* [#263](https://github.com/kowainik/tomland/issues/263):
  Simplify `Codec` abstraction. Instead of having `Codec r w c a`
  now it is `Codec TomlEnv TomlState c a`.

  Remove `BiCodec` as it is simple `TomlCodec` with this change.
* [#256](https://github.com/kowainik/tomland/issues/256),
  [#278](https://github.com/kowainik/tomland/issues/278):
  Rename modules to simplify module structure.

  __Migration guide:__ If you use `Toml` module (as advised by the library) then
  no changes required in your code.
   If you import some particular modules from `tomland` here is the renaming
   scheme you can use to apply to your imports:

   | __Old__ | __New__ |
   |-----|-----|
   | `Toml.Bi` | `Toml.Codec` |
   | `Toml.Bi.Combinators` | `Toml.Codec.Combinator` |
   | `Toml.Bi.Monad` | `Toml.Codec.Types` |
   | `Toml.Bi.Code` | `Toml.Codec.Code` or `Toml.Codec.Types` or `Toml.Codec.Error` |
   | `Toml.Bi.Map` | `Toml.Codec.BiMap` or `Toml.Codec.BiMap.Conversion` |
   | `Toml.Generic` | `Toml.Codec.Generic` |
   | `Toml.Edsl` | `Toml.Type.Edsl` |
   | `Toml.Printer` | `Toml.Type.Printer` |
   | `Toml.PrefixTree` | `Toml.Type.PrefixTree` or `Toml.Type.Key` |


* [#283](https://github.com/kowainik/tomland/issues/283):
  Documentation improvements:
    - Add Codec Tables to each kind of codecs with examples
    - Add high-level description to each reexported module
    - Add @since annotations
    - Improve README
    - Add more examples into functions
* [#237](https://github.com/kowainik/tomland/issues/237):
  Add `BiMap` `_Validate` and codecs `validate` and `validateIf` for custom
  validation.
* [#289](https://github.com/kowainik/tomland/issues/289):
  Add `_Coerce` `TomlBiMap`.
* [#270](https://github.com/kowainik/tomland/issues/270):
  Add `pair` and `triple` codecs for tuples.
* [#261](https://github.com/kowainik/tomland/issues/261):
  Implement `tableMap` codec to use TOML keys as `Map` keys.
* [#243](https://github.com/kowainik/tomland/issues/243):
  Implement `hashMap`, `tableHashMap`, `intMap`, `tableIntMap` codec
  combinators.
* Add `intSet` codec.
* Add `_KeyInt` `BiMap`for key-as-int approach.
* [#242](https://github.com/kowainik/tomland/issues/242):
  Add `HasCodec` instances for `Map`, `HashMap` and `IntMap` for
  `Generic` deriving.
* [#272](https://github.com/kowainik/tomland/issues/272):
  Add `TomlTable` newtype to be used in generic `DerivingVia`.
* [#251](https://github.com/kowainik/tomland/issues/251):
  Implement `ByteStringAsText`, `ByteStringAsBytes`, `LByteStringAsText`,
  `LByteStringAsBytes` newtypes. Add corresponding `HasCodec` instances for
  these data types.
* [#311](https://github.com/kowainik/tomland/issues/311):
  Reimplement custom `TomlState` instead of using `MaybeT` and `State`.
* Rename `ParseException` to `TomlParseError`.
* Rename `DecodeException` to `TomlDecodeError`.
* Add `TableArrayNotFound` constructor to `TomlDecodeError`.
* Remove `TrivialError` and `TypeMismatch` constructors of the `TomlDecodeError`
  type.
* [#313](https://github.com/kowainik/tomland/issues/313):
  Store `Key` in the `BiMapError` constructor of `TomlDecodeError`.
* Add `decodeFileEither` and `encodeToFile` functions.
* Fix `sum` and `product` behaviour on missing fields. Now it returns the
  wrapper of `mempty` instead of failure.
* [#302](https://github.com/kowainik/tomland/issues/302):
  `nonEmpty` codec throws `TableArrayNotFound` instead of `TableNotFound`.
* [#318](https://github.com/kowainik/tomland/issues/318):
  Export a function for parsing TOML keys `parseKey`.
* [#310](https://github.com/kowainik/tomland/issues/310):
  Add tests on all kinds of `TomlDecodeError` with `decode` function.
* [#218](https://github.com/kowainik/tomland/issues/218):
  Add tests for TOML validation.
* [#252](https://github.com/kowainik/tomland/issues/252):
  Move to `hspec-*` family of libraries from `tasty-*`.
* [#297](https://github.com/kowainik/tomland/issues/297):
  Tests parallelism and speed-up.
* [#246](https://github.com/kowainik/tomland/issues/246):
  Bump up `megaparsec` version to `8.0.0`.

## 1.2.1.0 β€” Nov 6, 2019

* [#203](https://github.com/kowainik/tomland/issues/203):
  Implement codecs for `Map`-like data structures.
  (by [@chshersh](https://github.com/chshersh))
* [#241](https://github.com/kowainik/tomland/issues/241):
  Implement codecs for `Monoid` wrappers:
  `all`, `any`, `sum`, `product`, `first`, `last`.
  (by [@vrom911](https://github.com/vrom911))

## 1.2.0.0 β€” Oct 12, 2019

* [#216](https://github.com/kowainik/tomland/issues/216):
  Refactor TOML parser significantly. Check for some validation errors.
  (by [@chshersh](https://github.com/chshersh))
* [#213](https://github.com/kowainik/tomland/issues/213):
  Support GHC-8.8.1.
  (by [@vrom911](https://github.com/vrom911))
* [#226](https://github.com/kowainik/tomland/issues/226):
  Add `dimatch` combinator for better support of sum types.
  (by [@Nimor111](https://github.com/Nimor111))
* [#219](https://github.com/kowainik/tomland/issues/219):
  Add INLINE pragmas to code.
  (by [@willbasky](https://github.com/willbasky))
* [#204](https://github.com/kowainik/tomland/issues/204):
  Implement bidirectional codecs to work with `ByteString` as array of bytes.
  (by [@crtschin](https://github.com/crtschin))
* [#201](https://github.com/kowainik/tomland/issues/201):
  Implement `set` and `hashSet` combinators for array of tables.
  (by [@SanchayanMaity](https://github.com/SanchayanMaity))
* [#215](https://github.com/kowainik/tomland/issues/215):
  Move benchmarks to separate repository
  [toml-benchmarks](https://github.com/kowainik/toml-benchmarks).
  (by [@kutyel](https://github.com/kutyel))
* [#209](https://github.com/kowainik/tomland/issues/209):
  Bump up `parser-combinators` to `1.2.0`.
  (by [@vrom911](https://github.com/vrom911))
* [#198](https://github.com/kowainik/tomland/issues/198):
  Improve test generators.
  (by [@gabrielelana](https://github.com/gabrielelana)
  , [@chshersh](https://github.com/chshersh)
  )

## 1.1.0.1 β€” Jul 10, 2019

* [#206](https://github.com/kowainik/tomland/issues/206):
  Fix in parser of inline tables inside tables, add tests for official TOML examples
  (by [@jiegillet](https://github.com/jiegillet))

## 1.1.0.0 β€” Jul 8, 2019

* [#154](https://github.com/kowainik/tomland/issues/154):
  Implement `Generic` bidirectional codecs
  (by [@chshersh](https://github.com/chshersh)).
* [#145](https://github.com/kowainik/tomland/issues/145):
  Add support for inline table arrays
  (by [@jiegillet](https://github.com/jiegillet)).
* [#195](https://github.com/kowainik/tomland/issues/195):
  Fix an exponential parser behavior for parsing table of arrays
  (by [@jiegillet](https://github.com/jiegillet)).
* [#190](https://github.com/kowainik/tomland/issues/190):
  Add `enumBounded` codec for nullary sum types
  (by [@mxxo](https://github.com/mxxo)).
* [#189](https://github.com/kowainik/tomland/issues/189):
  **Breaking change:** Implement custom table sorting by keys. Also fields of
  the `PrintOptions` data type were renamed according to style guide
  (by [@ramanshah](https://github.com/ramanshah)).

  __Before:__

  ```haskell
  data PrintOptions = PrintOptions
      { shouldSort :: Bool
      , indent     :: Int
      } deriving (Show)
  ```

  __Now:__

  ```haskell
  data PrintOptions = PrintOptions
      { printOptionsSorting :: !(Maybe (Key -> Key -> Ordering))
      , printOptionsIndent  :: !Int
      }
  ```

  __Migration guide:__ If you used `indent` field, use `printOptionsIndent`
  instead. If you used `shouldSort`, use `printOptionsSorting` instead and pass
  `Nothing` instead of `False` or `Just compare` instead of `True`.

## 1.0.1.0 β€” May 17, 2019

* [#177](https://github.com/kowainik/tomland/issues/177):
  Add a more extensive property generator for `Piece`.
* [#187](https://github.com/kowainik/tomland/issues/187):
  Bump up to `hedgehog-1.0`.
* Support GHC 8.6.5

## 1.0.0 β€” Jan 14, 2019

* [#13](https://github.com/kowainik/tomland/issues/13):
  Support array of tables.

  + [#131](https://github.com/kowainik/tomland/issues/131):
    Uncommenting `tomlTableArrays` from `TOML`.
  + [#134](https://github.com/kowainik/tomland/issues/134):
    Pretty printer arrays of tables and golden tests.
  + [#143](https://github.com/kowainik/tomland/issues/143):
    Parser for arrays of tables.
  + [#155](https://github.com/kowainik/tomland/issues/155):
    Add `list` and `nonEmpty` combinators for coding lists of custom user types.
  + [#142](https://github.com/kowainik/tomland/issues/142):
    Adding EDSL support for arrays of tables.
  + [#144](https://github.com/kowainik/tomland/issues/144):
    Added tests for arrays of tables.

* [#140](https://github.com/kowainik/tomland/issues/140):
  **Breaking change:** Replace `wrapper` by `diwrap`.

  _Migration guide:_ change `Toml.wrapper Toml.text "foo"` to `Toml.diwrap (Toml.text "foo")`.
* [#152](https://github.com/kowainik/tomland/issues/152):
  **Breaking change:** Removing `mdimap`.

  _Migration guide:_ change `Toml.mdimap showX parseX (Toml.text "foo")` to `Toml.textBy showX parseX "foo"`.
* [#137](https://github.com/kowainik/tomland/issues/137):
  Replace `Maybe` with `Either` in `BiMap`.
* [#174](https://github.com/kowainik/tomland/issues/174):
  Add `_LText` and `lazyText` codecs.
* [#163](https://github.com/kowainik/tomland/issues/163):
   Move all time data types from nested `DateTime` to `Value`.
* [#146](https://github.com/kowainik/tomland/issues/146):
  Allow underscores in floats.
* [#64](https://github.com/kowainik/tomland/issues/64):
  Integer parser doesn't accept leading zeros.
* [#50](https://github.com/kowainik/tomland/issues/50):
   Add property-based tests for encoder and decoder.
* [#119](https://github.com/kowainik/tomland/issues/119):
  Add property-based tests for `BiMap`.
* [#149](https://github.com/kowainik/tomland/issues/149):
  Removing records syntax from `PrefixTree`.

## 0.5.0 β€” Nov 12, 2018

* [#81](https://github.com/kowainik/tomland/issues/81):
  **Breaking change:** Rename data types.

  _Migration guide:_ rename `Bijection` to `Codec`, `Bi` to `BiCodec` and
  `BiToml` to `TomlCodec`.
* [#82](https://github.com/kowainik/tomland/issues/82):
  **Breaking change:** Remove `maybeT`. Add `dioptional` instead.

  _Migration guide:_ replace `Toml.maybeT Toml.int "foo"` with `Toml.dioptional (Toml.int "foo")`.
* [#95](https://github.com/kowainik/tomland/issues/95):
  **Breaking change:** Swap fields in `BiMap`s for consistency with `lens` package.

  _Migration guide:_ reverse order of composition when using `BiMap`s.
* [#98](https://github.com/kowainik/tomland/issues/98):
  Implement benchmarks for `tomland` and compare with `htoml` and `htoml-megaparsec` libraries.
* [#130](https://github.com/kowainik/tomland/issues/130):
  Added combinators to `Toml.Bi.Combinators`.
* [#115](https://github.com/kowainik/tomland/issues/115):
  Added time combinators to `Toml.BiMap` and `Toml.Bi.Combinators`.
* [#99](https://github.com/kowainik/tomland/issues/99):
  Split `Toml.Parser` file into smaller files.
* [#22](https://github.com/kowainik/tomland/issues/22):
  Report proper type checking error during parsing.
* [#14](https://github.com/kowainik/tomland/issues/14):
  Add support for inline tables parsing.
* [#70](https://github.com/kowainik/tomland/issues/70):
  Add `_TextBy` and `_Read` combinators.
* [#11](https://github.com/kowainik/tomland/issues/11):
  Add `PrintOptions` (sorting, indentation) for pretty printer.
* [#17](https://github.com/kowainik/tomland/issues/17):
  Allow underscores in integers*.
* [#90](https://github.com/kowainik/tomland/issues/90):
  Migrate to megaparsec 7.0.
* [#85](https://github.com/kowainik/tomland/issues/85):
  Add `Date` generator for property-based tests.
* [#88](https://github.com/kowainik/tomland/issues/88):
  Add `Array` generator for property-based tests.
* [#86](https://github.com/kowainik/tomland/issues/86):
  Improve `String` generator for property-based tests.
* [#87](https://github.com/kowainik/tomland/issues/87):
  Improve `Double` generator for property-based tests.
* Add support for GHC 8.6.1.
  Add support for GHC 8.4.4.
  Drop support for GHC 8.0.2.
* [#109](https://github.com/kowainik/tomland/issues/109):
  Add function `decodeToml`.

## 0.4.0

* [#54](https://github.com/kowainik/tomland/issues/54):
  Add support for sum types.
  Rename `Prism` to `BiMap`.
  Rename `bijectionMaker` to `match`.
  Add `string` codec.

## 0.3.1

* [#19](https://github.com/kowainik/tomland/issues/19):
  Add proper parsing of floating point numbers.
* [#15](https://github.com/kowainik/tomland/issues/15):
  Add parsing of multiline strings.
* [#40](https://github.com/kowainik/tomland/issues/40):
  Support full-featured string parser.
* [#18](https://github.com/kowainik/tomland/issues/18):
  Add dates parsing.
* Add useful combinators for `newtype` wrappers.
* [#58](https://github.com/kowainik/tomland/issues/58):
  Add `decodeFile` function.

## 0.3

* [#60](https://github.com/kowainik/tomland/issues/60):
  **Breaking change:** Replace `Valuer` with `Prism`.

  _Migration guide:_ replace any `fooV` with corresponding prism `_Foo`.
* [#66](https://github.com/kowainik/tomland/issues/66):
  **Breaking change:** Introduce consistent names according to Haskell types.

  _Migration guide:_ see issue details to know which names to use.
* [#8](https://github.com/kowainik/tomland/issues/8):
  Create EDSL for easier TOML data type writing.
* [#10](https://github.com/kowainik/tomland/issues/10):
  Add `Semigroup` and `Monoid` instances for `PrefixTree` and `TOML`.
  Add property tests on laws.
* [#20](https://github.com/kowainik/tomland/issues/20):
  Add parsing of hexadecimal, octal, and binary integer numbers.
* [#26](https://github.com/kowainik/tomland/issues/26):
  Implement unit tests for TOML parsers.
  Allow terminating commas inside an array.
  Allow comments before and after any value inside an array.
  Allow keys to be literal strings.

## 0.2.1

* Make `table` parser work with `maybeP`.
* [#39](https://github.com/kowainik/tomland/issues/39):
  Implement `prettyException` function for `DecodeException`.

## 0.2.0

* Switch names for `decode` and `encode` functions.
* [#47](https://github.com/kowainik/tomland/issues/47):
  Rename `dimapBijection` to `dimap`. Introduce `mdimap` combinator.
* [#37](https://github.com/kowainik/tomland/issues/37):
  Add tables support for bidirectional conversion.

## 0.1.0

* [#16](https://github.com/kowainik/tomland/issues/16):
  Add parser for literal strings.
* Add `IsString` instance for `Key` data type.
* [#38](https://github.com/kowainik/tomland/issues/38):
  Add bidirectional converter for array.
* [#21](https://github.com/kowainik/tomland/issues/21):
  Report expected vs. actual type error in parsing.
* [#44](https://github.com/kowainik/tomland/issues/44):
  Add bidirectional converter for `Maybe`.

## 0.0.0

* [#3](https://github.com/kowainik/tomland/issues/3):
  Implement basic TOML parser with `megaparsec`.
* [#7](https://github.com/kowainik/tomland/issues/7):
  Implement type safe version of `Value` type as GADT.
* [#4](https://github.com/kowainik/tomland/issues/4):
  Implement basic pretty-printer.
* [#1](https://github.com/kowainik/tomland/issues/1):
  Implement types representing TOML configuration.
* Initially created.

[1]: https://pvp.haskell.org
[2]: https://github.com/kowainik/tomland/releases