diff --git a/CHANGELOG.md b/CHANGELOG.md index b300011cbd0..a3c04e2881c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + + +### Bug Fixes + +* **core,platform:** provide translation for multi-combobox Invalid Entry message ([#12410](https://github.com/SAP/fundamental-ngx/issues/12410)) ([6284454](https://github.com/SAP/fundamental-ngx/commit/628445494097f4d8a214886a273dd6580a9b107f)) +* datetime adapter passing date format, not dateTime ([#12416](https://github.com/SAP/fundamental-ngx/issues/12416)) ([26fe869](https://github.com/SAP/fundamental-ngx/commit/26fe8692675173d98b09c6faf894c1ecf978a0af)) +* **platform:** vhd should reset search after closing dialog ([#12406](https://github.com/SAP/fundamental-ngx/issues/12406)) ([d419dac](https://github.com/SAP/fundamental-ngx/commit/d419dace29358fe1fefd4e80e65b4386adabe77d)) + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) diff --git a/lerna.json b/lerna.json index 13cc3be4de9..23bef1c9218 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "packages": ["libs/*/src/lib", "libs/*"], - "version": "0.43.43", + "version": "0.43.44", "conventionalCommits": true, "tagVersionPrefix": "v", "message": "chore(release): publish %v", diff --git a/libs/cdk/src/lib/CHANGELOG.md b/libs/cdk/src/lib/CHANGELOG.md index e3697e1e63b..01e92521aa4 100644 --- a/libs/cdk/src/lib/CHANGELOG.md +++ b/libs/cdk/src/lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/cdk + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/cdk diff --git a/libs/cdk/src/lib/package.json b/libs/cdk/src/lib/package.json index ab93affa14c..8809f3ca084 100644 --- a/libs/cdk/src/lib/package.json +++ b/libs/cdk/src/lib/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/cdk", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "description": "Fundamental Library for Angular - CDK", "license": "Apache-2.0", diff --git a/libs/core/src/lib/CHANGELOG.md b/libs/core/src/lib/CHANGELOG.md index 7c8f0014d34..ff3fd3c6f32 100644 --- a/libs/core/src/lib/CHANGELOG.md +++ b/libs/core/src/lib/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + + +### Bug Fixes + +* **core,platform:** provide translation for multi-combobox Invalid Entry message ([#12410](https://github.com/SAP/fundamental-ngx/issues/12410)) ([6284454](https://github.com/SAP/fundamental-ngx/commit/628445494097f4d8a214886a273dd6580a9b107f)) +* datetime adapter passing date format, not dateTime ([#12416](https://github.com/SAP/fundamental-ngx/issues/12416)) ([26fe869](https://github.com/SAP/fundamental-ngx/commit/26fe8692675173d98b09c6faf894c1ecf978a0af)) + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) diff --git a/libs/core/src/lib/package.json b/libs/core/src/lib/package.json index 0504bc0744f..b224def97d1 100644 --- a/libs/core/src/lib/package.json +++ b/libs/core/src/lib/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/core", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "ng-update": { "migrations": "./schematics/migrations.json" diff --git a/libs/cx/src/lib/CHANGELOG.md b/libs/cx/src/lib/CHANGELOG.md index e74f6c8f18b..896b1026c0c 100644 --- a/libs/cx/src/lib/CHANGELOG.md +++ b/libs/cx/src/lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/cx + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/cx diff --git a/libs/cx/src/lib/package.json b/libs/cx/src/lib/package.json index c737ecdb991..a0b6a03f129 100644 --- a/libs/cx/src/lib/package.json +++ b/libs/cx/src/lib/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/cx", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "description": "Fundamental Library for Angular - cx", "license": "Apache-2.0", diff --git a/libs/datetime-adapter/CHANGELOG.md b/libs/datetime-adapter/CHANGELOG.md index 3be191c6d81..9e4b0982afb 100644 --- a/libs/datetime-adapter/CHANGELOG.md +++ b/libs/datetime-adapter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/datetime-adapter + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/datetime-adapter diff --git a/libs/datetime-adapter/package.json b/libs/datetime-adapter/package.json index 5368d4ad02d..3213add6963 100644 --- a/libs/datetime-adapter/package.json +++ b/libs/datetime-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/datetime-adapter", - "version": "0.43.43", + "version": "0.43.44", "description": "Datetime adapter for SAP Fundamentals, based on Day.js package", "license": "Apache-2.0", "homepage": "https://sap.github.io/fundamental-ngx/home", diff --git a/libs/fn/src/lib/CHANGELOG.md b/libs/fn/src/lib/CHANGELOG.md index 9e4d272c778..3eb42eaf9a2 100644 --- a/libs/fn/src/lib/CHANGELOG.md +++ b/libs/fn/src/lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/fn + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/fn diff --git a/libs/fn/src/lib/package.json b/libs/fn/src/lib/package.json index 6b4f757bde9..f755bc70279 100644 --- a/libs/fn/src/lib/package.json +++ b/libs/fn/src/lib/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/fn", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "description": "Fundamental Library for Angular - FN", "license": "Apache-2.0", diff --git a/libs/i18n/CHANGELOG.md b/libs/i18n/CHANGELOG.md index bbee3ecd0e5..cb7f26642e2 100644 --- a/libs/i18n/CHANGELOG.md +++ b/libs/i18n/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.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + + +### Bug Fixes + +* **core,platform:** provide translation for multi-combobox Invalid Entry message ([#12410](https://github.com/SAP/fundamental-ngx/issues/12410)) ([6284454](https://github.com/SAP/fundamental-ngx/commit/628445494097f4d8a214886a273dd6580a9b107f)) + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/i18n diff --git a/libs/i18n/package.json b/libs/i18n/package.json index 5056acc41ab..458267b9114 100644 --- a/libs/i18n/package.json +++ b/libs/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/i18n", - "version": "0.43.43", + "version": "0.43.44", "peerDependencies": { "@angular/common": "ANGULAR_VER_PLACEHOLDER", "@angular/core": "ANGULAR_VER_PLACEHOLDER", diff --git a/libs/moment-adapter/CHANGELOG.md b/libs/moment-adapter/CHANGELOG.md index 857277d4729..7c3c753e58c 100644 --- a/libs/moment-adapter/CHANGELOG.md +++ b/libs/moment-adapter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/moment-adapter + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/moment-adapter diff --git a/libs/moment-adapter/package-lock.json b/libs/moment-adapter/package-lock.json index f84bf882e89..742dfaeaa72 100644 --- a/libs/moment-adapter/package-lock.json +++ b/libs/moment-adapter/package-lock.json @@ -1,5 +1,5 @@ { "name": "@fundamental-ngx/moment-adapter", - "version": "0.43.43", + "version": "0.43.44", "lockfileVersion": 1 } diff --git a/libs/moment-adapter/package.json b/libs/moment-adapter/package.json index 4b640541d22..32fd093c9d7 100644 --- a/libs/moment-adapter/package.json +++ b/libs/moment-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/moment-adapter", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "description": "Datetime adapter for SAP Fundamentals, based on Moment.js package", "license": "Apache-2.0", diff --git a/libs/nx-plugin/CHANGELOG.md b/libs/nx-plugin/CHANGELOG.md index f6c2b037d42..879dc8fc00d 100644 --- a/libs/nx-plugin/CHANGELOG.md +++ b/libs/nx-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + +**Note:** Version bump only for package @fundamental-ngx/nx-plugin + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) **Note:** Version bump only for package @fundamental-ngx/nx-plugin diff --git a/libs/nx-plugin/package.json b/libs/nx-plugin/package.json index a02672d91d7..e06969bc876 100644 --- a/libs/nx-plugin/package.json +++ b/libs/nx-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/nx-plugin", - "version": "0.43.43", + "version": "0.43.44", "main": "src/index.js", "generators": "./generators.json", "executors": "./executors.json" diff --git a/libs/platform/src/lib/CHANGELOG.md b/libs/platform/src/lib/CHANGELOG.md index 6c3d6949f11..a2a0ef3d175 100644 --- a/libs/platform/src/lib/CHANGELOG.md +++ b/libs/platform/src/lib/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.43.44](https://github.com/SAP/fundamental-ngx/compare/v0.43.43...v0.43.44) (2024-09-20) + + +### Bug Fixes + +* **core,platform:** provide translation for multi-combobox Invalid Entry message ([#12410](https://github.com/SAP/fundamental-ngx/issues/12410)) ([6284454](https://github.com/SAP/fundamental-ngx/commit/628445494097f4d8a214886a273dd6580a9b107f)) +* **platform:** vhd should reset search after closing dialog ([#12406](https://github.com/SAP/fundamental-ngx/issues/12406)) ([d419dac](https://github.com/SAP/fundamental-ngx/commit/d419dace29358fe1fefd4e80e65b4386adabe77d)) + + + + + ## [0.43.43](https://github.com/SAP/fundamental-ngx/compare/v0.43.42...v0.43.43) (2024-09-10) diff --git a/libs/platform/src/lib/package.json b/libs/platform/src/lib/package.json index 55d97c3d770..a9242f77048 100644 --- a/libs/platform/src/lib/package.json +++ b/libs/platform/src/lib/package.json @@ -1,6 +1,6 @@ { "name": "@fundamental-ngx/platform", - "version": "0.43.43", + "version": "0.43.44", "schematics": "./schematics/collection.json", "description": "Fundamental Library for Angular - platform", "license": "Apache-2.0",