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

chore(deps): bump jsdom from 16.4.0 to 16.7.0 #516

Merged
merged 1 commit into from
Jun 23, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 23, 2022

Bumps jsdom from 16.4.0 to 16.7.0.

Release notes

Sourced from jsdom's releases.

Version 16.7.0

  • Added AbortSignal.abort(). (ninevra)
  • Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)
  • Implemented wrapping for textareaEl.value if the wrap="" attribute is specified. (ninevra)
  • Changed newline normalization in <textarea>s according to recent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation in getComputedStyle(). (romain-trotard)

Version 16.6.0

  • Added parentNode.replaceChildren(). (@​ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throws null or undefined as an exception. (@​mbest)
  • Removed the dependency on the deprecated request package, in the process fixing several issues with the XMLHttpRequest implementation around header processing. Thanks go to @​tobyhinloopen, @​andrewaylett, and especially @​vegardbb, for completing this months-long effort!

Version 16.5.3

  • Fixed infinite recursion when using MutationObservers to observe elements inside a MutationObserver callback.

Version 16.5.2

  • Fixed Access-Control-Allow-Headers: * to work with XMLHttpRequest. (silviot)
  • Fixed xhr.response to strip any leading BOM when xhr.responseType is "json".
  • Fixed new Text() and new Comment() constructors to properly set the resulting node's ownerDocument.
  • Fixed customElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that <svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace \<template> element.
  • Fixed domParser.parseFromString() to treat <noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the <form> element and instead associated using the form="" attribute.
  • Fixed legendEl.form to return the correct result based on its parent <fieldset>.
  • Fixed optionEl.text to exclude <script> descendants.
  • Fixed radio buttons and checkboxes to not fire input and change events when disconnected.
  • Fixed inputEl.indeterminate to reset to its previous value when canceling a click event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g. onclick="...code...") when there were global variables named element or formOwner. (ExE-Boss)
  • On Node.js v14.6.0+ where WeakRefs are available, fixed NodeIterator to no longer stop working when more than ten NodeIterator instances are created, and to use less memory due to inactive NodeIterators sticking around. (ExE-Boss)

Version 16.5.1

  • Fixed a regression that broke customElements.get() in v16.5.0. (fdesforges)
  • Fixed window.event to have a setter which overwrites the window.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable named event in the jsdom context.

Version 16.5.0

  • Added window.queueMicrotask().
  • Added window.event.
  • Added inputEvent.inputType. (diegohaz)
  • Removed ondragexit from Window and friends, per a spec update.
  • Fixed the URL of about:blank iframes. Previously it was getting set to the parent's URL. (SimonMueller)
  • Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
  • Fixed the hidden="" attribute to cause display: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed the new File() constructor to no longer convert / to :, per a pending spec update.
  • Fixed mutation observer callbacks to be called with the MutationObserver instance as their this value.
  • Fixed <input type=checkbox> and <input type=radio> to be mutable even when disabled, per a spec update.
  • Fixed XMLHttpRequest to not fire a redundant final progress event if a progress event was previously fired with the same loaded value. This would usually occur with small files.
  • Fixed XMLHttpRequest to expose the Content-Length header on cross-origin responses.
  • Fixed xhr.response to return null for failures that occur during the middle of the download.
  • Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)
  • Fixed edge cases around the properties of proxy-like objects such as localStorage or dataset. (ExE-Boss)

... (truncated)

Changelog

Sourced from jsdom's changelog.

16.7.0

  • Added AbortSignal.abort(). (ninevra)
  • Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)
  • Implemented wrapping for textareaEl.value if the wrap="" attribute is specified. (ninevra)
  • Changed newline normalization in <textarea>s according to recent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation in getComputedStyle(). (romain-trotard)

