Skip to content

Commit

Permalink
Release 1.5.0 (#1677)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndricimrr authored Oct 28, 2020
1 parent 56c4568 commit 2a2469a
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 16 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,31 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## [v1.5.0] (2020-10-28)

#### :rocket: Added
* [#1634](https://github.com/SAP/luigi/pull/1634) Implement intent based navigation ([@ndricimrr](https://github.com/ndricimrr))
* [#1652](https://github.com/SAP/luigi/pull/1652) Expose login method in core api([@ionutcirja](https://github.com/ionutcirja))
* [#1631](https://github.com/SAP/luigi/pull/1631) Updating Auth API to allow dynamic logout ([@dangrima90](https://github.com/dangrima90))
* [#1623](https://github.com/SAP/luigi/pull/1623) Add accordion effect to categories ([@azriel46d](https://github.com/azriel46d))
* [#1620](https://github.com/SAP/luigi/pull/1620) Add disableInputHelpers for globalsearch ([@maxmarkus](https://github.com/maxmarkus))
* [#1665](https://github.com/SAP/luigi/pull/1665) Enable collapsed left side navigation via Core API ([@UlianaMunich](https://github.com/UlianaMunich))


#### :bug: Fixed
* [#1665](https://github.com/SAP/luigi/pull/1665) Fix bug in nav collapsed state ([@UlianaMunich](https://github.com/UlianaMunich))
* [#1671](https://github.com/SAP/luigi/pull/1671) Fix bug IE11 domain check ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#1675](https://github.com/SAP/luigi/pull/1675) Prevent to open a second splitview from LuigiClient ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#1641](https://github.com/SAP/luigi/pull/1641) Close splitview after navigation ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#1633](https://github.com/SAP/luigi/pull/1633) Fix issues with broken left side nav in semiCollapsed mode and scroller ([@UlianaMunich](https://github.com/UlianaMunich))
* [#1640](https://github.com/SAP/luigi/pull/1640) Fixed nav hrefs for hash routing ([@hardl](https://github.com/hardl))
* [#1624](https://github.com/SAP/luigi/pull/1624) Fix modal content not displaying issue in Safari ([@stanleychh](https://github.com/stanleychh))






## [v1.4.0] (2020-09-09)

#### :rocket: Added
Expand Down Expand Up @@ -848,4 +873,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v1.3.0]: https://github.com/SAP/luigi/compare/v1.2.4...v1.3.0

[v1.3.1]: https://github.com/SAP/luigi/compare/v1.3.0...v1.3.1
[v1.4.0]: https://github.com/SAP/luigi/compare/v1.3.1...v1.4.0
[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
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12"
}
}
}
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.4.0",
"version": "1.5.0",
"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.4.0",
"version": "1.5.0",
"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 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.4.0",
"version": "1.5.0",
"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.4.0",
"version": "1.5.0",
"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/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class LuigiAuth {
* Login the user dynamically.
* This will run the same functionality as though the user clicked the login button.
* @memberof Authorization
* @since NEXTRELEASE
* @since 1.5.0
* @example
* Luigi.auth().login();
*/
Expand All @@ -42,7 +42,7 @@ class LuigiAuth {
* Logout the user dynamically.
* This will run the same functionality as though the user clicked the logout button.
* @memberof Authorization
* @since NEXTRELEASE
* @since 1.5.0
* @example
* Luigi.auth().logout();
*/
Expand Down
2 changes: 1 addition & 1 deletion core/src/core-api/ux.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class LuigiUX {
* Set the collapsed state of the left side navigation
* @memberof UX
* @param {boolean} state
* @since NEXTRELEASE
* @since 1.5.0
*/
collapseLeftSideNav(state) {
SemiCollapsibleNavigation.setCollapsed(state);
Expand Down
6 changes: 3 additions & 3 deletions docs/luigi-core-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ Luigi.auth().login();

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.5.0

#### logout

Expand All @@ -326,7 +326,7 @@ Luigi.auth().logout();

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.5.0

### AuthorizationStore

Expand Down Expand Up @@ -879,7 +879,7 @@ Set the collapsed state of the left side navigation

**Meta**

- **since**: NEXTRELEASE
- **since**: 1.5.0

## Luigi.globalSearch()

Expand Down
2 changes: 1 addition & 1 deletion docs/navigation-parameters-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ The global search is an input field available in the top navigation bar. The sea
### disableInputHandlers
- **type**: boolean
- **description**: disables the on:keyUp and other internal handlers on the search input field. It is a plain input field then, which can be used to attach your own handlers. If set to `true`, a **searchProvider** must be defined in order to show the search field, which can contain your custom logic. It is recommended to initialize your custom logic in the [**lifeCycle.luigiAfterInit**](lifecycle-hooks.md#luigiafterinit) hook.
- **since**: NEXTRELEASE
- **since**: 1.5.0
### searchProvider
- **type**: Object
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.4.0",
"version": "1.5.0",
"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.4.0",
"version": "1.5.0",
"description": "OpenID Connect provider plugin for @luigi-project/core",
"license": "Apache-2.0",
"main": "plugin.js",
Expand Down
2 changes: 1 addition & 1 deletion plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}
}

0 comments on commit 2a2469a

Please sign in to comment.