Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#73 add unmount function #74

Merged
merged 10 commits into from
Aug 29, 2022
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 3.2.1

- Fix #50: Components that returned a fragment saw their `mount` lifecycle
method called after the first child element had been created instead of after
the render had completed.
- Fix a bug where calling `component.update()` during a mount lifecycle handler
resulted in the component recursively mounting ad infinitum.

# 3.2.0

- #59: Forgo's legacy component syntax (component syntax used through v3.1.1)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "forgo",
"version": "3.2.0",
"version": "3.2.1",
"main": "./dist/index.js",
"type": "module",
"author": "Jeswin Kumar<jeswinpk@agilehead.com>",
Expand Down
Loading