Skip to content

Commit

Permalink
effector 23.2.2, effector-react 23.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zerobias committed May 23, 2024
1 parent 89e7942 commit f51c1c7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

See also [separate changelogs for each library](https://changelog.effector.dev/)

## effector 23.2.2

- Fix types for createEffect and attach in factories with generics ([issue #1069](https://github.com/effector/effector/issues/1069)). Cases like this now works correctly:

```ts
function createModel<T>() {
const $data = createStore<T | null>(null)
const fx = createEffect(() => null as T)
sample({clock: fx.doneData, target: $data})
}
```

## effector-react 23.2.1

- Fix types for `useUnit([fx])` with effect with custom error ([PR #1070](https://github.com/effector/effector/pull/1070))

## effector 23.2.1

- Fix forbidden keys in combine ([issue #1064](https://github.com/effector/effector/issues/1064))
Expand Down

0 comments on commit f51c1c7

Please sign in to comment.