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 120 121
|
See also http://pvp.haskell.org/faq
### 0.2.1.4
_2024-04-25_
* Drop support for GHC 7
* Testsuite: relax lower bounds to accommodate LTS 11.22 (GHC 8.2) for new Stack CI
* Tested with GHC 8.0 - 9.10.0 (alpha3)
### 0.2.1.3
_2023-10-14_
* Pacify `x-partial` warning of GHC 9.8
* Tested with GHC 7.10 - 9.8.1
### 0.2.1.2
_2023-09-29_
* Add `default-extensions: TypeOperators` to silence warning under GHC ≥ 9.4.
* Support latest versions of dependencies.
* Tested with GHC 7.10 - 9.8.0
### 0.2.1.1
_2022-05-11_
* Compatibility with `mtl-2.3`
* Tested with GHC 7.4 - 9.2
### 0.2.1.0
* Define `Functor Doc` instance ([#33](https://github.com/haskell-hvr/HsYAML/issues/33))
* New `withScalar` function and also define `ToYAML Scalar` and `FromYAML Scalar` instances
* Export `Pair` `type` synonym from `Data.YAML` ([#31](https://github.com/haskell-hvr/HsYAML/issues/31))
* New `Data.YAML.prettyPosWithSource` function for pretty-printing source locations (i.e. `Pos` values)
* Add export `docRoot :: Doc n -> n` field accessor for convenience ([#32](https://github.com/haskell-hvr/HsYAML/issues/32))
## 0.2.0.0
This release incorporates the work from [Vijay Tadikamalla's GSOC 2019 Project](https://vijayphoenix.github.io/blog/gsoc-the-conclusion/).
Highlights of this major release include support for emitting YAML as
well as providing direct access to source locations throughout the
parsing pipeline for improved error reporting.
* Changes in `Data.YAML` module
* YAML 1.2 Schema encoders ([#21](https://github.com/haskell-hvr/HsYAML/pull/21))
* New `ToYAML` class for encoding Haskell Data-types from which YAML nodes can be constructed ([#20](https://github.com/haskell-hvr/HsYAML/pull/20))
* New functions like `encodeNode`, `encodeNode'` for constructing AST
* New functions like `encode`, `encode1`, `encodeStrict`, `encode1Strict` for supporting typeclass-based dumping
* Some ToYAML instances and other api
* Modify `typeMismatch` function to show error source location in error messages ([#19](https://github.com/haskell-hvr/HsYAML/pull/19))
* Provide location-aware `failAtNode` alternative to `fail`
* Changes in `Data.YAML.Event` module
* Preserve and round-trip Comments at Event level([#24](https://github.com/haskell-hvr/HsYAML/pull/24))
* New `Comment` Event to preserve comments while parsing
* Some additional implementations to preserve and round-trip comments
* Fix issue [#22](https://github.com/haskell-hvr/HsYAML/issues/22)
* New `EvPos` type for recording event and their corresponding position ([#19](https://github.com/haskell-hvr/HsYAML/pull/19))
* Preserve Flow Mapping and Flow sequence ([#18](https://github.com/haskell-hvr/HsYAML/pull/18))
* Features to preserve Literal/Folded ScalarStyle ([#15](https://github.com/haskell-hvr/HsYAML/pull/15))
* New `Chomp` type denoting Block Chomping Indicator
* New `IndentOfs` type denoting Block Indentation Indicator
* New `NodeStyle` type denoting flow/block style
* `Event(SequenceStart,MappingStart)` constructors now record `NodeStyle`
* `Style` type renamed to `ScalarType`
* New `writeEvents` and `writeEventsText` function
* `Event(DocumentStart)` now records YAML directive
* Event parser now rejects duplicate/unsupported YAML/TAG
directives as mandated by the YAML 1.2 specification
* Move some schema related definitions from `Data.YAML` into the new `Data.YAML.Schema` module
* Make `decode`, `decode1`, `decodeStrict`, `decode1Strict`, `decodeNode`, and `decodeNode'` treat
duplicate keys (under the respective YAML schema) in YAML mappings
as a loader-error (controllable via new
`schemaResolverMappingDuplicates` schema property)
* Define `Generic` and `NFData` instances for most types
* Fix `X38W` testcase ([#13](https://github.com/haskell-hvr/HsYAML/issues/13), [#14](https://github.com/haskell-hvr/HsYAML/issues/14))
---
#### 0.1.1.3
* Fix bug in float regexp being too lax in the JSON and Core schema ([#7](https://github.com/hvr/HsYAML/issues/7))
* Remove dependency on `dlist`
#### 0.1.1.2
* Tolerate BOM at *each* `l-document-prefix` (rather than only at the first one encountered in a YAML stream)
* Workaround broken `mtl-2.2.2` bundled in GHC 8.4.1 ([#1](https://github.com/hvr/HsYAML/issues/1))
* Relax to GPL-2.0-or-later
#### 0.1.1.1
* Reject (illegal) non-scalar code-points in UTF-32 streams
* Tolerate BOM at start of stream
* Disambiguate choice in `l-any-document` production regarding token separation of `c-directives-end`
* Fix `c-indentation-indicator(n)` grammar production when
auto-detecting indentation in the presence of empty leading lines;
also reject (illegal) auto-indent-level scalars with leading
more-indented all-space lines
* Complete character escape rules for double-quoted scalars
* Minor optimizations
### 0.1.1.0
* `Data.YAML` module promoted from `TrustWorthy` to `Safe`
* Add `FromYAML Natural` instance
* Add `MonadFail`, `Alternative`, and `MonadPlus` instances for `Data.YAML.Parser`
* Add `Data.YAML.decodeStrict` function
* Export `Data.YAML.typeMismatch` helper function
## 0.1.0.0
* First version. Released on an unsuspecting world.
|