1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
# Revision history for toml-parser
## 2.0.2.0
* Update for TOML 1.1.0
- Add \e and \x escapes
- Allow omitting seconds in times
- Allow newlines and trailing commas in inline tables
## 2.0.1.2
* Reject inputs with out-of-bounds time zone offsets in accordance
with the toml-tests test suite.
## 2.0.1.1
* Fixes bug that prohibited non-ASCII characters in `'''` strings.
## 2.0.1.0
* Added `ToValue UTCTime` and `FromValue UTCTime`. These correspond
to offset data-times with the timezone translated to UTC.
## 2.0.0.0
* Pervasive annotations on the values added to allow for detailed
positional error reporting throughout parsing and validation.
* Replace uses of String with Text in the Value type and throughout
the API
* Reorganized almost all of the modules to minimize imports that upstream
packages will actually need.
## 1.3.3.0
* Added `IsString Value` instance.
* Addded helpers for `runMatcher` for ignoring and failing on warning
`runMatcherIgnoreWarn` and `runMatcherFatalWarn`
## 1.3.2.0
* Added `Toml.Generic` to make instances easily derivable via DerivingVia.
* Added GHC.Generics support for switching between product types and TOML arrays.
## 1.3.1.3
* Bugfix: Previous fix admitted some invalid inline tables - these are now rejected
## 1.3.1.2
* Bugfix: In some cases overlapping keys in inline tables could throw an exception
instead instead of returning the proper semantic error value.
## 1.3.1.1
* Ensure years are rendered zero-padded
## 1.3.1.0
* Added `Toml.Semantics.Ordered` for preserving input TOML orderings
* Added support for pretty-printing multi-line strings
## 1.3.0.0 -- 2023-07-16
* Make more structured error messages available in the low-level modules.
Consumers of the `Toml` module can keep getting simple error strings
and users interested in structured errors can run the different layers
independently to get more detailed error reporting.
* `FromValue` and `ToValue` instances for: `Ratio`, `NonEmpty`, `Seq`
* Add `FromKey` and `ToKey` for allowing codecs for `Map` to use various key types.
## 1.2.1.0 -- 2023-07-12
* Added `Toml.Pretty.prettyTomlOrdered` to allow user-specified section ordering.
* Added `FromValue` and `ToValue` instances for `Text`
* Added `reqKeyOf` and `optKeyOf` for easier custom matching without `FromValue` instances.
## 1.2.0.0 -- 2023-07-09
* Remove `FromTable` class. This class existed for things that could be
matched specifically from tables, which is what the top-level values
always are. However `FromValue` already handles this, and both classes
can fail, so having the extra level of checking doesn't avoid failure.
It does, however, create a lot of noise generating instances. Note that
`ToTable` continues to exist because `toTable` isn't allowed to fail,
and when serializing to TOML syntax you can only serialize top-level
tables.
* Extracted `Toml.FromValue.Matcher` and `Toml.FromValue.ParseTable` into
their own modules.
* Add `pickKey`, `liftMatcher`, `inKey`, `inIndex`, `parseTableFromValue` to `Toml.FromValue`
* Replace `genericFromTable` with `genericParseTable`. The intended way to
derive a `FromValue` instance is now to write:
```haskell
instance FromValue T where fromValue = parseTableFromValue genericParseTable
```
## 1.1.1.0 -- 2023-07-03
* Add support for GHC 8.10.7 and 9.0.2
## 1.1.0.0 -- 2023-07-03
* Add Toml.FromValue.Generic and Toml.ToValue.Generic
* Add Alternative instance to Matcher and support multiple error messages in Result
* Add Data and Generic instances for Value
## 1.0.1.0 -- 2023-07-01
* Add ToTable and ToValue instances for Map
* Refine error messages
* More test coverage
## 1.0.0.0 -- 2023-06-29
* Complete rewrite including 1.0.0 compliance and pretty-printing.
## 0.1.0.0 -- 2017-05-04
* First version.
|