Skip to content

Commit 7a085c3

Browse files
committed
Release v3.10.1.
1 parent 8a71f71 commit 7a085c3

5 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
v3.10.1 - Wed, 21 Aug 2019 20:49:53 UTC
2+
---------------------------------------
3+
4+
- [8a71f71](../../commit/8a71f71) [fixed] onAfterClose prop falsly called on unmount
5+
- [1b80146](../../commit/1b80146) Revert "Merge pull request #766 from reactjs/dependabot/npm_and_yarn/webpack-dev-server-3.1.11"
6+
- [43e2296](../../commit/43e2296) Revert "[chore] run npm audit fix"
7+
- [0b56049](../../commit/0b56049) Revert "[chore] cleanup readme"
8+
- [a428d83](../../commit/a428d83) [chore] cleanup readme
9+
- [b0eb17f](../../commit/b0eb17f) [chore] run npm audit fix
10+
- [9a6edf9](../../commit/9a6edf9) Merge pull request #766 from reactjs/dependabot/npm_and_yarn/webpack-dev-server-3.1.11
11+
- [8f4ea54](../../commit/8f4ea54) Bump webpack-dev-server from 2.11.5 to 3.1.11
12+
13+
114
v3.9.1 - Sun, 14 Jul 2019 16:52:30 UTC
215
--------------------------------------
316

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-modal",
3-
"version": "3.9.1",
3+
"version": "3.10.1",
44
"homepage": "https://github.com/reactjs/react-modal",
55
"authors": [
66
"Ryan Florence",

dist/react-modal.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2028,7 +2028,9 @@ var ModalPortal = function (_Component) {
20282028
}, {
20292029
key: "componentWillUnmount",
20302030
value: function componentWillUnmount() {
2031-
this.afterClose();
2031+
if (this.state.isOpen) {
2032+
this.afterClose();
2033+
}
20322034
clearTimeout(this.closeTimer);
20332035
}
20342036
}, {

dist/react-modal.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-modal",
3-
"version": "3.9.1",
3+
"version": "3.10.1",
44
"description": "Accessible modal dialog component for React.JS",
55
"main": "./lib/index.js",
66
"module": "./lib/index.js",

0 commit comments

Comments
 (0)