Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.7.7 #1186

Merged
merged 21 commits into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ace0991
Merge branch 'master' of github.com:SAP/luigi
maxmarkus Nov 20, 2019
305ad98
Merge remote-tracking branch 'upstream/master'
maxmarkus Nov 21, 2019
c4298f6
Merge remote-tracking branch 'upstream/master'
maxmarkus Nov 27, 2019
3fc67ff
Merge remote-tracking branch 'upstream/master'
maxmarkus Jan 13, 2020
4314714
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 10, 2020
b41b3f4
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 13, 2020
01c2e60
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 19, 2020
f605223
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 24, 2020
2c2bdc3
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 27, 2020
dfa9182
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
db05030
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
5ecc087
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
2132f1c
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
4991686
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 10, 2020
a4a0c2e
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 11, 2020
7466cf7
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 11, 2020
1c9f9ab
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 18, 2020
8a25b58
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 18, 2020
9b1dcb4
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 19, 2020
cd02b87
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 20, 2020
dd2bb0d
version upate to v0.7.7
maxmarkus Mar 20, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
...
}
-->


## [v0.7.7] (2020-03-20)

#### :bug: Fixed
* [#1172](https://github.com/SAP/luigi/pull/1172) Fix virtualtree trailing slash ([@maxmarkus](https://github.com/maxmarkus))
* [#1179](https://github.com/SAP/luigi/pull/1179) Fix navigate ok check for withoutSync ([@maxmarkus](https://github.com/maxmarkus))
* [#1173](https://github.com/SAP/luigi/pull/1173) Recalculation after cache deletion ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#1148](https://github.com/SAP/luigi/pull/1148) deleteCache was missing in contextswitcher ([@JohannesDoberer](https://github.com/JohannesDoberer))
* [#1145](https://github.com/SAP/luigi/pull/1145) Route change loses context in contextswitcher ([@JohannesDoberer](https://github.com/JohannesDoberer))

#### :memo: Documentation
* [#1060](https://github.com/SAP/luigi/pull/1060) Luigi Videos ([@alexandra-simeonova](https://github.com/alexandra-simeonova))
* [#1116](https://github.com/SAP/luigi/pull/1116) Add implementations/scenarios ([@alexandra-simeonova](https://github.com/alexandra-simeonova))


## [v0.7.6] (2020-03-09)

#### :rocket: Added
Expand Down Expand Up @@ -671,4 +687,5 @@ The lerna-changelog tool detects changes based on PR labels and maps them to sec
[v0.7.3]: https://github.com/SAP/luigi/compare/v0.7.2...v0.7.3
[v0.7.4]: https://github.com/SAP/luigi/compare/v0.7.3...v0.7.4
[v0.7.5]: https://github.com/SAP/luigi/compare/v0.7.4...v0.7.5
[v0.7.6]: https://github.com/SAP/luigi/compare/v0.7.5...v0.7.6
[v0.7.6]: https://github.com/SAP/luigi/compare/v0.7.5...v0.7.6
[v0.7.7]: https://github.com/SAP/luigi/compare/v0.7.6...v0.7.7
2 changes: 1 addition & 1 deletion client/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/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luigi-client-private",
"version": "0.7.6",
"version": "0.7.7",
"private": true,
"description": "luigi-client development version, only the public folder is being published to npm as a package",
"repository": {
Expand Down
24 changes: 12 additions & 12 deletions client/public/luigi-client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export declare interface LinkManager {
* Disables the navigation handling for a single navigation request
* It prevents Luigi Core from handling url change after `navigate()`.
* Used for auto-navigation
* @since NEXTRELEASE
* @since 0.7.7
* @example
* LuigiClient.linkManager().withoutSync().navigate('/projects/xy/foobar');
* LuigiClient.linkManager().withoutSync().fromClosestContext().navigate('settings');
Expand All @@ -347,17 +347,17 @@ export type addInitListener = (
initFn: (context: Context, origin?: string) => void
) => number;

/**
* Callback of the addInitListener
* @callback Lifecycle~initListenerCallback
* @param {Object} context current context data
* @param {string} origin Luigi Core URL
*/
/**
* Removes an init listener.
* @param {string} id the id that was returned by the `addInitListener` function.
* @memberof Lifecycle
*/
/**
* Callback of the addInitListener
* @callback Lifecycle~initListenerCallback
* @param {Object} context current context data
* @param {string} origin Luigi Core URL
*/
/**
* Removes an init listener.
* @param {string} id the id that was returned by the `addInitListener` function.
* @memberof Lifecycle
*/
export function removeInitListener(id: number): boolean;
export type removeInitListener = (id: number) => boolean;

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": "@kyma-project/luigi-client",
"version": "0.7.6",
"version": "0.7.7",
"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/linkManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export class linkManager extends LuigiClientBase {
* Disables the navigation handling for a single navigation request
* It prevents Luigi Core from handling url change after `navigate()`.
* Used for auto-navigation
* @since 0.7.6
* @since 0.7.7
* @example
* LuigiClient.linkManager().withoutSync().navigate('/projects/xy/foobar');
* LuigiClient.linkManager().withoutSync().fromClosestContext().navigate('settings');
Expand Down
10 changes: 10 additions & 0 deletions core/examples/luigi-sample-angular/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 core/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 core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luigi-core-private",
"version": "0.7.6",
"version": "0.7.7",
"private": true,
"description": "luigi-core development version, only the public folder is being published to npm as a package",
"devDependencies": {
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": "@kyma-project/luigi-core",
"version": "0.7.6",
"version": "0.7.7",
"description": "luigi-core",
"license": "Apache-2.0",
"repository": {
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 @@ -237,7 +237,7 @@ LuigiClient.linkManager().withoutSync().fromClosestContext().navigate('settings'

**Meta**

- **since**: 0.7.6
- **since**: 0.7.7

#### navigate

Expand Down