16.6.0

  • Added parentNode.replaceChildren(). (ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throws null or undefined as an exception. (mbest)
  • Removed the dependency on the deprecated request package, in the process fixing several issues with the XMLHttpRequest implementation around header processing. Special thanks to vegardbb for completing this months-long effort!

16.5.3

  • Fixed infinite recursion when using MutationObservers to observe elements inside a MutationObserver callback.

16.5.2

  • Fixed Access-Control-Allow-Headers: * to work with XMLHttpRequest. (silviot)
  • Fixed xhr.response to strip any leading BOM when xhr.responseType is "json".
  • Fixed new Text() and new Comment() constructors to properly set the resulting node's ownerDocument.
  • Fixed customElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that <svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace \<template> element.
  • Fixed domParser.parseFromString() to treat <noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the <form> element and instead associated using the form="" attribute.
  • Fixed legendEl.form to return the correct result based on its parent <fieldset>.
  • Fixed optionEl.text to exclude <script> descendants.
  • Fixed radio buttons and checkboxes to not fire input and change events when disconnected.
  • Fixed inputEl.indeterminate to reset to its previous value when canceling a click event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g. onclick="...code...") when there were global variables named element or formOwner. (ExE-Boss)
  • On Node.js v14.6.0+ where WeakRefs are available, fixed NodeIterator to no longer stop working when more than ten NodeIterator instances are created, and to use less memory due to inactive NodeIterators sticking around. (ExE-Boss)

16.5.1

  • Fixed a regression that broke customElements.get() in v16.5.0. (fdesforges)
  • Fixed window.event to have a setter which overwrites the window.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable named event in the jsdom context.

16.5.0

  • Added window.queueMicrotask().
  • Added window.event.
  • Added inputEvent.inputType. (diegohaz)
  • Removed ondragexit from Window and friends, per a spec update.
  • Fixed the URL of about:blank iframes. Previously it was getting set to the parent's URL. (SimonMueller)
  • Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
  • Fixed the hidden="" attribute to cause display: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed the new File() constructor to no longer convert / to :, per a pending spec update.
  • Fixed mutation observer callbacks to be called with the MutationObserver instance as their this value.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 23, 2022
@codecov
Copy link

codecov bot commented Jun 23, 2022

Codecov Report

Merging #516 (40125c6) into master (7606fdf) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##           master     #516   +/-   ##
=======================================
  Coverage   70.85%   70.85%           
=======================================
  Files         430      430           
  Lines        9908     9908           
  Branches     1681     1681           
=======================================
  Hits         7020     7020           
  Misses       2888     2888           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 7606fdf...40125c6. Read the comment docs.

Copy link
Contributor

@jsonporter jsonporter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@jsonporter jsonporter merged commit 32b92b4 into master Jun 23, 2022
@jsonporter jsonporter deleted the dependabot/npm_and_yarn/jsdom-16.7.0 branch June 23, 2022 20:53
jsonporter added a commit that referenced this pull request Sep 30, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 3, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: devmain build

Signed-off-by: Olga Nad <[email protected]>

* fix: capitalized file renames

Signed-off-by: Olga Nad <[email protected]>

* Delete NodeExecutionActions.test.tsx

* Delete NodeExecutionCacheStatus.test.tsx

* fix: capitalized file renames step 1

Signed-off-by: Olga Nad <[email protected]>

* fix: capitalized file renames step 2

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 3, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: use compiledworkflowclosure in all three tabs for executions view

Signed-off-by: James <[email protected]>

* fix: executiontabcontent

Signed-off-by: James <[email protected]>

* fix: test for workflowgraph

* fix: detail panel

Signed-off-by: James <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: linter

Signed-off-by: James <[email protected]>

* fix: tests for workflowgraph

Signed-off-by: James <[email protected]>

* fix: skip tests, package.json file back

Signed-off-by: James <[email protected]>

* fix: console flyteidl 1.1.14

Signed-off-by: James <[email protected]>

* fix: console flyteidl 1.1.14

Signed-off-by: James <[email protected]>

* fix: console flyteidl 1.1.4

Signed-off-by: James <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: olga-union <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Olga Nad <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 10, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: add paused state

