Ruben Fiszel
eaadad6143
hotfix trusted host for pip-compile
2022-09-28 09:17:08 +02:00
Ruben Fiszel
ae3f86db11
feat: add private registries pip ( #636 )
...
* add private registries pip
* add private registries pip
* fix
* fix
* fix
* echo parameters
2022-09-28 08:47:43 +02:00
Ruben Fiszel
c0a55bfdd4
fix(frontend): workers as the last menu link
2022-09-27 22:52:02 +02:00
Faton Ramadani
deb0b47a5f
fix(frontend): Hide the editor panel when we are editing a PathScript ( #631 )
...
* fix(frontend): Hide the editor panel when we are editing a PathScript
* feat(front): Remove viewCode action and display the code in the Editor panel
2022-09-27 17:52:02 +02:00
Faton Ramadani
941fe7146e
feat(frontend): Landing rework ( #630 )
...
* feat(frontend): Use common components on the landing pae
* feat(frontend): Use shared icon
2022-09-27 13:57:08 +02:00
Faton Ramadani
13cfed6d89
feat(frontend): Add contextual actions to insert variables or resources ( #629 )
...
* feat(frontend): Add actions to Monaco editor
* feat(frontend): Remove useless icon
* feat(front): Move addActions to editorBar
2022-09-27 13:55:46 +02:00
Ruben Fiszel
4e791b039d
fix: prop picker values correspond to test values ( #628 )
...
* progress
* progress
2022-09-27 03:29:32 +02:00
Faton Ramadani
d2e5168222
fix(frontend): Fix buttons spacings ( #627 )
2022-09-26 19:23:39 +02:00
Faton Ramadani
025d31f843
feat(frontend): Add support for failure modules ( #612 )
...
* feature(frontend): Failure module
* feature(frontend): Fix wording + Remove advanced tab for failure modules + fix failure module test
* feature(frontend): Fix wording + add toggle in the mini map + stick component at the bottom
* feat(frontend): Add summary to failure module
* feat(frontend): Add support for Failure module in the FlowModuleViewer
* feat(frontend): Add support for FailureModule in the status viewer
* feat(frontend): Fix building issues
2022-09-26 18:36:15 +02:00
Ádám Kovács
b10b1cc90a
feat(frontend): Script page action row ( #626 )
...
* feat(frontend): Update button component styles
* feat(frontend): Use button component
* fix(frontend): Re-export button types
* feat(frontend): Use action row in script page
* fix(frontend): Center the action row
* fix(frontend): Revert to previous event forwarding
* feature(frontend): Add action row to flow page
* fix(frontend): Restore button red color
2022-09-26 17:18:17 +02:00
Ruben Fiszel
ff9bd2fc63
fix logspanel for flow viewer
2022-09-26 04:59:35 +02:00
Ruben Fiszel
932cef73ee
buildcache not on ghcr
2022-09-26 04:19:31 +02:00
Ruben Fiszel
19fd4a6fff
try catch around monaco services
2022-09-26 04:14:21 +02:00
Ruben Fiszel
6097c26cdb
try catch around monaco services
2022-09-26 04:02:27 +02:00
Ruben Fiszel
428e96ad2d
initialize flow store correctly
2022-09-26 03:53:11 +02:00
Ruben Fiszel
b87a498087
do not restart flow as zombie job
2022-09-26 00:45:26 +02:00
Ruben Fiszel
25724e5f89
fix runform
2022-09-25 18:11:00 +02:00
Ruben Fiszel
4044edf8d6
refactor logs panel everywhere applicable ( #625 )
...
* init
* init
* progress
* progress
* refactor logs entirely
* fix sqlx
2022-09-25 18:03:51 +02:00
Ruben Fiszel
ba203b8674
fix cancel job
2022-09-25 17:49:11 +02:00
Ruben Fiszel
cf879fcecf
fix cancel job
2022-09-25 17:13:03 +02:00
Ruben Fiszel
3a530c8566
fix cancel job
2022-09-25 16:36:32 +02:00
sqwishy
e7a6c1b99f
reorganize handle_child ( #606 )
...
* reorganize handle_child
There were a couple issues with the current implementation:
1. When reading stdout and stderr from the child, as soon as we hit EOF
on one we would stop reading from both (line 1420). This could lead
to the return value not being read from the job program.
2. Lines read from stdout and stderr are put into a channel and read
elsewhere with `rx.recv()` (line 1497) but that channel isn't read
until empty. It is only read in the `while !done.load(...)` (line
1449) loop and that loop can stop after any `.store(true, ...)`.
Which happens when the child exits, when the job is cancelled, when
either stdout or stderr reach EOF...
This can be verified by putting `dbg!(rx.recv().await)` or a similar
assertion after the while loop before returning from that function.
It shows the channel still containing log lines on rare occasions.
I was pretty careful in this to maintain the current behaviour; adding
comments to express intention.
One difference in this is that some regular intervals (cancel check and
ping update) should be more regular?
Before...
> at 00ms wait for 10ms
> at 10ms do things for 3ms
> at 13ms wait again for *10ms*
> at 23ms do things again ...
With change...
> at 00ms wait for 10ms
> at 10ms do things for 3ms
> at 13ms wait again but for *7ms*
> at 20ms do things again ...
Which I'm guessing is preferable but I could be wrong.
* renames; interpolate values in log messages
* do `append_logs()` in tokio::task
* tokio::time::interval & close pipe after limit
* clean up comments
2022-09-24 22:55:52 +02:00
sqwishy
e23e537328
update cron v0.12.0 ( #623 )
2022-09-24 21:18:36 +02:00
Ruben Fiszel
bcb113682f
feat(frontend): merge logs and result tab in script editor ( #622 )
2022-09-23 16:20:47 +02:00
Ruben Fiszel
40160c03f1
fix(frontend): loading flows with for loops + flowStatusViewer treat single jobs properly
2022-09-23 13:28:02 +02:00
Faton Ramadani
2d0255824c
feat(frontend): Extract publish to hub button ( #620 )
...
* feature(frontend): Extract publish to hub button
* feat(frontend): Extract Publish to hub button
2022-09-23 12:23:37 +02:00
Faton Ramadani
5146c37baf
feat(frontend): Add a split panel in the test tab ( #619 )
2022-09-23 12:11:05 +02:00
Ádám Kovács
f4c8636209
feat(frontend): Badge component and script page ( #617 )
...
* fix(frontend): Consistent tooltip font size
* feature(frontend): Add new badge component
* feature(frontend): Add color type to badge
* feature(frontend): Add copy to clipboard utility
* feature(frontend): Update common badge component
* feature(frontend): Update badge to handle icons
* feature(frontend): Update script page design
* feat(frontend): Add capitalize option to badges
* fix(frontend): Fix shared badge text display
2022-09-23 12:10:15 +02:00
Faton Ramadani
e8e4199c5c
feature(frontend): Button component ( #616 )
...
* feature(frontend): Button component
* feature(frontend): Ajust style
2022-09-22 13:25:17 +02:00
sqwishy
47fba21256
remove delay between spawning each worker ( #614 )
2022-09-21 21:05:19 -07:00
Ruben Fiszel
d71bca7443
fix flow UX and flowStateStore ( #610 )
...
* fix everything
* fix(frontend): Restore module deletion + restore for loop settings
* fix(frontend): Add missing focus on number inputs
* fix(frontend): Add key wrapper to make sure the editor content is reloaded
* fix(frontend): Fix mini-map spacing + add icon to schedule and retry buttons
Co-authored-by: Faton Ramadani <faton.ramadani14@gmail.com >
2022-09-21 11:37:33 +02:00
Ruben Fiszel
3fe1afce29
improve preview results v1
2022-09-21 02:48:30 +02:00
Ruben Fiszel
4224bc42fe
fix connect button
2022-09-21 02:00:30 +02:00
Ruben Fiszel
5642e5c734
fix Advanced flow module buttons
2022-09-21 01:38:16 +02:00
Ruben Fiszel
10db37a029
fix focusProp
2022-09-21 00:55:50 +02:00
dependabot[bot]
2947bb3c95
chore(deps): bump anyhow from 1.0.64 to 1.0.65 in /backend ( #600 )
...
Bumps [anyhow](https://github.com/dtolnay/anyhow ) from 1.0.64 to 1.0.65.
- [Release notes](https://github.com/dtolnay/anyhow/releases )
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.64...1.0.65 )
---
updated-dependencies:
- dependency-name: anyhow
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-20 22:06:10 +00:00
dependabot[bot]
b1513824df
chore(deps): bump thiserror from 1.0.34 to 1.0.35 in /backend ( #604 )
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.34 to 1.0.35.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.34...1.0.35 )
---
updated-dependencies:
- dependency-name: thiserror
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-20 22:03:02 +00:00
Faton Ramadani
0f33c26d54
feature(frontend): Add support for retries for flows ( #607 )
...
* feature(frontend): Add support for retries for flows
* feature(frontend): Fix design issues
2022-09-21 00:00:39 +02:00
dependabot[bot]
9045bd647e
chore(deps): bump swc_ecma_parser from 0.119.7 to 0.119.12 in /backend ( #597 )
...
Bumps [swc_ecma_parser](https://github.com/swc-project/swc ) from 0.119.7 to 0.119.12.
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/commits )
---
updated-dependencies:
- dependency-name: swc_ecma_parser
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-20 22:00:28 +00:00
Faton Ramadani
9ef6663dc5
feature(frontend): Prop picker panel ( #605 )
...
* feature(frontend): WIP Prop picker v2
* feature(frontend): add PropPicker context
* feature(frontend): prop picker working
* feature(frontend): restore connect button
* feature(frontend): Fix wording + fix height to avoid content shift
* feature(frontend): Fix upTo preview + adapt style
* feature(frontend): Preview results cleanup
* feature(frontend): Remove test logs
* feature(frontend): Revert wrong changes
* feature(frontend): Restore shared preview args
* feature(frontend): Reduce ObjectViewer font size + remove useless space
* feature(frontend): Wording
* feature(frontend): Fix Split panel scrolling issues
2022-09-20 23:59:48 +02:00
dependabot[bot]
17e480f3be
chore(deps): bump swc_common from 0.28.7 to 0.28.8 in /backend ( #601 )
...
Bumps [swc_common](https://github.com/swc-project/swc ) from 0.28.7 to 0.28.8.
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/commits )
---
updated-dependencies:
- dependency-name: swc_common
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 21:05:54 +00:00
dependabot[bot]
afa24ab100
chore(deps): bump itertools from 0.10.3 to 0.10.4 in /backend ( #592 )
...
Bumps [itertools](https://github.com/rust-itertools/itertools ) from 0.10.3 to 0.10.4.
- [Release notes](https://github.com/rust-itertools/itertools/releases )
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.10.3...v0.10.4 )
---
updated-dependencies:
- dependency-name: itertools
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 20:39:40 +00:00
dependabot[bot]
ad29df6ffa
chore(deps): bump swc_ecma_ast from 0.91.3 to 0.91.7 in /backend ( #599 )
...
Bumps [swc_ecma_ast](https://github.com/swc-project/swc ) from 0.91.3 to 0.91.7.
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/commits )
---
updated-dependencies:
- dependency-name: swc_ecma_ast
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 20:27:42 +00:00
dependabot[bot]
44f3b1abab
chore(deps-dev): bump @sveltejs/adapter-static in /frontend ( #598 )
...
Bumps [@sveltejs/adapter-static](https://github.com/sveltejs/kit/tree/HEAD/packages/adapter-static ) from 1.0.0-next.42 to 1.0.0-next.43.
- [Release notes](https://github.com/sveltejs/kit/releases )
- [Changelog](https://github.com/sveltejs/kit/blob/master/packages/adapter-static/CHANGELOG.md )
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/adapter-static@1.0.0-next.43/packages/adapter-static )
---
updated-dependencies:
- dependency-name: "@sveltejs/adapter-static"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 20:10:59 +00:00
dependabot[bot]
807d2f70e7
chore(deps-dev): bump autoprefixer from 10.4.9 to 10.4.11 in /frontend ( #594 )
...
Bumps [autoprefixer](https://github.com/postcss/autoprefixer ) from 10.4.9 to 10.4.11.
- [Release notes](https://github.com/postcss/autoprefixer/releases )
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.9...10.4.11 )
---
updated-dependencies:
- dependency-name: autoprefixer
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 19:53:38 +00:00
dependabot[bot]
b90ff8928e
chore(deps): bump swc_common from 0.28.3 to 0.28.7 in /backend ( #593 )
...
Bumps [swc_common](https://github.com/swc-project/swc ) from 0.28.3 to 0.28.7.
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/commits )
---
updated-dependencies:
- dependency-name: swc_common
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 19:43:11 +00:00
dependabot[bot]
53e81b3cf7
chore(deps-dev): bump flowbite-svelte in /frontend ( #591 )
...
Bumps [flowbite-svelte](https://github.com/themesberg/flowbite-svelte ) from 0.26.18 to 0.26.25.
- [Release notes](https://github.com/themesberg/flowbite-svelte/releases )
- [Changelog](https://github.com/themesberg/flowbite-svelte/blob/main/CHANGELOG.md )
- [Commits](https://github.com/themesberg/flowbite-svelte/compare/v0.26.18...v0.26.25 )
---
updated-dependencies:
- dependency-name: flowbite-svelte
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 19:27:17 +00:00
dependabot[bot]
7f917fbcde
chore(deps): bump deno_core from 0.150.0 to 0.151.0 in /backend ( #590 )
...
Bumps [deno_core](https://github.com/denoland/deno ) from 0.150.0 to 0.151.0.
- [Release notes](https://github.com/denoland/deno/releases )
- [Changelog](https://github.com/denoland/deno/blob/main/Releases.md )
- [Commits](https://github.com/denoland/deno/commits )
---
updated-dependencies:
- dependency-name: deno_core
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 19:18:05 +00:00
dependabot[bot]
af2e05b5af
chore(deps): bump sqlx from 0.6.1 to 0.6.2 in /backend ( #589 )
...
Bumps [sqlx](https://github.com/launchbadge/sqlx ) from 0.6.1 to 0.6.2.
- [Release notes](https://github.com/launchbadge/sqlx/releases )
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md )
- [Commits](https://github.com/launchbadge/sqlx/compare/v0.6.1...v0.6.2 )
---
updated-dependencies:
- dependency-name: sqlx
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 19:06:04 +00:00
dependabot[bot]
b52e032d22
chore(deps-dev): bump svelte2tsx from 0.5.16 to 0.5.18 in /frontend ( #588 )
...
Bumps [svelte2tsx](https://github.com/sveltejs/language-tools ) from 0.5.16 to 0.5.18.
- [Release notes](https://github.com/sveltejs/language-tools/releases )
- [Commits](https://github.com/sveltejs/language-tools/compare/svelte2tsx-0.5.16...svelte2tsx-0.5.18 )
---
updated-dependencies:
- dependency-name: svelte2tsx
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-19 18:53:29 +00:00