From 8ab2810dccfdd4a3edeafdc68bac8eaa75a8b44c Mon Sep 17 00:00:00 2001 From: "Portugal, Marcelo" Date: Sun, 29 Apr 2018 01:31:38 -0400 Subject: [PATCH] chore: Release v4.4.8 --- CHANGELOG.md | 20 ++++++++++++++++++++ bower.json | 2 +- grunt/changelog.js | 6 ------ grunt/conventionalChangelog.js | 11 +++++++++++ package.json | 2 +- 5 files changed, 33 insertions(+), 8 deletions(-) delete mode 100644 grunt/changelog.js create mode 100644 grunt/conventionalChangelog.js diff --git a/CHANGELOG.md b/CHANGELOG.md index e634a02ee4..80c5280175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ + +## [4.4.8](https://github.com/angular-ui/ui-grid/compare/v4.4.7...v4.4.8) (2018-04-29) + + +### Bug Fixes + +* **exporter.js:** Eliminate selection column. Add export scale factor for excel and fonts ([d96f43d](https://github.com/angular-ui/ui-grid/commit/d96f43d)) +* **selection.js:** Allow group header selection. ([9718d8b](https://github.com/angular-ui/ui-grid/commit/9718d8b)), closes [#6698](https://github.com/angular-ui/ui-grid/issues/6698) +* **selection.js:** Check if column is row header before disabling selection. ([dff19a7](https://github.com/angular-ui/ui-grid/commit/dff19a7)), closes [#5239](https://github.com/angular-ui/ui-grid/issues/5239) +* **selection.js:** getSelectedRows will work on primitive data types. ([39a5439](https://github.com/angular-ui/ui-grid/commit/39a5439)), closes [#6704](https://github.com/angular-ui/ui-grid/issues/6704) +* **selection.js:** Raise rowSelectionChangedBatch after toggling selectAll flag. ([bff5bb2](https://github.com/angular-ui/ui-grid/commit/bff5bb2)), closes [#5411](https://github.com/angular-ui/ui-grid/issues/5411) +* **tree-base.js:** Call updateRowHeaderWidth even when no data exists. ([49678eb](https://github.com/angular-ui/ui-grid/commit/49678eb)), closes [#5430](https://github.com/angular-ui/ui-grid/issues/5430) + + +### Features + +* **ui-i18n.js:** Allow replacing/customizing specific existing locale strings when using add. ([d6d820f](https://github.com/angular-ui/ui-grid/commit/d6d820f)) + + + ### v4.4.7 (2018-04-20) diff --git a/bower.json b/bower.json index 8c6b2e28ae..e9c60c1a2c 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "angular-ui-grid", - "version": "4.4.7", + "version": "4.4.8", "homepage": "http://ui-grid.info", "repository": { "type": "git", diff --git a/grunt/changelog.js b/grunt/changelog.js deleted file mode 100644 index 785a368cff..0000000000 --- a/grunt/changelog.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - options: { - dest: 'CHANGELOG.md', - github: 'angular-ui/ng-grid' - } -}; diff --git a/grunt/conventionalChangelog.js b/grunt/conventionalChangelog.js new file mode 100644 index 0000000000..b2d7291e82 --- /dev/null +++ b/grunt/conventionalChangelog.js @@ -0,0 +1,11 @@ +module.exports = { + options: { + changelogOpts: { + // conventional-changelog options go here + preset: 'angular' + } + }, + release: { + src: 'CHANGELOG.md' + } +}; diff --git a/package.json b/package.json index bec19eb3c2..ee8bebd0ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ui-grid", - "version": "4.4.7", + "version": "4.4.8", "description": "A data grid for Angular", "directories": { "test": "test"