Signed-off-by: Olga Nad <[email protected]>

* fix: add paused tasks button on a graph, move checks to utils

Signed-off-by: Olga Nad <[email protected]>

* fix: add gate nodes to graph, update paused table, custom nodes clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: final touch-ups

Signed-off-by: Olga Nad <[email protected]>

* fix: add return types to helpers

Signed-off-by: Olga Nad <[email protected]>

* fix: update state and resume in details tab, add some tests

Signed-off-by: Olga Nad <[email protected]>

* fix: add more tests

Signed-off-by: Olga Nad <[email protected]>

* fix: post-merge build fixes

Signed-off-by: Olga Nad <[email protected]>

* fix: add more unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: add ticket number to launch form todos

Signed-off-by: Olga Nad <[email protected]>

* fix: workflow graph test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 12, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: refactor contexts around node executions table and rows

Signed-off-by: Olga Nad <[email protected]>

* fix: add missing file

Signed-off-by: Olga Nad <[email protected]>

* fix: add temp row component

Signed-off-by: Olga Nad <[email protected]>

* fix: refactor final touch-ups

Signed-off-by: Olga Nad <[email protected]>

* fix: add/update unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: replace getBy with queryBy

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 21, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: filters in node executions table view

Signed-off-by: Olga Nad <[email protected]>

* fix: effect dependency and tests

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 26, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: node executions stale context for relaunched executions

Signed-off-by: Olga Nad <[email protected]>

* fix: remove memoization

Signed-off-by: Olga Nad <[email protected]>

* fix: actions test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Oct 27, 2022
…#629)

* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: failing/empty graph and timeline tabs upon relaunch data updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
jsonporter added a commit that referenced this pull request Nov 2, 2022
* chore: move src to a new location

Signed-off-by: Nastya Rusina <[email protected]>

* ci: allow branch to be built again

Signed-off-by: Nastya Rusina <[email protected]>

* chore: replace link to github repository to a proper one

Signed-off-by: Nastya Rusina <[email protected]>

* ci: basic test and test-coverage setup

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add first plugin package

Signed-off-by: Nastya Rusina <[email protected]>

* chore: allow to start test from main directory

Signed-off-by: Nastya Rusina <[email protected]>

