diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d344a12..ee24d63e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Features + +* add warning if necessary rows aren't added ([6471248](https://github.com/ghiscoding/slickgrid-universal/commit/6471248fa3cb70c93a938eb878c34232561d55ff)) - by @zewa666 +* matching border color for range selector in darkmode ([aec04ed](https://github.com/ghiscoding/slickgrid-universal/commit/aec04ed1e5fa286552c4c60b4f09ce8d3ba65f36)) - by @zewa666 +* switch darkmode inside init ([908e7aa](https://github.com/ghiscoding/slickgrid-universal/commit/908e7aa77dd1cfbd049238052a4e9d7e2a04828a)) - by @zewa666 + +### Bug Fixes + +* composite editor wrong selector ([77b89c6](https://github.com/ghiscoding/slickgrid-universal/commit/77b89c685110a74a051c7aab054700763a209342)) - by @zewa666 +* **core:** Autocomplete Editor shouldn't navigate down twice on enter ([4f9eb36](https://github.com/ghiscoding/slickgrid-universal/commit/4f9eb369793ef62794d032f6eb69cd32e38ea747)) - by @ghiscoding +* **deps:** update dependency @faker-js/faker to v9 ([5e9ffb2](https://github.com/ghiscoding/slickgrid-universal/commit/5e9ffb26cca80e267c1f25f0b93839a8b7aea6b1)) - by @renovate-bot +* do not create empty object rows, use newRowCreator instead ([a170560](https://github.com/ghiscoding/slickgrid-universal/commit/a170560a2543b57ad8b975ca8fbfe9d005c49e61)) - by @zewa666 +* **Eslint:** Fix eslint errors ([a842223](https://github.com/ghiscoding/slickgrid-universal/commit/a842223b5111b95a031b53baafcee397ba0186d5)) - by @ +* **styling:** add missing `!default` to a few SASS variables ([6779947](https://github.com/ghiscoding/slickgrid-universal/commit/6779947c18759609c4fa9977cd88d79d9058f126)) - by @ghiscoding-SE +* **TreeData:** identifier is not always "id' when unflattening ([78653f9](https://github.com/ghiscoding/slickgrid-universal/commit/78653f9ff2807a53b0622e35b86ad35bd53e345f)) - by @ghiscoding-SE +* **TreeData:** Reset the childrens prop when unflattening dataset in case it is being reused ([cf70729](https://github.com/ghiscoding/slickgrid-universal/commit/cf70729b62318a3b6997b20b3ae692266d075df1)) - by @ + +### Performance Improvements + +* don't invalidate grid rows more than once, fixes [#1678](https://github.com/ghiscoding/slickgrid-universal/issues/1678) ([a5b9647](https://github.com/ghiscoding/slickgrid-universal/commit/a5b964748ac4f33aca222c03ccce9e3699320cb1)) - by @ghiscoding +* **RowDetail:** use Set to improve perf with Row Detail ([5abfd41](https://github.com/ghiscoding/slickgrid-universal/commit/5abfd41cf54ddad6f2298a803e1603a27dd1d189)) - by @ghiscoding +* use Set to improve perf when read current values ([56dfe92](https://github.com/ghiscoding/slickgrid-universal/commit/56dfe927cae76d7a109659a506b213109d3c11ff)), closes [#1670](https://github.com/ghiscoding/slickgrid-universal/issues/1670) - by @ghiscoding + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) ### Bug Fixes diff --git a/examples/vite-demo-vanilla-bundle/CHANGELOG.md b/examples/vite-demo-vanilla-bundle/CHANGELOG.md index 17c017626..5f3e6dde2 100644 --- a/examples/vite-demo-vanilla-bundle/CHANGELOG.md +++ b/examples/vite-demo-vanilla-bundle/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Bug Fixes + +* **deps:** update dependency @faker-js/faker to v9 ([5e9ffb2](https://github.com/ghiscoding/slickgrid-universal/commit/5e9ffb26cca80e267c1f25f0b93839a8b7aea6b1)) - by @renovate-bot + +### Performance Improvements + +* use Set to improve perf when read current values ([56dfe92](https://github.com/ghiscoding/slickgrid-universal/commit/56dfe927cae76d7a109659a506b213109d3c11ff)), closes [#1670](https://github.com/ghiscoding/slickgrid-universal/issues/1670) - by @ghiscoding + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package slickgrid-universal-vite-demo diff --git a/examples/vite-demo-vanilla-bundle/package.json b/examples/vite-demo-vanilla-bundle/package.json index 8f19e50e1..6ed94c13c 100644 --- a/examples/vite-demo-vanilla-bundle/package.json +++ b/examples/vite-demo-vanilla-bundle/package.json @@ -1,7 +1,7 @@ { "name": "slickgrid-universal-vite-demo", "private": true, - "version": "5.6.1", + "version": "5.7.0", "scripts": { "build": "tsc && vite build", "preview": "vite preview", diff --git a/lerna.json b/lerna.json index 98710319a..33b5ea72e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "5.6.1", + "version": "5.7.0", "npmClient": "pnpm", "loglevel": "info", "command": { diff --git a/packages/binding/CHANGELOG.md b/packages/binding/CHANGELOG.md index d86f85958..149033907 100644 --- a/packages/binding/CHANGELOG.md +++ b/packages/binding/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/binding + ## [5.5.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.5.0...v5.5.1) (2024-08-17) **Note:** Version bump only for package @slickgrid-universal/binding diff --git a/packages/binding/package.json b/packages/binding/package.json index 09e59bad4..4f16e3859 100644 --- a/packages/binding/package.json +++ b/packages/binding/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/binding", - "version": "5.5.1", + "version": "5.7.0", "description": "Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 2001aec3d..2ca6ae8e8 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Features + +* add warning if necessary rows aren't added ([6471248](https://github.com/ghiscoding/slickgrid-universal/commit/6471248fa3cb70c93a938eb878c34232561d55ff)) - by @zewa666 +* matching border color for range selector in darkmode ([aec04ed](https://github.com/ghiscoding/slickgrid-universal/commit/aec04ed1e5fa286552c4c60b4f09ce8d3ba65f36)) - by @zewa666 +* switch darkmode inside init ([908e7aa](https://github.com/ghiscoding/slickgrid-universal/commit/908e7aa77dd1cfbd049238052a4e9d7e2a04828a)) - by @zewa666 + +### Bug Fixes + +* **core:** Autocomplete Editor shouldn't navigate down twice on enter ([4f9eb36](https://github.com/ghiscoding/slickgrid-universal/commit/4f9eb369793ef62794d032f6eb69cd32e38ea747)) - by @ghiscoding +* do not create empty object rows, use newRowCreator instead ([a170560](https://github.com/ghiscoding/slickgrid-universal/commit/a170560a2543b57ad8b975ca8fbfe9d005c49e61)) - by @zewa666 +* **Eslint:** Fix eslint errors ([a842223](https://github.com/ghiscoding/slickgrid-universal/commit/a842223b5111b95a031b53baafcee397ba0186d5)) - by @ +* **styling:** add missing `!default` to a few SASS variables ([6779947](https://github.com/ghiscoding/slickgrid-universal/commit/6779947c18759609c4fa9977cd88d79d9058f126)) - by @ghiscoding-SE +* **TreeData:** identifier is not always "id' when unflattening ([78653f9](https://github.com/ghiscoding/slickgrid-universal/commit/78653f9ff2807a53b0622e35b86ad35bd53e345f)) - by @ghiscoding-SE +* **TreeData:** Reset the childrens prop when unflattening dataset in case it is being reused ([cf70729](https://github.com/ghiscoding/slickgrid-universal/commit/cf70729b62318a3b6997b20b3ae692266d075df1)) - by @ + +### Performance Improvements + +* use Set to improve perf when read current values ([56dfe92](https://github.com/ghiscoding/slickgrid-universal/commit/56dfe927cae76d7a109659a506b213109d3c11ff)), closes [#1670](https://github.com/ghiscoding/slickgrid-universal/issues/1670) - by @ghiscoding + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) ### Bug Fixes diff --git a/packages/common/package.json b/packages/common/package.json index 6b9bb4230..41a6814ec 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/common", - "version": "5.6.1", + "version": "5.7.0", "description": "SlickGrid-Universal Common Code", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/composite-editor-component/CHANGELOG.md b/packages/composite-editor-component/CHANGELOG.md index a1e9be7f3..4cfd6bd23 100644 --- a/packages/composite-editor-component/CHANGELOG.md +++ b/packages/composite-editor-component/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Bug Fixes + +* composite editor wrong selector ([77b89c6](https://github.com/ghiscoding/slickgrid-universal/commit/77b89c685110a74a051c7aab054700763a209342)) - by @zewa666 + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/composite-editor-component diff --git a/packages/composite-editor-component/package.json b/packages/composite-editor-component/package.json index 3f28447a8..6d93ac0d7 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": "5.6.1", + "version": "5.7.0", "description": "Slick Composite Editor Component - Vanilla Implementation of a Composite Editor Modal Window Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/custom-footer-component/CHANGELOG.md b/packages/custom-footer-component/CHANGELOG.md index 623bb304b..483ae2b32 100644 --- a/packages/custom-footer-component/CHANGELOG.md +++ b/packages/custom-footer-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/custom-footer-component + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/custom-footer-component diff --git a/packages/custom-footer-component/package.json b/packages/custom-footer-component/package.json index dd9b06b7d..f0774eb38 100644 --- a/packages/custom-footer-component/package.json +++ b/packages/custom-footer-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/custom-footer-component", - "version": "5.6.1", + "version": "5.7.0", "description": "Slick Custom Footer Component - Vanilla Implementation of a Custom Footer Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/custom-tooltip-plugin/CHANGELOG.md b/packages/custom-tooltip-plugin/CHANGELOG.md index 1f3bf54fd..df75867f3 100644 --- a/packages/custom-tooltip-plugin/CHANGELOG.md +++ b/packages/custom-tooltip-plugin/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/custom-tooltip-plugin + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/custom-tooltip-plugin diff --git a/packages/custom-tooltip-plugin/package.json b/packages/custom-tooltip-plugin/package.json index ea94ed54c..728d75ad4 100644 --- a/packages/custom-tooltip-plugin/package.json +++ b/packages/custom-tooltip-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/custom-tooltip-plugin", - "version": "5.6.1", + "version": "5.7.0", "description": "A plugin to add Custom Tooltip when hovering a cell, it subscribes to the cell", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/empty-warning-component/CHANGELOG.md b/packages/empty-warning-component/CHANGELOG.md index 587c5e245..b328508fb 100644 --- a/packages/empty-warning-component/CHANGELOG.md +++ b/packages/empty-warning-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/empty-warning-component + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/empty-warning-component diff --git a/packages/empty-warning-component/package.json b/packages/empty-warning-component/package.json index 378526ab3..ed67edd05 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": "5.6.1", + "version": "5.7.0", "description": "Slick Empty Warning Component - Vanilla Implementation of an Empty Dataset Warning Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/event-pub-sub/CHANGELOG.md b/packages/event-pub-sub/CHANGELOG.md index acf4c7389..efe606bfc 100644 --- a/packages/event-pub-sub/CHANGELOG.md +++ b/packages/event-pub-sub/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/event-pub-sub + ## [5.5.2](https://github.com/ghiscoding/slickgrid-universal/compare/v5.5.1...v5.5.2) (2024-08-17) ### Bug Fixes diff --git a/packages/event-pub-sub/package.json b/packages/event-pub-sub/package.json index 3ba219d0d..48a286ec7 100644 --- a/packages/event-pub-sub/package.json +++ b/packages/event-pub-sub/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/event-pub-sub", - "version": "5.5.2", + "version": "5.7.0", "description": "Simple Vanilla Implementation of an Event PubSub Service to do simply publish/subscribe inter-communication while optionally providing data in the event", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/excel-export/CHANGELOG.md b/packages/excel-export/CHANGELOG.md index 35e7ae6af..3c3c70217 100644 --- a/packages/excel-export/CHANGELOG.md +++ b/packages/excel-export/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/excel-export + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) ### Bug Fixes diff --git a/packages/excel-export/package.json b/packages/excel-export/package.json index 35e86d7a3..995a01615 100644 --- a/packages/excel-export/package.json +++ b/packages/excel-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/excel-export", - "version": "5.6.1", + "version": "5.7.0", "description": "Excel Export (xls/xlsx) Service.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index 06eb926d2..d1cf27b2f 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/graphql + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/graphql diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 758095f7d..8f8637464 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/graphql", - "version": "5.6.1", + "version": "5.7.0", "description": "GraphQL Service to sync a grid with a GraphQL backend server", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/odata/CHANGELOG.md b/packages/odata/CHANGELOG.md index e7524703d..a1bed0a8b 100644 --- a/packages/odata/CHANGELOG.md +++ b/packages/odata/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/odata + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/odata diff --git a/packages/odata/package.json b/packages/odata/package.json index b5bc3a477..4a4da0ac1 100644 --- a/packages/odata/package.json +++ b/packages/odata/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/odata", - "version": "5.6.1", + "version": "5.7.0", "description": "Grid OData Service to sync a grid with an OData backend server", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/pagination-component/CHANGELOG.md b/packages/pagination-component/CHANGELOG.md index c225b5c04..928eaeb86 100644 --- a/packages/pagination-component/CHANGELOG.md +++ b/packages/pagination-component/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/pagination-component + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/pagination-component diff --git a/packages/pagination-component/package.json b/packages/pagination-component/package.json index 7d07b851a..24791598a 100644 --- a/packages/pagination-component/package.json +++ b/packages/pagination-component/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/pagination-component", - "version": "5.6.1", + "version": "5.7.0", "description": "Slick Pagination Component - Vanilla Implementation of a Pagination Component", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/row-detail-view-plugin/CHANGELOG.md b/packages/row-detail-view-plugin/CHANGELOG.md index 39dc12fe9..c5cced83e 100644 --- a/packages/row-detail-view-plugin/CHANGELOG.md +++ b/packages/row-detail-view-plugin/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Performance Improvements + +* **RowDetail:** use Set to improve perf with Row Detail ([5abfd41](https://github.com/ghiscoding/slickgrid-universal/commit/5abfd41cf54ddad6f2298a803e1603a27dd1d189)) - by @ghiscoding + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/row-detail-view-plugin diff --git a/packages/row-detail-view-plugin/package.json b/packages/row-detail-view-plugin/package.json index e9f513069..c67acffbb 100644 --- a/packages/row-detail-view-plugin/package.json +++ b/packages/row-detail-view-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/row-detail-view-plugin", - "version": "5.6.1", + "version": "5.7.0", "description": "SlickRowDetail plugin - A plugin to add Row Detail Panel", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/rxjs-observable/CHANGELOG.md b/packages/rxjs-observable/CHANGELOG.md index c93c681a6..45ac4ab8d 100644 --- a/packages/rxjs-observable/CHANGELOG.md +++ b/packages/rxjs-observable/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/rxjs-observable + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/rxjs-observable diff --git a/packages/rxjs-observable/package.json b/packages/rxjs-observable/package.json index 6dab769f4..bf3582491 100644 --- a/packages/rxjs-observable/package.json +++ b/packages/rxjs-observable/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/rxjs-observable", - "version": "5.6.1", + "version": "5.7.0", "description": "RxJS Observable Wrapper", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/text-export/CHANGELOG.md b/packages/text-export/CHANGELOG.md index 85fafb3fe..473bf9cb4 100644 --- a/packages/text-export/CHANGELOG.md +++ b/packages/text-export/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/text-export + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/text-export diff --git a/packages/text-export/package.json b/packages/text-export/package.json index 5857f34d4..992126494 100644 --- a/packages/text-export/package.json +++ b/packages/text-export/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/text-export", - "version": "5.6.1", + "version": "5.7.0", "description": "Export to Text File (csv/txt) Service.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index d5c643f11..f99afe207 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Bug Fixes + +* **Eslint:** Fix eslint errors ([a842223](https://github.com/ghiscoding/slickgrid-universal/commit/a842223b5111b95a031b53baafcee397ba0186d5)) - by @ + ## [5.5.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.5.0...v5.5.1) (2024-08-17) **Note:** Version bump only for package @slickgrid-universal/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index 503f2d8fc..160ae422b 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/utils", - "version": "5.5.1", + "version": "5.7.0", "description": "Common set of small utilities", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/vanilla-bundle/CHANGELOG.md b/packages/vanilla-bundle/CHANGELOG.md index 58e4a374b..c76a335d5 100644 --- a/packages/vanilla-bundle/CHANGELOG.md +++ b/packages/vanilla-bundle/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +### Performance Improvements + +* don't invalidate grid rows more than once, fixes [#1678](https://github.com/ghiscoding/slickgrid-universal/issues/1678) ([a5b9647](https://github.com/ghiscoding/slickgrid-universal/commit/a5b964748ac4f33aca222c03ccce9e3699320cb1)) - by @ghiscoding + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/vanilla-bundle diff --git a/packages/vanilla-bundle/package.json b/packages/vanilla-bundle/package.json index 665ed06fd..d1a032f19 100644 --- a/packages/vanilla-bundle/package.json +++ b/packages/vanilla-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-bundle", - "version": "5.6.1", + "version": "5.7.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 Vite to bundle everything into a single JS file.", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", diff --git a/packages/vanilla-force-bundle/CHANGELOG.md b/packages/vanilla-force-bundle/CHANGELOG.md index e306bfbc7..add9be638 100644 --- a/packages/vanilla-force-bundle/CHANGELOG.md +++ b/packages/vanilla-force-bundle/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.7.0](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.1...v5.7.0) (2024-09-14) + +**Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle + ## [5.6.1](https://github.com/ghiscoding/slickgrid-universal/compare/v5.6.0...v5.6.1) (2024-08-31) **Note:** Version bump only for package @slickgrid-universal/vanilla-force-bundle diff --git a/packages/vanilla-force-bundle/package.json b/packages/vanilla-force-bundle/package.json index 9993bdbb3..d52cbb7bc 100644 --- a/packages/vanilla-force-bundle/package.json +++ b/packages/vanilla-force-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@slickgrid-universal/vanilla-force-bundle", - "version": "5.6.1", + "version": "5.7.0", "description": "Vanilla Slick Grid Bundle (mostly exist for our Salesforce implementation) - Similar to Vanilla Bundle, the only difference is that it adds extra packages within its bundle (CustomTooltip, CompositeEditor & TextExport)", "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts",