From 1e1e7e2ab03b1774d233c4291779c415aa426087 Mon Sep 17 00:00:00 2001 From: JohannesDoberer Date: Wed, 24 Mar 2021 17:16:25 +0100 Subject: [PATCH] release-v1.12.0 (#1947) --- CHANGELOG.md | 20 ++++++++++++++++++- .../client-support-angular/package.json | 4 ++-- client/luigi-client.d.ts | 4 ++-- client/public-ie11/package.json | 4 ++-- client/public/package.json | 4 ++-- client/src/lifecycleManager.js | 4 ++-- core/package.json | 2 +- core/public-ie11/package.json | 4 ++-- core/public/package.json | 4 ++-- plugins/auth/public/auth-oauth2/package.json | 4 ++-- plugins/auth/public/auth-oidc/package.json | 4 ++-- 11 files changed, 38 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1721ab2a5b..a1e960f89e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,23 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec --> +## [v1.12.0] (2021-03-24) + +#### :rocket: Added +* [#1841](https://github.com/SAP/luigi/pull/1841) Bookmarkable modals ([@maxmarkus](https://github.com/maxmarkus)) +* [#1935](https://github.com/SAP/luigi/pull/1935) Add warning if both virtualTree and children nodes are defined ([@ndricimrr](https://github.com/ndricimrr)) +* [#1894](https://github.com/SAP/luigi/pull/1894) Add more flexibility to control handshake ([@legteodav](https://github.com/legteodav)) + +#### :bug: Fixed +* [#1942](https://github.com/SAP/luigi/pull/1942) Fix 'disabled loadingIndicator' bug when opening in modal ([@ndricimrr](https://github.com/ndricimrr)) +* [#1916](https://github.com/SAP/luigi/pull/1916) Shell header improvements ([@JohannesDoberer](https://github.com/JohannesDoberer)) +* [#1912](https://github.com/SAP/luigi/pull/1912) Change color of active link ([@JohannesDoberer](https://github.com/JohannesDoberer)) + + + + + + ## [v1.11.0] (2021-03-01) #### :rocket: Added @@ -1000,4 +1017,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec [v1.8.1]: https://github.com/SAP/luigi/compare/v1.8.0...v1.8.1 [v1.9.0]: https://github.com/SAP/luigi/compare/v1.8.1...v1.9.0 [v1.10.0]: https://github.com/SAP/luigi/compare/v1.9.0...v1.10.0 -[v1.11.0]: https://github.com/SAP/luigi/compare/v1.10.0...v1.11.0 \ No newline at end of file +[v1.11.0]: https://github.com/SAP/luigi/compare/v1.10.0...v1.11.0 +[v1.12.0]: https://github.com/SAP/luigi/compare/v1.11.0...v1.12.0 \ No newline at end of file diff --git a/client-frameworks-support/client-support-angular/projects/client-support-angular/package.json b/client-frameworks-support/client-support-angular/projects/client-support-angular/package.json index b2a9dcd57b..658daa29c3 100644 --- a/client-frameworks-support/client-support-angular/projects/client-support-angular/package.json +++ b/client-frameworks-support/client-support-angular/projects/client-support-angular/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/client-support-angular", - "version": "1.11.0", + "version": "1.12.0", "peerDependencies": { "@angular/common": "^11.0.0", "@angular/core": "^11.0.0", @@ -15,4 +15,4 @@ "devDependencies": { "@luigi-project/client": "^1.5.0" } -} +} \ No newline at end of file diff --git a/client/luigi-client.d.ts b/client/luigi-client.d.ts index 607f13c3a0..da5a3caac0 100644 --- a/client/luigi-client.d.ts +++ b/client/luigi-client.d.ts @@ -685,7 +685,7 @@ export type getUserSettings = () => UserSettings; /** * Check if LuigiClient is initialized * @returns {boolean} client initialized state - * @since NEXTRELEASE + * @since 1.12.0 * @memberof Lifecycle */ export function isLuigiClientInitialized(): boolean; @@ -693,7 +693,7 @@ export type isLuigiClientInitialized = () => boolean; /** * Starts the handshake with Luigi Core and thereafter resulting in initialization of Luigi Client. It is always ran by default when importing luigi-client package in your micro frontend. Note that when using 'defer-luigi-init' to defer default initialization you will need to initialize the handshake using this function manually wherever needed. - * @since NEXTRELEASE + * @since 1.12.0 * @memberof Lifecycle */ export function luigiClientInit(): void; diff --git a/client/public-ie11/package.json b/client/public-ie11/package.json index 4b32158934..8011b9f7b1 100644 --- a/client/public-ie11/package.json +++ b/client/public-ie11/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/client-ie11", - "version": "1.11.0", + "version": "1.12.0", "description": "Javascript library supporting consumers of the Luigi framework", "license": "Apache-2.0", "main": "luigi-client-ie11.js", @@ -16,4 +16,4 @@ "UI", "extensibility" ] -} +} \ No newline at end of file diff --git a/client/public/package.json b/client/public/package.json index 75d985491b..a7f1a2b284 100644 --- a/client/public/package.json +++ b/client/public/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/client", - "version": "1.11.0", + "version": "1.12.0", "description": "Javascript library supporting consumers of the Luigi framework", "license": "Apache-2.0", "main": "luigi-client.js", @@ -18,4 +18,4 @@ "micro-frontends", "microfrontends" ] -} +} \ No newline at end of file diff --git a/client/src/lifecycleManager.js b/client/src/lifecycleManager.js index b419916384..8aa3e1d3a3 100644 --- a/client/src/lifecycleManager.js +++ b/client/src/lifecycleManager.js @@ -45,7 +45,7 @@ class LifecycleManager extends LuigiClientBase { /** * Check if LuigiClient is initialized * @returns {boolean} client initialized state - * @since NEXTRELEASE + * @since 1.12.0 * @memberof Lifecycle * @example * const init = LuigiClient.isLuigiClientInitialized() @@ -56,7 +56,7 @@ class LifecycleManager extends LuigiClientBase { /** * Starts the handshake with Luigi Core and thereafter resulting in initialization of Luigi Client. It is always ran by default when importing luigi-client package in your micro frontend. Note that when using 'defer-luigi-init' to defer default initialization you will need to initialize the handshake using this function manually wherever needed. - * @since NEXTRELEASE + * @since 1.12.0 * @memberof Lifecycle * @example * LuigiClient.luigiClientInit() diff --git a/core/package.json b/core/package.json index abfc0e03d4..b2eaa39a02 100644 --- a/core/package.json +++ b/core/package.json @@ -136,4 +136,4 @@ "type": "git", "url": "ssh://github.com/SAP/luigi.git" } -} \ No newline at end of file +} diff --git a/core/public-ie11/package.json b/core/public-ie11/package.json index c0ab34e8ca..2564e72322 100644 --- a/core/public-ie11/package.json +++ b/core/public-ie11/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/core-ie11", - "version": "1.11.0", + "version": "1.12.0", "description": "Javascript library supporting consumers of the Luigi framework with Internet Explorer 11 capability", "license": "Apache-2.0", "main": "luigi-ie11.js", @@ -19,4 +19,4 @@ "micro-frontends", "microfrontends" ] -} +} \ No newline at end of file diff --git a/core/public/package.json b/core/public/package.json index cb0e9856e2..5b5cbf213b 100644 --- a/core/public/package.json +++ b/core/public/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/core", - "version": "1.11.0", + "version": "1.12.0", "description": "Javascript library supporting consumers of the Luigi framework", "license": "Apache-2.0", "main": "luigi.js", @@ -19,4 +19,4 @@ "micro-frontends", "microfrontends" ] -} +} \ No newline at end of file diff --git a/plugins/auth/public/auth-oauth2/package.json b/plugins/auth/public/auth-oauth2/package.json index 04b01c6ad7..fa911b49cc 100644 --- a/plugins/auth/public/auth-oauth2/package.json +++ b/plugins/auth/public/auth-oauth2/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/plugin-auth-oauth2", - "version": "1.11.0", + "version": "1.12.0", "description": "OAuth2 implicit grant provider plugin for @luigi-project/core", "license": "Apache-2.0", "main": "plugin.js", @@ -17,4 +17,4 @@ "oauth2", "provider" ] -} +} \ No newline at end of file diff --git a/plugins/auth/public/auth-oidc/package.json b/plugins/auth/public/auth-oidc/package.json index 6c2ec18be0..371bb68854 100644 --- a/plugins/auth/public/auth-oidc/package.json +++ b/plugins/auth/public/auth-oidc/package.json @@ -1,6 +1,6 @@ { "name": "@luigi-project/plugin-auth-oidc", - "version": "1.11.0", + "version": "1.12.0", "description": "OpenID Connect provider plugin for @luigi-project/core", "license": "Apache-2.0", "main": "plugin.js", @@ -18,4 +18,4 @@ "openid connect", "provider" ] -} +} \ No newline at end of file