Skip to content

Commit

Permalink
release-v2.2.0 (#3272)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesDoberer authored May 2, 2023
1 parent a860c84 commit f599093
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 16 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
-->


## [v2.2.0] (2023-05-02)

#### :rocket: Added
* [#3243](https://github.com/SAP/luigi/pull/3243) Viewgroup live settings ([@hardl](https://github.com/hardl))
* [#3253](https://github.com/SAP/luigi/pull/3253) tabnav header micro frontend ([@hardl](https://github.com/hardl))
* [#3226](https://github.com/SAP/luigi/pull/3226) Prevent rerendering of webcomponent ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#3240](https://github.com/SAP/luigi/pull/3240) Remove breadcrumbs from experimental flag([@JohannesDoberer](https://github.com/JohannesDoberer))

#### :bug: Fixed
* [#3241](https://github.com/SAP/luigi/pull/3241) Fix confirmation modal on reject result ([@ndricimrr](https://github.com/ndricimrr))
* [#3258](https://github.com/SAP/luigi/pull/3258) Fix external link same window ([@hardl](https://github.com/hardl))
* [#3257](https://github.com/SAP/luigi/pull/3257) Accordion element not showing correctly in breadcrumb docu ([@alexandra-simeonova](https://github.com/alexandra-simeonova))




## [v2.1.0] (2023-03-30)

#### :rocket: Added
Expand Down Expand Up @@ -1511,4 +1527,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v1.26.0]: https://github.com/SAP/luigi/compare/v1.25.1...v1.26.0
[v2.0.0]: https://github.com/SAP/luigi/compare/v1.25.1...v2.0.0
[v2.0.1]: https://github.com/SAP/luigi/compare/v2.0.0...v2.0.1
[v2.1.0]: https://github.com/SAP/luigi/compare/v2.0.1...v2.1.0
[v2.1.0]: https://github.com/SAP/luigi/compare/v2.0.1...v2.1.0
[v2.2.0]: https://github.com/SAP/luigi/compare/v2.1.0...v2.2.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.1.0"
"version": "2.2.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.1.0",
"version": "2.2.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.1.0"
"version": "2.2.0"
}
2 changes: 1 addition & 1 deletion client/src/lifecycleManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ class LifecycleManager extends LuigiClientBase {

/**
* This function allows you to change node labels within the same {@link navigation-advanced.md#view-groups view group}, e.g. in your node config: `label: 'my Node {viewGroupData.vg1}'`.
* @since NEXTRELEASE
* @since 2.2.0
* @param {Object} data a data object containing the view group name and desired label
* @memberof Lifecycle
* @example LuigiClient.setViewGroupData({'vg1':' Luigi rocks!'})
Expand Down
4 changes: 2 additions & 2 deletions 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.1.0"
}
"version": "2.2.0"
}
4 changes: 2 additions & 2 deletions 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.1.0"
}
"version": "2.2.0"
}
2 changes: 1 addition & 1 deletion docs/luigi-client-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ LuigiClient.setViewGroupData({'vg1':' Luigi rocks!'})

**Meta**

- **since**: NEXTRELEASE
- **since**: 2.2.0

### Lifecycle~initListenerCallback

Expand Down
2 changes: 1 addition & 1 deletion docs/navigation-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ Tab-style navigation in Luigi can be displayed directly above the micro frontend
- **description**: renders the children of the node as a horizontal navigation bar. Sub-children are not supported. When you categorize nodes, you will get a drop-down menu in the horizontal navigation. Set to `true` to show the horizontal navigation, or use the extra attributes for more customization. (**since**: v0.7.0)
- **attributes**:
- **hideTabNavAutomatically**: boolean. In the case the node has only one child, it's possible to configure whether the horizontal navigation bar will be hidden automatically or not. Set this attribute to `true` to hide the horizontal navigation bar and `false` otherwise. ( **since**: v2.0.0 )
- **showAsTabHeader**: boolean. If this attribute is set on the node, it will be considered as a horizontal navigation header micro frontend. The node should be [webcomponent-based](web-component.md) and it should have nested children to show on the horizontal navigation bar. (**since**: NEXTRELEASE )
- **showAsTabHeader**: boolean. If this attribute is set on the node, it will be considered as a horizontal navigation header micro frontend. The node should be [webcomponent-based](web-component.md) and it should have nested children to show on the horizontal navigation bar. (**since**: 2.2.0 )
- **example**:
```js
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 @@ -648,7 +648,7 @@ navigation: {
- **description**: renders the children of the node as a horizontal navigation bar. Sub-children are not supported. When you categorize nodes, you will get a drop-down menu in the horizontal navigation. Set to `true` to show the horizontal navigation, or use the extra attributes for more customization. (**since**: v0.7.0)
- **attributes**:
- **hideTabNavAutomatically**: boolean. In the case the node has only one child, it's possible to configure whether the horizontal navigation bar will be hidden automatically or not. Set this attribute to `true` to hide the horizontal navigation bar and `false` otherwise. ( **since**: v2.0.0 )
- **showAsTabHeader**: boolean. If this attribute is set on the node, it will be considered as a horizontal navigation header micro frontend. The node should be [webcomponent-based](web-component.md) and it should have nested children to show on the horizontal navigation bar. (**since**: NEXTRELEASE )
- **showAsTabHeader**: boolean. If this attribute is set on the node, it will be considered as a horizontal navigation header micro frontend. The node should be [webcomponent-based](web-component.md) and it should have nested children to show on the horizontal navigation bar. (**since**: 2.2.0 )
- **example**:
```js
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.1.0"
"version": "2.2.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.1.0"
"version": "2.2.0"
}

0 comments on commit f599093

Please sign in to comment.