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: Rebase devmain on top of master #464

Merged
merged 30 commits into from
May 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
73ec83f
perf: Release 1.0 (#424)
EngHabu Apr 26, 2022
d6c6f8f
chore(release): Release 0.55.1 [skip ci]
flyte-bot Apr 26, 2022
f1d53c1
BREAKING CHANGE: Release 1.0 (#425)
EngHabu Apr 26, 2022
73dff24
chore: release 1.0 again BREAKING CHANGE (#426)
anrusina Apr 26, 2022
39c0c07
chore(release): Release 1.0.0 [skip ci]
flyte-bot Apr 26, 2022
16c0721
Ci added for devmain branch (#428)
yindia Apr 26, 2022
7110268
chore: move src to a new location
anrusina Apr 24, 2022
0fa448f
ci: allow branch to be built again
anrusina Apr 24, 2022
e576059
chore: replace link to github repository to a proper one
anrusina Apr 25, 2022
e0d4508
ci: basic test and test-coverage setup
anrusina Apr 25, 2022
81059df
chore: add first plugin package
anrusina Apr 25, 2022
a33f606
chore: allow to start test from main directory
anrusina Apr 25, 2022
48a55db
ci: update lowest mkdirp version (#423)
anrusina Apr 25, 2022
bc473e5
chore: add build scripts for console app (#429)
ursucarina Apr 26, 2022
09cb2e3
fix: hide the legend (#435)
eugenejahn Apr 28, 2022
1e2b554
ci: move storybook related packages to top level (#434)
anrusina Apr 28, 2022
e60f660
fix: fix issue 386 (#437)
eugenejahn Apr 28, 2022
9f81ec5
ci: ensure unified tsconfig and remove mocks, test, stories from buil…
anrusina Apr 28, 2022
ff75305
Make whole row clickable to open TaskExecutionDetails panel (#444)
eugenejahn May 2, 2022
604f852
ci: allow to start jest config for all project at once (#447)
anrusina May 3, 2022
6ec03c0
minor: unable to view all the workflow versions (#446)
ursucarina May 4, 2022
448ef5f
chore(tsc): exclude test/stories/mock files only from build (#451)
anrusina May 5, 2022
c36de88
ci: ensure that webpack too doesn't include test/mock/specs files (#452)
anrusina May 6, 2022
394c480
minor: add support for StructuredDataSet Input/Output type (#445)
ursucarina May 6, 2022
31e63c8
chore: Provide basic repo structure and ensure that stories, tests, v…
anrusina May 11, 2022
686f3cc
ci: minimize babel presence (#457)
anrusina May 11, 2022
7bed57e
fix: update node executions to display map tasks (#455)
olga-union May 13, 2022
8544389
ci: resolve docker build issues (#462)
anrusina May 13, 2022
9d6a4b3
chore: update package version
anrusina May 13, 2022
ad6245c
Merge branch 'devmain' into narusina/rebase-branch
anrusina May 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.0.0](http://github.com/lyft/flyteconsole/compare/v0.55.1...v1.0.0) (2022-04-26)


### chore

* release 1.0 again BREAKING CHANGE ([#426](http://github.com/lyft/flyteconsole/issues/426)) ([73dff24](http://github.com/lyft/flyteconsole/commit/73dff24557c450eb8f32c91a249067e9ebe5a4fb))


### BREAKING CHANGES

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

## [0.55.1](http://github.com/lyft/flyteconsole/compare/v0.55.0...v0.55.1) (2022-04-26)


### Performance Improvements

* Release 1.0 ([#424](http://github.com/lyft/flyteconsole/issues/424)) ([73ec83f](http://github.com/lyft/flyteconsole/commit/73ec83f766e2ff5c28e533bf100ea5b378f4f5fa))

# [0.55.0](http://github.com/lyft/flyteconsole/compare/v0.54.2...v0.55.0) (2022-04-22)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ For help with installing dependencies look into
## 🚀 Quick Start
1. Follow [Start a Local flyte backend](https://docs.flyte.org/en/latest/getting_started/index.html), like:
```bash
docker run --rm --privileged -p 30081:30081 -p 30082:30082 -p 30084:30084 cr.flyte.org/flyteorg/flyte-sandbox
docker run --rm --privileged -p 30080:30080 -p 30081:30081 -p 30082:30082 -p 30084:30084 cr.flyte.org/flyteorg/flyte-sandbox
```
2. Now, export the following env variables:

``
export ADMIN_API_URL=http://localhost:30081
export ADMIN_API_URL=http://localhost:30080
export DISABLE_AUTH=1
``

Expand Down Expand Up @@ -99,9 +99,9 @@ few environment variables in your run command to setup the appliation.

`DISABLE_AUTH="1"` (optional)

This example assumes building from ``v0.30.0`` on port ``8080``
This example assumes building from ``v1.0.0`` on port ``8080``
```bash
docker run -p 8080:8080 -e BASE_URL="/console" -e CONFIG_DIR="/etc/flyte/config" -e DISABLE_AUTH="1" ghcr.io/flyteorg/flyteconsole:v0.30.0
docker run -p 8080:8080 -e BASE_URL="/console" -e CONFIG_DIR="/etc/flyte/config" -e DISABLE_AUTH="1" ghcr.io/flyteorg/flyteconsole:v1.0.0
```


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flyteconsole",
"version": "0.55.0",
"version": "1.1.0-rc1",
"private": true,
"description": "The web UI for the Flyte platform",
"repository": {
Expand Down Expand Up @@ -72,4 +72,4 @@
"@babel/preset-react": "~7.16.7",
"@babel/preset-typescript": "~7.16.7"
}
}
}
2 changes: 1 addition & 1 deletion packages/zapp/console/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flyteconsole/client-app",
"version": "0.55.0",
"version": "1.1.0-rc1",
"description": "The web UI for the Flyte platform",
"repository": {
"type": "git",
Expand Down