From cd21cf9103793706bf20511e2037363c3b584d8c Mon Sep 17 00:00:00 2001 From: ghiscoding Date: Thu, 10 Dec 2020 15:29:36 -0500 Subject: [PATCH] chore(release): publish new version --- CHANGELOG.md | 19 +++++++++++++++++++ .../webpack-demo-vanilla-bundle/CHANGELOG.md | 16 ++++++++++++++++ .../webpack-demo-vanilla-bundle/package.json | 10 +++++----- lerna.json | 2 +- packages/common/CHANGELOG.md | 19 +++++++++++++++++++ packages/common/package.json | 2 +- .../composite-editor-component/CHANGELOG.md | 11 +++++++++++ .../composite-editor-component/package.json | 4 ++-- packages/empty-warning-component/CHANGELOG.md | 11 +++++++++++ packages/empty-warning-component/package.json | 4 ++-- packages/excel-export/CHANGELOG.md | 11 +++++++++++ packages/excel-export/package.json | 4 ++-- packages/graphql/CHANGELOG.md | 11 +++++++++++ packages/graphql/package.json | 4 ++-- packages/odata/CHANGELOG.md | 11 +++++++++++ packages/odata/package.json | 4 ++-- packages/text-export/CHANGELOG.md | 16 ++++++++++++++++ packages/text-export/package.json | 4 ++-- packages/vanilla-bundle/CHANGELOG.md | 17 +++++++++++++++++ packages/vanilla-bundle/package.json | 12 ++++++------ 20 files changed, 167 insertions(+), 25 deletions(-) create mode 100644 packages/composite-editor-component/CHANGELOG.md create mode 100644 packages/empty-warning-component/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 5808a098f..23555c159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Bug Fixes + +* **editors:** make sure select editor is defined before reading a prop ([763f981](https://github.com/ghiscoding/slickgrid-universal/commit/763f98111d03652b0ad903ba487a3b8c83a5ef5d)) +* **editors:** only translate button texts when enableTranslate is true ([b698c6b](https://github.com/ghiscoding/slickgrid-universal/commit/b698c6bd3f13af017c7f3c0113b8407269ba1e0d)) +* **editors:** Select Editor option to return flat data w/complex object ([#189](https://github.com/ghiscoding/slickgrid-universal/issues/189)) ([4695cd3](https://github.com/ghiscoding/slickgrid-universal/commit/4695cd3b6871dc1ceca4036fd30935eca8011b7e)) +* **exports:** when cell value is empty object return empty string ([#190](https://github.com/ghiscoding/slickgrid-universal/issues/190)) ([cd34901](https://github.com/ghiscoding/slickgrid-universal/commit/cd349012c82a8bdff113fb9f8ef23ea18c6e3035)) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + ## [0.4.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.1...v0.4.2) (2020-12-07) diff --git a/examples/webpack-demo-vanilla-bundle/CHANGELOG.md b/examples/webpack-demo-vanilla-bundle/CHANGELOG.md index b4cec2e95..1640fd4d5 100644 --- a/examples/webpack-demo-vanilla-bundle/CHANGELOG.md +++ b/examples/webpack-demo-vanilla-bundle/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Bug Fixes + +* **editors:** Select Editor option to return flat data w/complex object ([#189](https://github.com/ghiscoding/slickgrid-universal/issues/189)) ([4695cd3](https://github.com/ghiscoding/slickgrid-universal/commit/4695cd3b6871dc1ceca4036fd30935eca8011b7e)) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + ## [0.4.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.1...v0.4.2) (2020-12-07) **Note:** Version bump only for package webpack-demo-vanilla-bundle diff --git a/examples/webpack-demo-vanilla-bundle/package.json b/examples/webpack-demo-vanilla-bundle/package.json index 21bc78e33..b4ccd03f8 100644 --- a/examples/webpack-demo-vanilla-bundle/package.json +++ b/examples/webpack-demo-vanilla-bundle/package.json @@ -1,6 +1,6 @@ { "name": "webpack-demo-vanilla-bundle", - "version": "0.4.2", + "version": "0.5.0", "private": true, "description": "SlickGrid-Universal demo", "directories": { @@ -25,10 +25,10 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", - "@slickgrid-universal/excel-export": "*", - "@slickgrid-universal/text-export": "*", - "@slickgrid-universal/vanilla-bundle": "*", + "@slickgrid-universal/common": "^0.5.0", + "@slickgrid-universal/excel-export": "^0.5.0", + "@slickgrid-universal/text-export": "^0.5.0", + "@slickgrid-universal/vanilla-bundle": "^0.5.0", "bulma": "^0.9.1", "moment-mini": "^2.24.0" }, diff --git a/lerna.json b/lerna.json index 4713008a8..245a7af54 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "0.4.2", + "version": "0.5.0", "command": { "publish": { "conventionalCommits": true diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index a33c8a8b0..a91dd7ee7 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Bug Fixes + +* **editors:** make sure select editor is defined before reading a prop ([763f981](https://github.com/ghiscoding/slickgrid-universal/commit/763f98111d03652b0ad903ba487a3b8c83a5ef5d)) +* **editors:** only translate button texts when enableTranslate is true ([b698c6b](https://github.com/ghiscoding/slickgrid-universal/commit/b698c6bd3f13af017c7f3c0113b8407269ba1e0d)) +* **editors:** Select Editor option to return flat data w/complex object ([#189](https://github.com/ghiscoding/slickgrid-universal/issues/189)) ([4695cd3](https://github.com/ghiscoding/slickgrid-universal/commit/4695cd3b6871dc1ceca4036fd30935eca8011b7e)) +* **exports:** when cell value is empty object return empty string ([#190](https://github.com/ghiscoding/slickgrid-universal/issues/190)) ([cd34901](https://github.com/ghiscoding/slickgrid-universal/commit/cd349012c82a8bdff113fb9f8ef23ea18c6e3035)) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + # [0.4.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.3.0...v0.4.0) (2020-12-07) diff --git a/packages/common/package.json b/packages/common/package.json index d7ab92abc..ccde07bfc 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/common", - "version": "0.4.0", + "version": "0.5.0", "description": "SlickGrid-Universal Common Code", "browser": "src/index.ts", "main": "dist/commonjs/index.js", diff --git a/packages/composite-editor-component/CHANGELOG.md b/packages/composite-editor-component/CHANGELOG.md new file mode 100644 index 000000000..e9afbe844 --- /dev/null +++ b/packages/composite-editor-component/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) diff --git a/packages/composite-editor-component/package.json b/packages/composite-editor-component/package.json index e5080f003..4440ec737 100644 --- a/packages/composite-editor-component/package.json +++ b/packages/composite-editor-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/composite-editor-component", - "version": "0.4.0", + "version": "0.5.0", "description": "Slick Composite Editor Component - Vanilla Implementation of a Composite Editor Modal Window Component", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,7 +36,7 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", + "@slickgrid-universal/common": "^0.5.0", "dompurify": "^2.2.3" }, "devDependencies": { diff --git a/packages/empty-warning-component/CHANGELOG.md b/packages/empty-warning-component/CHANGELOG.md new file mode 100644 index 000000000..e9afbe844 --- /dev/null +++ b/packages/empty-warning-component/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) diff --git a/packages/empty-warning-component/package.json b/packages/empty-warning-component/package.json index 5bc63d269..c8fc01ba1 100644 --- a/packages/empty-warning-component/package.json +++ b/packages/empty-warning-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/empty-warning-component", - "version": "0.4.0", + "version": "0.5.0", "description": "Slick Empty Warning Component - Vanilla Implementation of an Empty Dataset Warning Component", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,7 +36,7 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", + "@slickgrid-universal/common": "^0.5.0", "dompurify": "^2.2.3" }, "devDependencies": { diff --git a/packages/excel-export/CHANGELOG.md b/packages/excel-export/CHANGELOG.md index ddcb5db1a..8a1e54c6a 100644 --- a/packages/excel-export/CHANGELOG.md +++ b/packages/excel-export/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + ## [0.4.1](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.0...v0.4.1) (2020-12-07) diff --git a/packages/excel-export/package.json b/packages/excel-export/package.json index cded14fda..37222d26f 100644 --- a/packages/excel-export/package.json +++ b/packages/excel-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/excel-export", - "version": "0.4.1", + "version": "0.5.0", "description": "Excel Export (xls/xlsx) Service.", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,7 +36,7 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", + "@slickgrid-universal/common": "^0.5.0", "excel-builder-webpacker": "^2.0.1", "moment-mini": "^2.24.0" }, diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 229d3a662..a62d9a430 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + # [0.4.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.3.0...v0.4.0) (2020-12-07) **Note:** Version bump only for package @slickgrid-universal/graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 4e620ffc1..f0255e115 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/graphql", - "version": "0.4.0", + "version": "0.5.0", "description": "GraphQL Service to sync a grid with a GraphQL backend server", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,7 +36,7 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "^0.4.0" + "@slickgrid-universal/common": "^0.5.0" }, "devDependencies": { "moment-mini": "^2.24.0" diff --git a/packages/odata/CHANGELOG.md b/packages/odata/CHANGELOG.md index acf981508..426a0946c 100644 --- a/packages/odata/CHANGELOG.md +++ b/packages/odata/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + # [0.4.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.3.0...v0.4.0) (2020-12-07) **Note:** Version bump only for package @slickgrid-universal/odata diff --git a/packages/odata/package.json b/packages/odata/package.json index 2284e8972..1dce2c304 100644 --- a/packages/odata/package.json +++ b/packages/odata/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/odata", - "version": "0.4.0", + "version": "0.5.0", "description": "Grid OData Service to sync a grid with an OData backend server", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,6 +36,6 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "^0.4.0" + "@slickgrid-universal/common": "^0.5.0" } } diff --git a/packages/text-export/CHANGELOG.md b/packages/text-export/CHANGELOG.md index 725304859..58e4a007a 100644 --- a/packages/text-export/CHANGELOG.md +++ b/packages/text-export/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Bug Fixes + +* **exports:** when cell value is empty object return empty string ([#190](https://github.com/ghiscoding/slickgrid-universal/issues/190)) ([cd34901](https://github.com/ghiscoding/slickgrid-universal/commit/cd349012c82a8bdff113fb9f8ef23ea18c6e3035)) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + ## [0.4.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.1...v0.4.2) (2020-12-07) diff --git a/packages/text-export/package.json b/packages/text-export/package.json index c2199fe66..d4cc7c040 100644 --- a/packages/text-export/package.json +++ b/packages/text-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/text-export", - "version": "0.4.2", + "version": "0.5.0", "description": "Export to Text File (csv/txt) Service.", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -36,7 +36,7 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", + "@slickgrid-universal/common": "^0.5.0", "text-encoding-utf-8": "^1.0.2" }, "devDependencies": { diff --git a/packages/vanilla-bundle/CHANGELOG.md b/packages/vanilla-bundle/CHANGELOG.md index ef270b8ce..45a2053da 100644 --- a/packages/vanilla-bundle/CHANGELOG.md +++ b/packages/vanilla-bundle/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.5.0](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.2...v0.5.0) (2020-12-10) + + +### Bug Fixes + +* **editors:** Select Editor option to return flat data w/complex object ([#189](https://github.com/ghiscoding/slickgrid-universal/issues/189)) ([4695cd3](https://github.com/ghiscoding/slickgrid-universal/commit/4695cd3b6871dc1ceca4036fd30935eca8011b7e)) +* **exports:** when cell value is empty object return empty string ([#190](https://github.com/ghiscoding/slickgrid-universal/issues/190)) ([cd34901](https://github.com/ghiscoding/slickgrid-universal/commit/cd349012c82a8bdff113fb9f8ef23ea18c6e3035)) + + +### Features + +* **components:** extract CompositeEditor & EmptyWarning Components ([#191](https://github.com/ghiscoding/slickgrid-universal/issues/191)) ([00cf9a2](https://github.com/ghiscoding/slickgrid-universal/commit/00cf9a22e1924a46ed637d52bba8efc02ef7eea1)) + + + + + ## [0.4.2](https://github.com/ghiscoding/slickgrid-universal/compare/v0.4.1...v0.4.2) (2020-12-07) diff --git a/packages/vanilla-bundle/package.json b/packages/vanilla-bundle/package.json index 24a5db7ff..e2fbe21ac 100644 --- a/packages/vanilla-bundle/package.json +++ b/packages/vanilla-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-bundle", - "version": "0.4.2", + "version": "0.5.0", "description": "Vanilla Slick Grid Bundle - Framework agnostic the output is to be used in vanilla JS/TS - Written in TypeScript and we also use WebPack to bundle everything into 1 JS file.", "browser": "src/index.ts", "main": "dist/commonjs/index.js", @@ -44,11 +44,11 @@ "not dead" ], "dependencies": { - "@slickgrid-universal/common": "*", - "@slickgrid-universal/composite-editor-component": "*", - "@slickgrid-universal/empty-warning-component": "*", - "@slickgrid-universal/excel-export": "*", - "@slickgrid-universal/text-export": "*", + "@slickgrid-universal/common": "^0.5.0", + "@slickgrid-universal/composite-editor-component": "^0.5.0", + "@slickgrid-universal/empty-warning-component": "^0.5.0", + "@slickgrid-universal/excel-export": "^0.5.0", + "@slickgrid-universal/text-export": "^0.5.0", "dompurify": "^2.2.2", "es6-promise": "^4.2.8", "isomorphic-fetch": "^3.0.0"