Skip to content

Commit

Permalink
effector-react 22.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zerobias committed May 15, 2023
1 parent 60006ab commit 7a62b1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@

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

## effector-react 22.5.2

- Fix bug in `useUnit` during event change ([issue #900](https://github.com/effector/effector/issues/900), [PR #901](https://github.com/effector/effector/pull/901))

## effector 22.8.5

- Follow up fix for `22.8.4`: now fix works for `fork({ handlers })` calls too. [PR #898] (https://github.com/effector/effector/pull/898)
- Follow up fix for `22.8.4`: now fix works for `fork({ handlers })` calls too. [PR #898](https://github.com/effector/effector/pull/898)

## effector 22.8.4

- Fixed an edge case for `fork` calls without sid (function from release `22.8.0`). Some libraries provide built-in sid's in the code, which led to the `duplicated sid found` exception when calling `fork` when trying to use two instances of the same factory in a test and running it without `effector/babel-plugin`.
The exception on `fork` calls is no longer thrown, and all sid-related checks and assertions have been moved to `serialize` calls, since sid's are actually only required for `serialize` to work. [PR #897](https://github.com/effector/effector/pull/897)
The exception on `fork` calls is no longer thrown, and all sid-related checks and assertions have been moved to `serialize` calls, since sid's are actually only required for `serialize` to work. [PR #897](https://github.com/effector/effector/pull/897)

## effector 22.8.3

Expand Down
2 changes: 1 addition & 1 deletion packages/effector-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effector-react",
"version": "22.5.1",
"version": "22.5.2",
"description": "React bindings for effector",
"main": "effector-react.cjs.js",
"module": "effector-react.mjs",
Expand Down
2 changes: 1 addition & 1 deletion tools/builder/packages.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const keywords = [

const version = {
effector: '22.8.5',
'effector-react': '22.5.1',
'effector-react': '22.5.2',
'effector-vue': '22.2.0',
'effector-solid': '0.22.7',
forest: '0.21.2',
Expand Down

0 comments on commit 7a62b1b

Please sign in to comment.