Browse Source

Updated CHANGELOG.md

zhixin 6 years ago
parent
commit
9f225b896a
1 changed files with 66 additions and 37 deletions
  1. 66 37
      CHANGELOG.md

+ 66 - 37
CHANGELOG.md

@@ -1,49 +1,78 @@
 ChangeLog
 ---------
 
-### 2.0.0
+### 1.15.0
 
 #### Core
 
-- **New:** Added virtual scroll to support large data sets ([#4268](https://github.com/wenzhixin/bootstrap-table/pull/4268)).
-- **New:** Added webpack support and user rollup to build the src ([#4272](https://github.com/wenzhixin/bootstrap-table/pull/4272)).
-- **New:** Added support comparisons search(<, >, <=, =<, >=, =>) ([#4218](https://github.com/wenzhixin/bootstrap-table/pull/4218)).
-- **New:** Added `detailViewByClick` table option and `detailFormatter` column option ([#4219](https://github.com/wenzhixin/bootstrap-table/pull/4219)).
-- **New:** Added `showExtendedPagination` and `totalNotFilteredField` table options ([#4226](https://github.com/wenzhixin/bootstrap-table/pull/4226)).
-- **New:** Improved `filterBy` method with `or` condition and custom filter algorithm ([#4230](https://github.com/wenzhixin/bootstrap-table/pull/4230)).
-- **New:** Improved `showColumn` and `hideColumn` methods with array of fields ([#4238](https://github.com/wenzhixin/bootstrap-table/pull/4238)).
-- **New:** Improved `scrollTo` method to allow `rows` units ([#4240](https://github.com/wenzhixin/bootstrap-table/pull/4240)).
-- **New:** Added `onPostFooter`(`post-footer.bs.table`) event ([#4232](https://github.com/wenzhixin/bootstrap-table/pull/4232)).
-- **New:** Added `detailViewIcon` and `toggleDetailView` method to hide the show/hide icons ([#4259](https://github.com/wenzhixin/bootstrap-table/pull/4259)).
-- **New:** Added `widthUnit` option allow any unit ([#4276](https://github.com/wenzhixin/bootstrap-table/pull/4276)).
-- **New:** Added `multipleSelectRow` option to support ctrl and shift select ([4881222](https://github.com/wenzhixin/bootstrap-table/pull/4256/commits/4881222a994f7348ea9b0e08dcd110307f89d177)).
-- **New:** Supported checkbox and radio auto checked from html ([#4288](https://github.com/wenzhixin/bootstrap-table/pull/4288)).
-- **Update:** Rewrote all code to ES6 ([#4256](https://github.com/wenzhixin/bootstrap-table/pull/4256)).
-- **Update:** Improved `pageList` options to support localization ([a9d9722](https://github.com/wenzhixin/bootstrap-table/commit/a9d9722bcb8be0f82499aae2389309936b094268)).
-- **Update:** Fixed `smartDisplay` option pagination bug ([5dbbe8d](https://github.com/wenzhixin/bootstrap-table/commit/5dbbe8dc973bdee849c91dc1618540b38925551f)).
-- **Update:** Set the `totalRows` option always ([#4228](https://github.com/wenzhixin/bootstrap-table/pull/4228)).
-- **Update:** Improved table footer ([5814a18](https://github.com/wenzhixin/bootstrap-table/commit/5814a18a9b35b6610087dbefd275974f4dd6e45e)).
-- **Update:** Fixed data-* attribute is an object bug ([c1d834e](https://github.com/wenzhixin/bootstrap-table/commit/c1d834e5025928bb3492bb97f90a437363ec461f)).
-- **Update:** Fixed page separators click bug ([#4251](https://github.com/wenzhixin/bootstrap-table/pull/4251)).
-- **Update:** Applied `cellStyle` to checkbox field ([#4253](https://github.com/wenzhixin/bootstrap-table/pull/4253)).
-- **Update:** Fixed card view value to be aligned incorrectly bug ([#4262](https://github.com/wenzhixin/bootstrap-table/pull/4262)).
-- **Update:** Updated parameters of the (un)checkAll events to `rowsAfter, rowsBefore` ([#4273](https://github.com/wenzhixin/bootstrap-table/pull/4273)).
-- **Update:** Renamed table `maintainSelected` option to `maintainMetaData` ([#4280](https://github.com/wenzhixin/bootstrap-table/pull/4280)).
-- **Update:** Improved css frameworks themes ([#4236](https://github.com/wenzhixin/bootstrap-table/pull/4236)).
+- **New:** Added virtual scroll to support large data sets.
+- **New:** Added vue component support.
+- **New:** Added support comparisons search(<, >, <=, =<, >=, =>).
+- **New:** Added `detailViewByClick` table option and `detailFormatter` column option.
+- **New:** Added `showExtendedPagination` and `totalNotFilteredField` table options.
+- **New:** Added `widthUnit` option to allow any unit.
+- **New:** Added `multipleSelectRow` option to support ctrl and shift select.
+- **New:** Added `onPostFooter`(`post-footer.bs.table`) event.
+- **New:** Added `detailViewIcon` and `toggleDetailView` method to hide the show/hide icons.
+- **New:** Added `showSearchButton` and `showSearchClearButton` options to improve the search.
+- **New:** Added `showButtonIcons` and `showButtonText` options to improve the icons display.
+- **New:** Added `visibleSearch` option search only on displayed/visible columns.
+- **New:** Added `showColumnsToggleAll` option to toggle all columns.
+- **New:** Added `cellStyle` to support checkbox field.
+- **New:** Added checkbox and radio auto checked from html support.
+- **New:** Added screen reader support for pagination.
+- **New:** Added travis lint src and check docs scripts.
+- **New:** Added webpack support and user rollup to build the src.
+- **New:** Added a version number property.
+- **New:** Improved `filterBy` method with `or` condition and custom filter algorithm.
+- **New:** Improved `showColumn` and `hideColumn` methods with array of fields.
+- **New:** Improved `scrollTo` method to allow `rows` units.
+- **Update:** Rewrote all code to ES6.
+- **Update:** Improved `pageList` options to support localization.
+- **Update:** Improved the `totalRows` option.
+- **Update:** Improved table footer.
+- **Update:** Improved `getSelections` and `getAllSelections` methods.
+- **Update:** Improved css frameworks themes.
+- **Update:** Updated parameters of the `getData` method.
+- **Update:** Updated parameters of the (un)checkAll events to `rowsAfter, rowsBefore`.
+- **Update:** Updated parameters of the `updateRow` method to support `replace`.
+- **Update:** Updated page number to 1 while making a server side sort.
+- **Update:** Renamed table `maintainSelected` option to `maintainMetaData`.
+- **Update:** Renamed method `refreshColumnTitle` to `updateColumnTitle`.
+- **Update:** Fixed card view value to be aligned incorrectly bug.
+- **Update:** Fixed `smartDisplay` option pagination bug.
+- **Update:** Fixed data-* attribute is an object bug.
+- **Update:** Fixed page separators click bug.
+- **Update:** Fixed scrolling bug in IE11.
+- **Update:** Fixed initHeader error caused by toggleColumn.
+- **Update:** Fixed search input trigger multiple times bug.
+- **Update:** Fix Pagination/totalRows not updated on `hideRow`.
+- **Update:** Fixed columns title error.
 
 #### Extensions
 
-- **New(cell-input):** Added cell-input extension ([#3647](https://github.com/wenzhixin/bootstrap-table/pull/3647)).
-- **Remove:** Removed multi-column-toggle, multiple-search, multiple-selection-row, group-by and tree-column extensions ([#4256](https://github.com/wenzhixin/bootstrap-table/pull/4256)).
-- **Update(export):** Only export table header ([#4279](https://github.com/wenzhixin/bootstrap-table/pull/4279)).
-- **Update(filter-control):** Added ability to handle boolean ([#4241](https://github.com/wenzhixin/bootstrap-table/pull/4241)).
-- **Update(filter-control):** Fixed DatePicker of filter-control does not work bug ([#4220](https://github.com/wenzhixin/bootstrap-table/pull/4220)).
-- **Update(filter-control):** Fixed clear filterControl with Cookie bug ([#4202](https://github.com/wenzhixin/bootstrap-table/pull/4202)).
-- **Update(filter-control):** Fixed loading screen with filter control ([#4274](https://github.com/wenzhixin/bootstrap-table/pull/4274)).
-- **Update(multiple-sort):** Fixed multiple-sort does not work with data-query-params bug ([#4222](https://github.com/wenzhixin/bootstrap-table/pull/4222)).
-- **New(editable):** Added `onExportSaved` event ([#4275](https://github.com/wenzhixin/bootstrap-table/pull/4275)).
-- **Update(editable):** Updated parameters of `onEditableSave` to `field, row, rowIndex, oldValue, $el` ([#4229](https://github.com/wenzhixin/bootstrap-table/pull/4229)).
-- **Update(editable):** Fixed editable rerender bug after saving data. ([#4225](https://github.com/wenzhixin/bootstrap-table/pull/4225))
+- **New(editable):** Added `onExportSaved` event.
+- **New(export):** Added `forceExport` column option force export columns with hidden.
+- **New(export):** Added function support of `fileName` option.
+- **New(filter-control):** Added `filterDataCollector` to control the filter select options.
+- **New(filter-control):** Added `filterOrderBy` and filterDefault column options.
+- **New(multiple-sort):** Added bootstrap v4 theme support.
+- **New(print):** Added RTL dir support.
+- **Remove:** Removed multi-column-toggle, multiple-search, multiple-selection-row, group-by and tree-column extensions.
+- **Update(cookie):** Fixed cookie search cannot work bug.
+- **Update(editable):** Updated parameters of `onEditableSave` to `field, row, rowIndex, oldValue, $el`.
+- **Update(editable):** Fixed editable rerender bug after saving data.
+- **Update(export):** Updated to only export table header.
+- **Update(export):** Fixed bug with the footer extensions while sorting.
+- **Update(filter-control):** Added ability to handle boolean.
+- **Update(filter-control):** Fixed DatePicker of filter-control does not work bug.
+- **Update(filter-control):** Fixed clear filterControl with Cookie bug.
+- **Update(filter-control):** Fixed loading screen with filter control.
+- **Update(filter-control):** Fixed overwriting the searchText bug.
+- **Update(filter-control):** Fixed filtering does not work json sub-object.
+- **Update(multiple-sort):** Fixed multiple-sort does not work with data-query-params bug.
+- **Update(page-jump-to):** Fixed `click` bug when paginationVAlign is 'both'.
+- **Update(reorder-columns):** Fixed reorder columns cannot work bug.
 - **Update(treegrid):** Fixed treegrid cannot work bug.
 
 ### 1.14.2