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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update handsontable to the latest version 馃殌 #625

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link
Contributor

@greenkeeper greenkeeper bot commented Mar 6, 2019

The dependency handsontable was updated from 6.2.2 to 7.0.0.

This version is not covered by your current version range.

If you don鈥檛 accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.


Release Notes for 7.0.0

Breaking changes

  • Starting with version 7.0.0, there is only one Handsontable, as Handsontable Pro has been merged with Handsontable Community Edition.

  • Handsontable is now "source-available" instead of "open source". The MIT license has been replaced with custom, free for non-commercial license.

    Read the manifesto on GitHub for more details.

  • Added the beforeTrimRows and beforeUntrimRows hooks and modified the argument list for the existing ones in the Trim Rows plugin.

    • Was:
      afterTrimRow: (rows)
      afterUntrimRow: (rows)
    • Is:

      afterTrimRow: (currentTrimConfig, destinationTrimConfig, actionPossible, stateChanged)
      afterUntrimRow: (currentTrimConfig, destinationTrimConfig, actionPossible, stateChanged)

      (#5662)
  • Removed the deprecated selectCellByProp method. (#5174)

  • Added hooks for the Hidden Rows and Hidden Columns plugins + added validation of the provided rows.

  • We no longer support Bower. To install Handsontable, use Npm or CDN instead.

Changes

  • Refactored the following classes to ES6:
  • Fixed a problem where inserting a new row didn't update the TrimRows plugin properly. (#5761)
  • Fixed a problem where removing a row didn't update the TrimRows plugin properly. (#5738)
  • Added a possibility to declare the table's width/height using relative values (%, vh, vw, rem, em). (#5749)
  • Added support for creating a Handsontable instance inside an iframe by initializing it outside of it. (#5686, #5744)
  • Extended the Hidden Rows' hooks argument list. (#5671)
  • Updated the hot-formula-parser package in package.json. (#5665)
  • Fixed a bug where the getCell method returned undefined in some specific cases. (#5608)
  • Fixed a bug where an asynchronous validator would throw an exception when run after the table had been destroyed. (#5567)
  • Fixed a bug where an input defined in the headers would lose focus right after clicking on it. (#5541)
  • Fixed a bug where using preventOverflow would cause the editor offset to be incorrect when scrolling vertically. (#5453)
  • Fixed a bug where selecting a mixed merged/non-merged section would cause improper results. (#4912)
  • Fixed a problem where the Handsontable class export differed between UMD and other environments. (#4605)
  • Fixed a bug where disabling colHeaders using updateSettings would not work properly. (#4136)
  • Fixed a bug where the changes cancelled using the beforeChange hook were still validated. (#3381)
  • Updated the documentation for the setSortConfig method of the ColumnSorting plugin. (handsontable/docs#19)
  • Fixed a problem, where passing an Array as a cell value would cause the populateFromArray method to fail. (#5675)
  • Rewrote the TypeScript definition file, so it would match the actual structure of the library more precisely. (#5767)
  • Fixed a problem where resizing the table would not trigger the rendering process. (#5730, #2766)
  • Fixed a memory leak in the Context Menu plugin. (#5759)
  • Fixed a problem with where it was impossible to add cell comments, due to the editor closing too early. (#5614)
  • Fixed a bug where the Trim Rows plugin passed an unwanted value from the beforeCreateRow hook callback. (#5585)
  • Fixed a problem with the Context Menu displaying an empty box when no available menu items were provided. (#3865)
Commits

The new version differs by 343 commits.

  • d0aac96 Merge branch 'release/7.0.0'
  • d2909b5 7.0.0
  • 267401a Changed: TableView.activeWt has to be public, otherwise Firefox throws an error. (#5834)
  • 9fa15a1 Add CDN entries to package.json (#5829)
  • c66433d 7.0.0
  • 792f364 Update the 'handsontable.d.ts' file and fix some minor documentation mistakes. (#5827)
  • c7724f8 Update the lock files with the correct registry.
  • eaba50e 7.0.0
  • 0a1335b 7.0.0-rc1
  • f670f77 Fix typo in license message.
  • 19964f3 Additional check for this.instance.view for ie11 (#5813)
  • ff3578d Pre-code freeze fix for calculations of the overlays' dimensions (#5811)
  • 56a531e The hidden editor should not scroll window on Firefox. (#5805)
  • 37da8e7 Partially revert changes from #4136. (#5807) (#5809)
  • c9afa2b Few small README.md fixes (#5808)

There are 250 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don鈥檛 help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 馃尨

greenkeeper bot added a commit that referenced this pull request Apr 8, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 8, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.0.1.

Update to this version instead 馃殌

Release Notes for 7.0.1

Changes

  • Fixed the LICENSE.txt file link in README.md. (#5914)
  • Replaced fixed positioning of the row/column resize handles with absolute to prevent misalignment issues in implementations based on CSS transform. (#5050)
  • Updated webpack to version 4. (#5912)
  • Fixed a problem with Handsontable throwing errors on scroll by adding support for EventListenerOption in the EventManager. (#5904, #4526)
  • Added core-js to Handsontable's dependencies. (#5888)
  • Added a ghost-table attribute to all cell elements generated with Ghost Table. (#5927)
  • Fixed a bug, where the editor was visible despite not being open, when the table was positioned using CSS transform. (#5886)
  • Fixed a bug, where the table scrolled up after clicking a cell when Handsontable was implemented inside of an iframe. (#5910)
Commits

The new version differs by 12 commits.

  • df81543 Merge branch 'release/7.0.1'
  • bbbdd96 7.0.1
  • 7a2a2f5 A new approach to TextEditor's positioning (#5891)
  • 8f554f5 Set the 'ghost-table' attribute for the 'createRow' method in Ghost Table. (#5927)
  • 6d73009 Add core-js to prod dependencies (#5908)
  • 927707c Support for EventListenerOption in EventManager (#5919)
  • 1f68e76 Upgrade to webpack@4 (#5912)
  • 17897a4 Switch fixed positioning to absolute for the resize handles. (#5902)
  • 00dd635 Fix LICENSE.txt file link in README.md (#5914)
  • 5b7697a Merge tag '7.0.0' into develop
  • 3f6ca7e Changed: TableView.activeWt has to be public, otherwise Firefox throws an error. (#5834)
  • a9ecd59 Update the 'handsontable.d.ts' file and fix some minor documentation mistakes. (#5827)

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 9, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Apr 9, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.0.2.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request May 13, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented May 13, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.0.3.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Jun 11, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Jun 11, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.1.0.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Aug 12, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Aug 12, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.1.1.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Oct 15, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 15, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.2.0.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Oct 16, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 16, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.2.1.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Oct 23, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Oct 23, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.2.2.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Dec 12, 2019
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Dec 12, 2019

  • The dependency handsontable was updated from 6.2.2 to 7.3.0.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Feb 12, 2020
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Feb 12, 2020

  • The dependency handsontable was updated from 6.2.2 to 7.4.0.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Feb 19, 2020
@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Feb 19, 2020

  • The dependency handsontable was updated from 6.2.2 to 7.4.1.

Update to this version instead 馃殌

@greenkeeper
Copy link
Contributor Author

greenkeeper bot commented Feb 19, 2020

  • The dependency handsontable was updated from 6.2.2 to 7.4.2.

Update to this version instead 馃殌

greenkeeper bot added a commit that referenced this pull request Feb 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants