Skip to content

Commit 356a2b1

Browse files
committed
release v4.3.1
1 parent 6fd39db commit 356a2b1

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
### 4.3.1 (Apr 11, 2020)
4+
5+
> This is a bugfix release.
6+
7+
- Happy Easter!
8+
- Fixed a serious bug that caused `<DraggableCore>` not to pass styles.
9+
- `React.cloneElement` has an odd quirk. When you do:
10+
```js
11+
return React.cloneElement(this.props.children, {style: this.props.children.props.style});
12+
```
13+
, `style` ends up undefined.
14+
- Fixed a bug that caused debug output to show up in the build.
15+
- `babel-loader` cache does not invalidate when it should. I had modified webpack.config.js in the last version but it reused stale cache.
16+
317
### 4.3.0 (Apr 10, 2020)
418

519
- Fix setState warning after dismount if drag still active. Harmless, but prints a warning. [#424](https://github.com/mzabriskie/react-draggable/pull/424)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-draggable",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "React draggable component",
55
"main": "build/cjs/cjs.js",
66
"browser": "build/web/react-draggable.min.js",

0 commit comments

Comments
 (0)