Skip to content

Releases: helloitsjoe/react-hooks-compose

v2.0.20

07 Dec 14:52
be0a459
Compare
Choose a tag to compare

Chore

  • Bump decode-uri-component from 0.2.0 to 0.2.2
  • Bump loader-utils from 1.4.0 to 1.4.2

v2.0.19

05 Sep 20:09
Compare
Choose a tag to compare

Chore

  • Include React 17 and 18 in peerDependencies
  • Remove enzyme and convert tests to React Testing Library
  • Upgrade dependencies

v2.0.18

28 Mar 04:18
255c148
Compare
Choose a tag to compare

v2.0.18

v2.0.17

28 Mar 04:01
1b1c16b
Compare
Choose a tag to compare

v2.0.17

v2.0.16

27 Sep 01:23
45abc45
Compare
Choose a tag to compare

v2.0.16

v2.0.15

30 May 20:41
6293b1a
Compare
Choose a tag to compare

v2.0.15

v2.0.14

26 May 12:38
d46983d
Compare
Choose a tag to compare

v2.0.14

v2.0.12

17 Mar 11:14
Compare
Choose a tag to compare
2.0.12

v2.0.0

25 Aug 14:30
Compare
Choose a tag to compare
  • Allow for single return value from hooks
  • Update function argument API
// Previously
composeHooks(props => {
  useFunc: useFunc(props)
});

// Now
composeHooks(props => {
  useFunc: () => useFunc(props)
});