Skip to content

Commit

Permalink
release-v2.14.0 (#3805)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer authored Jul 4, 2024
1 parent 009e461 commit 2fa9970
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 18 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
-->


## [v2.14.0] (2024-07-03)

#### :rocket: Added
* [#3787](https://github.com/SAP/luigi/pull/3787) Add support for Nightwatch, WebdriverIO and Puppeteer for testing-utilities ([@walmazacn](https://github.com/walmazacn))
* [#3780](https://github.com/SAP/luigi/pull/3780) Get current route ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#3774](https://github.com/SAP/luigi/pull/3774) Add getCurrentTheme wc clientAPI ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#3748](https://github.com/SAP/luigi/pull/3748) Fiddle theming example ([@JohannesDoberer](https://github.com/JohannesDoberer))

#### :bug: Fixed
* [#3727](https://github.com/SAP/luigi/pull/3727) Fix top nav children not rendered ([@JohannesDoberer](https://github.com/JohannesDoberer))




## [v2.13.0] (2024-05-23)

#### :rocket: Added
Expand Down Expand Up @@ -1797,4 +1811,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v2.10.0]: https://github.com/SAP/luigi/compare/v2.9.0...v2.10.0
[v2.11.0]: https://github.com/SAP/luigi/compare/v2.10.0...v2.11.0
[v2.12.0]: https://github.com/SAP/luigi/compare/v2.11.0...v2.12.0
[v2.13.0]: https://github.com/SAP/luigi/compare/v2.12.0...v2.13.0
[v2.13.0]: https://github.com/SAP/luigi/compare/v2.12.0...v2.13.0
[v2.14.0]: https://github.com/SAP/luigi/compare/v2.13.0...v2.14.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.13.0"
"version": "2.14.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"microfrontends",
"testing"
],
"version": "2.13.0",
"version": "2.14.0",
"engines": {
"node": ">=18"
}
Expand Down
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.

4 changes: 2 additions & 2 deletions client-frameworks-support/testing-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"microfrontends",
"testing"
],
"version": "2.13.0",
"version": "2.14.0",
"engines": {
"node": ">=18"
}
}
}
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.13.0"
"version": "2.14.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.13.0"
"version": "2.14.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.13.0"
"version": "2.14.0"
}
4 changes: 2 additions & 2 deletions core/src/core-api/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class LuigiNavigationManager {
* Enables navigating to sibling nodes without knowing the absolute path.
* @memberof LuigiNavigation
* @returns {linkManager} link manager instance
* @since NEXTRELEASE
* @since 2.14.0
* @example
* Luigi.navigation().fromParent().navigate('/sibling')
*/
Expand All @@ -158,7 +158,7 @@ class LuigiNavigationManager {
* Gets the Luigi route associated with the current micro frontend.
* @memberof LuigiNavigation
* @returns a String value specifying the current Luigi route
* @since NEXTRELEASE
* @since 2.14.0
* @example
* Luigi.navigation().getCurrentRoute();
* Luigi.navigation().fromContext('project').getCurrentRoute();
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 @@ -181,7 +181,7 @@ class LuigiUX {
* Returns the current active theme. Falls back to **defaultTheme** if one wasn't explicitly specified before.
* @memberof UX
* @returns {string} theme id
* @since NEXTRELEASE
* @since 2.14.0
* @example
* Luigi.ux().getCurrentTheme()
*/
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 @@ -716,7 +716,7 @@ Returns **linkManager** link manager instance

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.14.0

#### getCurrentRoute

Expand All @@ -734,7 +734,7 @@ Returns **any** a String value specifying the current Luigi route

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.14.0

#### withParams

Expand Down Expand Up @@ -1114,7 +1114,7 @@ Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.14.0

## 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
Expand Up @@ -16,5 +16,5 @@
"oauth2",
"provider"
],
"version": "2.13.0"
"version": "2.14.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.13.0"
"version": "2.14.0"
}

0 comments on commit 2fa9970

Please sign in to comment.