Skip to content

Commit

Permalink
Release v1.7.1 (SAP#1793)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer authored Dec 23, 2020
1 parent 65cd133 commit 7478bb1
Show file tree
Hide file tree
Showing 15 changed files with 37 additions and 20 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,22 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## [v1.7.1] (2020-12-23) :christmas_tree: :santa: :gift:

#### :rocket: Added
* [#1761](https://github.com/SAP/luigi/pull/1761) multi-level keepSelectedForChildren ([@hardl](https://github.com/hardl))
* [#1753](https://github.com/SAP/luigi/pull/1753) Global search enhancements ([@legteodav](https://github.com/legteodav))

#### :bug: Fixed
* [#1765](https://github.com/SAP/luigi/pull/1765) Fix drawer undefined bug ([@ndricimrr](https://github.com/ndricimrr))
* [#1784](https://github.com/SAP/luigi/pull/1784) Browser history fix ([@hardl](https://github.com/hardl))







## v1.7.0 (2020-12-04)

#### :rocket: Added
Expand Down Expand Up @@ -910,4 +926,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v1.4.0]: https://github.com/SAP/luigi/compare/v1.3.1...v1.4.0
[v1.5.0]: https://github.com/SAP/luigi/compare/v1.4.0...v1.5.0
[v1.6.0]: https://github.com/SAP/luigi/compare/v1.5.0...v1.6.0
[v1.7.0]: https://github.com/SAP/luigi/compare/v1.6.0...v1.7.0
[v1.7.0]: https://github.com/SAP/luigi/compare/v1.6.0...v1.7.0
[v1.7.1]: https://github.com/SAP/luigi/compare/v1.7.0...v1.7.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client-support-angular",
"version": "1.7.0",
"version": "1.7.1",
"peerDependencies": {
"@angular/common": "^11.0.0",
"@angular/core": "^11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion client/luigi-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ export type storageManager = () => StorageManager;
/**
* Returns the current user settings.
* @returns {Object} current user settings
* @since NEXTRELEASE
* @since 1.7.1
* @memberof Lifecycle
*/
export function getUserSettings(): UserSettings;
Expand Down
2 changes: 1 addition & 1 deletion client/public-ie11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client-ie11",
"version": "1.7.0",
"version": "1.7.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client-ie11.js",
Expand Down
2 changes: 1 addition & 1 deletion client/public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/client",
"version": "1.7.0",
"version": "1.7.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi-client.js",
Expand Down
2 changes: 1 addition & 1 deletion client/src/lifecycleManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class LifecycleManager extends LuigiClientBase {
/**
* Returns the current user settings based on the selected node.
* @returns {Object} current user settings
* @since NEXTRELEASE
* @since 1.7.1
* @memberof Lifecycle
* @example
* const userSettings = LuigiClient.getUserSettings()
Expand Down
2 changes: 1 addition & 1 deletion core/public-ie11/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/core-ie11",
"version": "1.7.0",
"version": "1.7.1",
"description": "Javascript library supporting consumers of the Luigi framework with Internet Explorer 11 capability",
"license": "Apache-2.0",
"main": "luigi-ie11.js",
Expand Down
2 changes: 1 addition & 1 deletion core/public/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/core",
"version": "1.7.0",
"version": "1.7.1",
"description": "Javascript library supporting consumers of the Luigi framework",
"license": "Apache-2.0",
"main": "luigi.js",
Expand Down
4 changes: 2 additions & 2 deletions core/src/core-api/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class LuigiConfig {
* @memberof Configuration
* @example
* Luigi.readUserSettings();
* @since NEXTRELEASE
* @since 1.7.1
*/
async readUserSettings() {
const userSettings = await this.getConfigValueAsync(
Expand All @@ -267,7 +267,7 @@ class LuigiConfig {
* @param {Object} previousUserSettingsObj the previous object from storage.
* @example
* Luigi.storeUserSettings(userSettingsobject, previousUserSettingsObj);
* @since NEXTRELEASE
* @since 1.7.1
*/
async storeUserSettings(userSettingsObj, previousUserSettingsObj) {
const userSettings = await this.getConfigValueAsync('settings.userSettings');
Expand Down
2 changes: 1 addition & 1 deletion core/src/core-api/globalsearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class LuigiGlobalSearch {
* Sets the value of the Placeholder search input field.
* @memberof GlobalSearch
* @param searchString search value
* @since NEXTRELEASE
* @since 1.7.1
* @example Luigi.globalSearch().setSearchInputPlaceholder('HERE input Placeholder');
*/
setSearchInputPlaceholder(searchString) {
Expand Down
4 changes: 2 additions & 2 deletions core/src/core-api/ux.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class LuigiUX {
/**
* Open user settings dialog
* @memberof UX
* @since NEXTRELEASE
* @since 1.7.1
*/
openUserSettings() {
Luigi.openUserSettings();
Expand All @@ -150,7 +150,7 @@ class LuigiUX {
/**
* Close user settings dialog
* @memberof UX
* @since NEXTRELEASE
* @since 1.7.1
*/
closeUserSettings() {
Luigi.closeUserSettings();
Expand Down
2 changes: 1 addition & 1 deletion docs/luigi-client-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Returns **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.7.1

### Lifecycle~initListenerCallback

Expand Down
8 changes: 4 additions & 4 deletions docs/luigi-core-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Luigi.readUserSettings();

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.7.1

#### storeUserSettings

Expand All @@ -207,7 +207,7 @@ Luigi.storeUserSettings(userSettingsobject, previousUserSettingsObj);

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.7.1

## Luigi.elements()

Expand Down Expand Up @@ -951,15 +951,15 @@ Open user settings dialog

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.7.1

#### closeUserSettings

Close user settings dialog

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.7.1

## Luigi.globalSearch()

Expand Down
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oauth2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/plugin-auth-oauth2",
"version": "1.7.0",
"version": "1.7.1",
"description": "OAuth2 implicit grant provider plugin for @luigi-project/core",
"license": "Apache-2.0",
"main": "plugin.js",
Expand Down
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oidc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luigi-project/plugin-auth-oidc",
"version": "1.7.0",
"version": "1.7.1",
"description": "OpenID Connect provider plugin for @luigi-project/core",
"license": "Apache-2.0",
"main": "plugin.js",
Expand Down

0 comments on commit 7478bb1

Please sign in to comment.