Release candidate 0.6.0.0

This commit is contained in:
Elliot Cameron 2020-05-11 22:41:46 -04:00
parent 2cfb269f34
commit 02ed52c633
No known key found for this signature in database
GPG Key ID: 6ABB57E3D52B0628
4 changed files with 30 additions and 37 deletions

View File

@ -1,54 +1,47 @@
# Revision history for reflex-dom-core
## Unreleased
## 0.6.0.0
* ([#374](https://github.com/reflex-frp/reflex-dom/pull/374)) Provide text clipboard data as value of Paste event.
* ([#375](https://github.com/reflex-frp/reflex-dom/pull/375)) **(Breaking change)** Expose resized dimensions from `resizeDetector`, `resizeDetectorWithStyle`, and `resizeDetectorWithAttrs` from `Reflex.Dom.Widget.Resize`.
* ([#374](https://github.com/reflex-frp/reflex-dom/pull/374)) **(Breaking change)** Provide text clipboard data as value of `Paste` event.
* ([#348](https://github.com/reflex-frp/reflex-dom/pull/348)) **(Breaking change)** Make XHR response headers case insensitive by changing `_xhrResponse_headers :: Map Text Text` to `_xhrResponse_headers :: Map (CI Text) Text`.
* ([#225](https://github.com/reflex-frp/reflex-dom/pull/225)) **(Breaking change)** Add a functional dependency to `HasDomEvent`.
* ([#342](https://github.com/reflex-frp/reflex-dom/issues/342)) **(Breaking change)** The mouse wheel event is now a `WheelEventResult` rather than `()`. This provides information about the wheel's motion beyond the fact that it merely moved.
* ([#353](https://github.com/reflex-frp/reflex-dom/pull/353)) Support GHC 8.8.
* ([#358](https://github.com/reflex-frp/reflex-dom/pull/358)) Fix attribute support for explicitly namespaced elements.
* ([#363](https://github.com/reflex-frp/reflex-dom/pull/363)) Remove deprecation warnings for the following widgets in
`Reflex.Dom.Widget.Basic`:
* `Link`
* `button`
* `dtdd`
* `linkClass`
* `link`
* `tabDisplay`
* `tableDynAttr`
* `Link`
* `button`
* `dtdd`
* `linkClass`
* `link`
* `tabDisplay`
* `tableDynAttr`
* ([#361](https://github.com/reflex-frp/reflex-dom/pull/361)) Fix bug in hydration causing the JavaScript to crash when dealing with unexpected HTML.
* ([#310](https://github.com/reflex-frp/reflex-dom/issues/310)) Fix the static rendering of which dropdown value is selected.
* ([#364](https://github.com/reflex-frp/reflex-dom/pull/364)) Export attributes used for controlling hydration at the element level:
* "data-ssr" is now available as `Reflex.Dom.Builder.Immediate.hydratableAttribute`.
* "data-hydration-skip" is now available as `Reflex.Dom.Builder.Immediate.skipHydrationAttribute`.
* ([#348](https://github.com/reflex-frp/reflex-dom/pull/348)) **(Breaking change)** Make XHR response headers case insensitive by changing `_xhrResponse_headers :: Map Text Text` to `_xhrResponse_headers :: Map (CI Text) Text`.
* ([#225](https://github.com/reflex-frp/reflex-dom/pull/225)) **(Breaking change)** Add a functional dependency to `HasDomEvent`.
* ([#366](https://github.com/reflex-frp/reflex-dom/pull/366)) Bump bounds for `reflex` to include 0.7.
## 0.5.3
* Deprecate a number of old inflexible widget helpers in `Reflex.Dom.Widget.Basic`:
* `Link`
* `button`
* `dtdd`
* `linkClass`
* `link`
* `tabDisplay`
* `tableDynAttr`
* `Link`
* `button`
* `dtdd`
* `linkClass`
* `link`
* `tabDisplay`
* `tableDynAttr`
And in `Reflex.Dom.Widget.Input`:
* `TextInput`
* `TextAreaConfig`
* `CheckboxConfig`
* `FileInput`
* Add `< 0.7` upper bound for reflex
* Fix the static rendering of which dropdown value is selected, see [#310](https://github.com/reflex-frp/reflex-dom/issues/310).
* *(Breaking change)* The mouse wheel event now is a `WheelEventResult` rather than `()`.
This provides information about the wheel's motion beyond the fact that it merely moved.
* `TextInput`
* `TextAreaConfig`
* `CheckboxConfig`
* `FileInput`
* Add `< 0.7` upper bound for `reflex`.
## 0.5.2

View File

@ -1,5 +1,5 @@
Name: reflex-dom-core
Version: 0.5.3
Version: 0.6.0.0
Synopsis: Functional Reactive Web Apps with Reflex
Description:
Reflex-DOM is a Functional Reactive web framework based on the Reflex FRP engine: <https://reflex-frp.org/>.

View File

@ -1,6 +1,6 @@
# Revision history for reflex-dom
## Unreleased
## 0.6.0.0
* ([#379](https://github.com/reflex-frp/reflex-dom/pull/379)) Re-export all modules from `reflex-dom-core`. The newly re-exported modules are:
* `Foreign.JavaScript.Utils`

View File

@ -1,5 +1,5 @@
Name: reflex-dom
Version: 0.5.3
Version: 0.6.0.0
Synopsis: Functional Reactive Web Apps with Reflex
Description:
Reflex-DOM is a Functional Reactive web framework based on the Reflex FRP engine: <https://reflex-frp.org/>.
@ -65,7 +65,7 @@ library
base >= 4.7 && < 4.14,
bytestring == 0.10.*,
reflex >= 0.6.2 && < 0.8,
reflex-dom-core >=0.5.2 && < 0.6,
reflex-dom-core == 0.6.0.0,
text == 1.2.*
if !impl(ghcjs)
if flag(use-warp) && (os(linux) || os(osx))