Skip to content

Commit

Permalink
Release v2.5.0 (#3421)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer authored Aug 31, 2023
1 parent c66339b commit 5c42488
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 14 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## [v2.5.0] (2023-08-31)

#### :rocket: Added
* [#3405](https://github.com/SAP/luigi/pull/3405) Return empty object for getContext ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#3416](https://github.com/SAP/luigi/pull/3416) Global context ([@hardl](https://github.com/hardl))

#### :bug: Fixed
* [#3409](https://github.com/SAP/luigi/pull/3409) Statusbadge for horizontal nav ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#3406](https://github.com/SAP/luigi/pull/3406) Fix go back context multiple modals ([@ndricimrr](https://github.com/ndricimrr))




## [v2.4.0] (2023-08-23)

#### :rocket: Added
Expand Down Expand Up @@ -1576,4 +1589,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v2.2.0]: https://github.com/SAP/luigi/compare/v2.1.0...v2.2.0
[v2.2.1]: https://github.com/SAP/luigi/compare/v2.2.0...v2.2.1
[v2.3.0]: https://github.com/SAP/luigi/compare/v2.2.1...v2.3.0
[v2.4.0]: https://github.com/SAP/luigi/compare/v2.3.0...v2.4.0
[v2.4.0]: https://github.com/SAP/luigi/compare/v2.3.0...v2.4.0
[v2.5.0]: https://github.com/SAP/luigi/compare/v2.4.0...v2.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"@luigi-project/client": "^2.0.0",
"@luigi-project/testing-utilities": "^2.0.0"
},
"version": "2.4.0"
"version": "2.5.0"
}
4 changes: 2 additions & 2 deletions client-frameworks-support/testing-utilities/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client-frameworks-support/testing-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"microfrontends",
"testing"
],
"version": "2.4.0",
"version": "2.5.0",
"engines": {
"node": ">=18"
}
Expand Down
2 changes: 1 addition & 1 deletion client/public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"micro-frontends",
"microfrontends"
],
"version": "2.4.0"
"version": "2.5.0"
}
2 changes: 1 addition & 1 deletion core/public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"micro-frontends",
"microfrontends"
],
"version": "2.4.0"
"version": "2.5.0"
}
2 changes: 1 addition & 1 deletion core/public_root/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"micro-frontends",
"microfrontends"
],
"version": "2.4.0"
"version": "2.5.0"
}
4 changes: 2 additions & 2 deletions core/src/core-api/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ class LuigiConfig {
* @memberof Configuration
* @param {Object} ctx The context object to set
* @param {boolean} preventUpdate If true, no view update is triggered. Default is false.
* @since NEXTRELEASE
* @since 2.5.0
*/
setGlobalContext(ctx, preventUpdate) {
if (this.config && this.config.navigation) {
Expand All @@ -326,7 +326,7 @@ class LuigiConfig {
/**
* Get the global context object.
* @memberof Configuration
* @since NEXTRELEASE
* @since 2.5.0
*/
getGlobalContext() {
return this.config?.navigation?.globalContext || {};
Expand Down
4 changes: 2 additions & 2 deletions docs/luigi-core-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,15 +254,15 @@ Set the global context object and triggers the corresponding update.

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.5.0

#### getGlobalContext

Get the global context object.

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.5.0

## Luigi.elements()

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
Expand Up @@ -16,5 +16,5 @@
"oauth2",
"provider"
],
"version": "2.4.0"
"version": "2.5.0"
}
2 changes: 1 addition & 1 deletion plugins/auth/public/auth-oidc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"openid connect",
"provider"
],
"version": "2.4.0"
"version": "2.5.0"
}

0 comments on commit 5c42488

Please sign in to comment.