* ci: update lowest mkdirp version (#423)

Signed-off-by: Nastya Rusina <[email protected]>

* chore: add build scripts for console app (#429)

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* fix: hide the legend (#435)

Signed-off-by: eugenejahn <[email protected]>

* ci: move storybook related packages to top level (#434)

* ci: move storybook related packages to top level
* ci: ensure that lint can be run in PR checks
* ci: allow to run tests linux setup

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix issue 386 (#437)

Signed-off-by: eugenejahn <[email protected]>

* ci: ensure unified tsconfig and remove mocks, test, stories from build (#436)

* ci: ensure unified tsconfig and remove mocks,test,stories from build
* ci: move certificates into certificate folder inside script

Signed-off-by: Nastya Rusina <[email protected]>

* Make whole row clickable to open TaskExecutionDetails panel (#444)

* fix: issue 398
* fix: prevent parent onclick event trigger

Signed-off-by: eugenejahn <[email protected]>

* ci: allow to start jest config for all project at once (#447)

* minor: unable to view all the workflow versions (#446)

* fix: unable to view all the workflow versions

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore(tsc): exclude test/stories/mock files only from build (#451)

* chore(tsc): exclude test/stories/mock files only from build

Signed-off-by: Nastya Rusina <[email protected]>

* ci: ensure that webpack too doesn't include test/mock/specs files (#452)

Signed-off-by: Nastya Rusina <[email protected]>

* minor: add support for StructuredDataSet Input/Output type (#445)

* chore: support for StructuredDataSet Input/Output type

Signed-off-by: Carina Ursu <[email protected]>

* chore: add tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: add package

Signed-off-by: Carina Ursu <[email protected]>

* chore: resolving local package issue

Signed-off-by: Carina Ursu <[email protected]>

* chore: yarn lock

Signed-off-by: Carina Ursu <[email protected]>

* chore: stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix associative arrays in copy functionality

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix scalar stories

Signed-off-by: Carina Ursu <[email protected]>

* chore: oops

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: revert old viewer to original

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove non-null assertion

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix tests

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix test types

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: Provide basic repo structure and ensure that stories, tests, vscode setup properly (#458)

* chore: separate AppInfo
* chore: vscode properly understands @flyteconsole
* chore: add basics/locale entry
* test: add storybooks and tests
* test: fix istanbul test-coverage issue by binding babel versions

Signed-off-by: Nastya Rusina <[email protected]>

* ci: minimize babel presence (#457)

* ci: minimize babel presence

Signed-off-by: Nastya Rusina <[email protected]>

* fix: update node executions to display map tasks (#455)

* fix: update node executions to display map tasks
* fix: update map task logs styles
* test: add/update unit tests
* fix: fix flickering and unnecessary re-renders

Signed-off-by: Olga Nad <[email protected]>

* ci: resolve docker build issues (#462)

* ci: resolve docker build issues
* chore: remove unneeded changes

Signed-off-by: Nastya Rusina <[email protected]>

* Chore: Rebase devmain on top of master (#464)

* fix: ensure that admin version is fully shown (#465)

* chore: fix for console not respecting admin url (#468)

* chore: fix

Signed-off-by: Carina Ursu <[email protected]>

* chore: remove console

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: add cherio o=to package

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: fix start prod

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

* chore: cleanup

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* chore: rebase on top of master

Signed-off-by: Nastya <[email protected]>

* fix: trigger release #patch (#477)

Signed-off-by: Nastya <[email protected]>

* feat: add task version info (#485)

made the entities component become more generic that can support Workflow, Task, and others
added the inputs and outputs to task details page
added the versions table in task details page
added the version details page
added task details link in node side panel

Signed-off-by: eugenejahn <[email protected]>

Co-authored-by: Eugene Jahn <[email protected]>

* chore: update Readme with python note + package version update (#486)

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya Rusina <[email protected]>

* hotfix ci pipeline (#487)

* hotfix ci pipeline

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* [Mapping][TaskInfo] V.2 - Update Task details to allow check information for child task execution (#467)

* fix: add eventVersion check for map tasks (#484)

* fix: resolve minimist package to v1.2.6 (#492)

Signed-off-by: Nastya <[email protected]>

* ci: add flyte-api plugin package (#490)

Signed-off-by: Nastya <[email protected]>

* fix: update/add graph related stories (#493)

* fix: separate api auth to plugin folder (#495)

* fix: separate api auth to plugin folder
* chore: for local admin URL is undefined
* chore: update README.md
* test: fix tests + add new ones
* v0.0.2 - release for flyte-api plugin

Signed-off-by: Nastya <[email protected]>

* feat: rerun task action in execution page  (#488)

* feat: task rerun done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix initialParameters

Signed-off-by: Eugene Jahn <[email protected]>

* fix: remove a file

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun task done

Signed-off-by: Eugene Jahn <[email protected]>

* feat: rerun fix literal type

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: small typo fixed

Signed-off-by: Eugene Jahn <[email protected]>

* feat: fix test coverage

Signed-off-by: Eugene Jahn <[email protected]>

* chore: update release version (#501)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump protobufjs from 6.8.9 to 6.11.3 (#502)

Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.8.9 to 6.11.3.
- [Release notes](https://github.com/protobufjs/protobuf.js/releases)
- [Changelog](https://github.com/protobufjs/protobuf.js/blob/v6.11.3/CHANGELOG.md)
- [Commits](https://github.com/protobufjs/protobuf.js/commits/v6.11.3)

---
updated-dependencies:
- dependency-name: protobufjs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: add package generator for basics/composites/plugins (#503)

* chore: add package generator for basics/composites/plugins

Signed-off-by: Nastya <[email protected]>

* Update CONTRIBUTING.md  with package generate info

* fix(bug-508): executions can not be filtered by start time (#509)

Signed-off-by: Nastya <[email protected]>

* chore(deps-dev): bump semantic-release from 17.2.3 to 19.0.3 (#510)

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.2.3 to 19.0.3.
- [Release notes](https://github.com/semantic-release/semantic-release/releases)
- [Commits](semantic-release/semantic-release@v17.2.3...v19.0.3)

---
updated-dependencies:
- dependency-name: semantic-release
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: support flyte decks (#504)

* feat: support flyte deck #none

Signed-off-by: James <[email protected]>

* fix: rebase with master #none

Signed-off-by: James <[email protected]>

* fix: fix iframe height and api response type; #none

Signed-off-by: James <[email protected]>

* fix: modal style; #none;

Signed-off-by: James <[email protected]>

* fix: use env variable for server ssl config #none;

Signed-off-by: James <[email protected]>

* fix: use h2 instead of h3 for future migration #none

Signed-off-by: James <[email protected]>

* feat: navbar navigation dropdown (#511)

* feat: navbar navigstion dropdown
* chore: storybook update
* chore: fix test + add base readme

Signed-off-by: Nastya <[email protected]>

* chore: support internal/external navigsation better (#513)

Signed-off-by: Nastya <[email protected]>

* Update Contributing.md (#515)

Add line how to add nodejs plugin to asdf, to simplify setup

* chore: update navigationDropdown usage (#517)

Signed-off-by: Work <[email protected]>

Co-authored-by: Work <[email protected]>

* chore(deps): bump jsdom from 16.4.0 to 16.7.0 (#516)

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0.
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@16.4.0...16.7.0)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: launch plans list & detail page #none; (#507)

* feat: launch plans list #none;
* fix: launch plan detail page the top navigation header
* fix: added expected inputs and fixed inputs; #none
* fix: remove radio buttons for view all launch plan versions; #none

Signed-off-by: James <[email protected]>

* chore: release 1.1.3 (#520)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: cache icon fro map task (#519)

* fix: cache icon fro map task
* fix: icon and text center

Signed-off-by: eugenejahn <[email protected]>

* fix: Relaunch form does not persist security context values when changed (#527)

fix: use execution security context in relaunch; #none

Signed-off-by: James <[email protected]>

* fix: release process (#529)

* fix release process

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* more changes

Signed-off-by: Yuvraj <[email protected]>

* fix workflow

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: fix semantic-release config (#532)

Signed-off-by: Yuvraj <[email protected]>

* test: fix time sensitive test (#533)

chore: fix test

Signed-off-by: Nastya Rusina <[email protected]>

* Rename upgrade idl workflow (#534)

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: support mapped tasks (#494)

* fix: support mapped tasks #none

Signed-off-by: James <[email protected]>

* fix: fix comments #none

Signed-off-by: James <[email protected]>

* fix: fix unit test #none

Signed-off-by: James <[email protected]>

* fix: add string constants #none

Signed-off-by: James <[email protected]>

* fix: added test for mapInputHelper #none

Signed-off-by: James <[email protected]>

* fix: fix test for utils.test.ts #none

Signed-off-by: James <[email protected]>

* chore: trigger snyk re-run

* fix: multiple keys for mapped types; #none

Signed-off-by: James <[email protected]>

* chore: storybook item (#530)

Signed-off-by: Nastya Rusina <[email protected]>

* fix: fix validation for duplicate and fix focus issue

Signed-off-by: James <[email protected]>

* chore: provide previous run values on relaunch

Signed-off-by: Nastya Rusina <[email protected]>

Co-authored-by: Nastya <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>

* fix(491): remove favicon package + use favicon.svg by default (#537)

* fix(491): remove favicon package + use favicon.svg by default

Signed-off-by: Nastya Rusina <[email protected]>

* chore: resolve yarn.lock merge conflict

Signed-off-by: Nastya Rusina <[email protected]>

* Fixed undefined task input types access in NodeExecutionActions (#538)

* Fixed undefined task input types access in NodeExecutionActions
Issue occurred due to race condition while loading data, indentical fix applies as for #506

Signed-off-by: Nick Müller <[email protected]>

* fix: cannot read properties of undefined (#506)

fix: nullref

Signed-off-by: Carina Ursu <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>
(cherry picked from commit d38b98b)

Signed-off-by: Nick Müller <[email protected]>

Co-authored-by: Carina Ursu <[email protected]>

* feat: support union type for launch plan (#540)

* feat: support union type for launch plan

Signed-off-by: eugenejahn <[email protected]>

* fix: format

Signed-off-by: eugenejahn <[email protected]>

* fix: update type label

Signed-off-by: eugenejahn <[email protected]>

* fix: update the format

Signed-off-by: eugenejahn <[email protected]>

* fix: graph has realtime updates as execution progresses (#543)

Signed-off-by: Olga Nad <[email protected]>

* fix: make sure groups used in graph aren't undefined (#545)

Signed-off-by: Olga Nad <[email protected]>

* Hotfix docker push GHWF (#547)

* Rename upgrade idl workflow

Signed-off-by: Yuvraj <[email protected]>

* fix docker push wf

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* fix: Graph Center on initial render (#541)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* introduce needFitView

* fix: graph edge overlaps nodes (#542)

* fix: upgrade react-flow-renderer version

Signed-off-by: James <[email protected]>

* fix: use setTimeout for queue on the next render

Signed-off-by: James <[email protected]>

* fix: use one state variable and fitView after nodesChange

Signed-off-by: James <[email protected]>

* fix: graph edge overlaps nodes issue

Signed-off-by: James <[email protected]>

* introduce needFitView

* edge overlap

* fix: flyteconsole tag in ci pipeline  (#550)

* fix tag issue in ci

Signed-off-by: Yuvraj <[email protected]>

* remove welcome bot from boilerplate config

Signed-off-by: Yuvraj <[email protected]>

Co-authored-by: Yuvraj <[email protected]>

* enable docker push for console (#552)

* chore(deps): bump terser from 4.8.0 to 4.8.1 (#548)

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/terser/terser/releases)
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/terser/terser/commits)

---
updated-dependencies:
- dependency-name: terser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Flyteidl version (#558)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: fix searchbar X button (#564)

chore: fix searchbar X button

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: update timeline view to show dynamic wf internals on first render (#562)

* fix: update timeline view to show dynamic wf internals on first render

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests and clean up code

Signed-off-by: Olga Nad <[email protected]>

* fix: test

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: webmanifest missing crossorigin attribute (#566)

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: console showing subworkflows as unknown (#570)

* fix: console showing subworkflows as unknown

Signed-off-by: Olga Nad <[email protected]>

* fix: replace comparison with lodash isEqual

Signed-off-by: Olga Nad <[email protected]>

* fix: remove checkIfObjectsAreSame

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* fix: Dict value loses 1 trailing character on UI Launch. (#561)

fix: dict lose trailing issue

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: launchform validation (#557)

* fix: disable launch button and show validation messaages

Signed-off-by: James <[email protected]>

* fix: code clean

Signed-off-by: James <[email protected]>

Signed-off-by: James <[email protected]>

* fix: integrate timeline and graph tabs wrappers under one component (#572)

* fix: integrate timeline and graph tabs wrappers under one component

Signed-off-by: Olga Nad <[email protected]>

* fix: details tab in graph view and clean-up

Signed-off-by: Olga Nad <[email protected]>

* fix: old unit tests

Signed-off-by: Olga Nad <[email protected]>

* fix: temp filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: final filename change

Signed-off-by: Olga Nad <[email protected]>

* fix: tsconfig

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* chore(deps-dev): bump moment from 2.29.3 to 2.29.4 (#549)

Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4.
- [Release notes](https://github.com/moment/moment/releases)
- [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)
- [Commits](moment/moment@2.29.3...2.29.4)

---
updated-dependencies:
- dependency-name: moment
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* added none type in union type (#577)

* added none type in union type

Signed-off-by: eugenejahn <[email protected]>

* udpated the test case

Signed-off-by: eugenejahn <[email protected]>

* fix: fixed eslint

Signed-off-by: eugenejahn <[email protected]>

Signed-off-by: eugenejahn <[email protected]>

* fix: correctly coerce `defaultValue` when rendering LaunchPlan details (#578)

fix: correctly coerce defaultValue when rendering LaunchPlan details

Signed-off-by: Rahul Mehta <[email protected]>

Signed-off-by: Rahul Mehta <[email protected]>

* #minor: inputHelpers InputProps (#579)

fix: inputHelpers InputProps

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: fix test of launchform (#581)

* fix: fix test of launchform

Signed-off-by: James <[email protected]>

* fix: inputHelpers tests regression

Signed-off-by: Olga Nad <[email protected]>

* fix: update tests description

Signed-off-by: Olga Nad <[email protected]>

* fix: spelling typo

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: James <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Co-authored-by: Olga Nad <[email protected]>

* Pruning some unused packages (#583)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* feat: minor change (#584)

Minor change

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: floor seconds to int in the edge case moment returns it as float (#582)

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#575)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* fix: add BASE_URL to dev startup, open deeply nested urls (#589)

* fix: add BASE_URL to dev startup, open deeply nested urls

Signed-off-by: Carina Ursu <[email protected]>

* fix: remove debug code

Signed-off-by: Carina Ursu <[email protected]>

* chore: empty BASE_URL handling

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* fix: add default disabled state for only mine filter (#585)

* fix: add default disabled state for only mine filter

Signed-off-by: Olga Nad <[email protected]>

* fix: tests

Signed-off-by: Olga Nad <[email protected]>

* fix: use api context to default filter state

Signed-off-by: Olga Nad <[email protected]>

* fix: revert test updates

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Olga Nad <[email protected]>

* Update Flyteidl version (#590)

Signed-off-by: Flyte-Bot <[email protected]>

Signed-off-by: Flyte-Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>

* Launch plan ref v2 (#601)

* progress

* Fixed

* Removed debug code

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: enable deeplinks in development (#602)

chore: enable deeplinks in development

Signed-off-by: Carina Ursu <[email protected]>

Signed-off-by: Carina Ursu <[email protected]>

* chore: release 1.3.5 (#605)

Signed-off-by: Jason Porter <[email protected]>

Signed-off-by: Jason Porter <[email protected]>

* fix: infinity loop when opening up details on sub-workflow

Signed-off-by: Olga Nad <[email protected]>

Signed-off-by: Nastya Rusina <[email protected]>
Signed-off-by: eugenejahn <[email protected]>
Signed-off-by: Olga Nad <[email protected]>
Signed-off-by: Nastya <[email protected]>
Signed-off-by: Eugene Jahn <[email protected]>
Signed-off-by: James <[email protected]>
Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>
Signed-off-by: Carina Ursu <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Rahul Mehta <[email protected]>
Signed-off-by: Jason Porter <[email protected]>
Co-authored-by: Nastya Rusina <[email protected]>
Co-authored-by: Nastya <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Carina Ursu <[email protected]>
Co-authored-by: Eugene Jahn <[email protected]>
Co-authored-by: apTalya <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: Yuvraj <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: james-union <[email protected]>
Co-authored-by: Work <[email protected]>
Co-authored-by: Nick Müller <[email protected]>
Co-authored-by: Flyte Bot <[email protected]>
Co-authored-by: flyte-bot <[email protected]>
Co-authored-by: Rahul Mehta <[email protected]>
Co-authored-by: Jason Porter <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant