Skip to content

Commit

Permalink
release 0.16.6
Browse files Browse the repository at this point in the history
  • Loading branch information
STRML committed Mar 8, 2018
1 parent 0197eb9 commit f5a092c
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 25 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

0.16.6 (Mar 8, 2018)
----

- Fixed collision issue where items below could rearrange on a move.
- The root cause was "teleportation", or practically the same bug that leads to Pac-Man going through
ghosts now and then. If a large element moves up by a few grid units, the space it vacates can suddenly
become occupiable by an element below it. Rather than the collision happening properly, they exchange spaces
atomically. The fix is to move items down one grid unit at a time to ensure
this rearrangement does not happen.
- Thanks @torkelo for your hard work on this for Grafana 5, which I very unfortunately managed to break
when refactoring for 0.16.1.
- Ref: #650, #739
- Added a "Toolbox" demo (thanks @jhob)

0.16.5 (Feb 26, 2018)
----

Expand Down
50 changes: 27 additions & 23 deletions dist/react-grid-layout.min.js

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

2 changes: 1 addition & 1 deletion dist/react-grid-layout.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "react-grid-layout",
"version": "0.16.5",
"version": "0.16.6",
"description": "A draggable and resizable grid layout with responsive breakpoints, for React.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f5a092c

Please sign in to comment.