|
| 1 | +1.19.0 |
| 2 | + |
| 3 | +* Supports version 4.0.0 of the language standard |
| 4 | + * See: https://github.com/dhall-lang/dhall-lang/releases/tag/v4.0.0 |
| 5 | +* BREAKING CHANGE TO THE LANGUAGE AND API: Prevent Hurkens' paradox |
| 6 | + * This fixes a type-checking soundness bug which permitted infinite loops |
| 7 | + * This is a breaking change because infinite loops are no longer possible |
| 8 | + * This is also a breaking change because a record of types is now treated as |
| 9 | + a kind instead of a type |
| 10 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/680 |
| 11 | +* BREAKING CHANGE TO THE LANGUAGE AND API: `Double`s are now double-precision |
| 12 | + floating point numbers |
| 13 | + * This restricts the range of `Double`s to IEEE 754 double-precision |
| 14 | + floating point |
| 15 | + * This also implies that you can no longer convert `Scientific` values to |
| 16 | + `Dhall` expressions (i.e. no `Inject` instance for `Scientific`) |
| 17 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/667 |
| 18 | +* BREAKING CHANGE TO THE API: Preserve field order for record projection |
| 19 | + * The API uses a new `Dhall.Set.Set` type instead of `Data.Set.Set` |
| 20 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/670 |
| 21 | +* BREAKING CHANGE TO THE API: Add support for multi-`let` expressions |
| 22 | + * This changes the `Let` constructor to now support storing multiple |
| 23 | + bindings per `let` expression |
| 24 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/675 |
| 25 | +* Support GHC 8.6 |
| 26 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/669 |
| 27 | +* Add support for quoted path components |
| 28 | + * i.e. `/"foo"/bar/"baz qux"` or `https://example.com/foo/"bar?baz"?qux` |
| 29 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/690 |
| 30 | +* Fix parsing of `//\\` operator |
| 31 | + * See: https://github.com/dhall-lang/dhall-haskell/commit/9d0fd42d95ab69fa64da4afd8b60d69aca8e65a6 |
| 32 | +* Preserve Unicode characters when formatting code |
| 33 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/679 |
| 34 | +* Allow identifier names to begin with `Some` |
| 35 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/658 |
| 36 | +* Add `subExpressions` `Traversal` |
| 37 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/660 |
| 38 | +* Add `normalizeWithM` for monadic normalization |
| 39 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/371 |
| 40 | +* Custom normalizers now take precedence over default normalization logic |
| 41 | + * This allows one to override the implementation of built-in operators |
| 42 | + * See: https://github.com/dhall-lang/dhall-haskell/pull/684 |
| 43 | + |
1 | 44 | 1.18.0 |
2 | 45 |
|
3 | 46 | * Supports version 3.0.0 of the language standard: |
|
0 commit comments