Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Releases: finos/openfin-react-hooks

v2.0.0

10 Feb 11:41
Compare
Choose a tag to compare

Breaking Changes

  • Change signature of all the inter application bus hooks: useInterApplicationBusSubscribe, useInterApplicationBusSend, useInterApplicationBusPublish (thanks @ms14981 @jlight-scottlogic @oriondean ).
    • Subscribe hook additionally takes onReceiveMessage and onFail callbacks as the third and fourth parameters respectively. It now returns only a boolean isSubscribed to indicate whether the topic specified is currently subscribed to.
    • Send and publish hooks now no longer accept the message to send as a parameter, but return a function that takes the message as the only argument and sends the message.

Features

Miscellaneous

v1.3.3

29 Jan 14:20
df9136e
Compare
Choose a tag to compare

Features

Bug Fixes

  • Fix for fin undefined on useInterApplicationBus hooks (thanks to @darrenfurr @ms14981)
  • Ensure style and links are included for useChildWindow shouldInheritCss Option (thanks to @SL-SWoods)

Miscellaneous

  • Update readme to give more info on running the demo app (thanks to @jlight-scottlogic)
  • Run npm audit fix to resolve medium, high and critical demo application vulnerabilites (thanks to @jlight-scottlogic)

v.1.3.1

20 Nov 16:49
486c632
Compare
Choose a tag to compare

Bug Fixes

  • Fix populate not firing due to htmlDocument being undefined. (thanks to @AugusteBa)

v1.3.0

24 Oct 13:09
Compare
Choose a tag to compare

Features

  • Added useNotification hook (thanks to @AugusteBa)

Bug Fixes

  • Clear out window references when a child window is closed by the user rather than programatically (via close button) (thanks to @AugusteBa)

Miscellaneous

  • Updated documentation (NOTICE / README / CONTRIBUTING) to meet FINOS requirements (thanks to @ColinEberhardt)
  • Added license validation to npm scripts + CI (thanks to @ColinEberhardt)

v1.2.0

15 Oct 14:31
Compare
Choose a tag to compare

Features

  • Added useChildWindow hook (thanks to @AugusteBa)
  • Added additional undocking options to useDockWindow hook (thanks to @jrhenderson1988)

Bug Fixes

  • Fixed bug with useDockWindow sometimes initialising with wrong screen edge (thanks to @kangelSL)

Miscellaneous

  • Changed from MIT to Apache 2.0 License (thanks to @ColinEberhardt, @maoo)
  • Moved react-scripts and TypeScript from devDependencies to dependencies (demo application) (thanks to @ColinEberhardt , @maoo)