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

new: Add detailed progress bars to install flows. #590

Merged
merged 10 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

- Removed `--include-global` and `--only-local` flags from all applicable commands. Use the new `--config-mode` instead.
- WASM API
- Removed the `ToolMetadataOutput.inventory.disable_progress_bars` field.
- Removed the `is_musl` function. Use the host environment instead.
- Deprecated many functions.

Expand All @@ -30,6 +31,10 @@
- When not provided, the default mode is dependent on the command being ran.
- For `activate`, `install`, `outdated`, `status` -> `upwards`
- Everything else -> `upwards-global`
- Updated `proto install` to show detailed progress bars.
- Includes downloaded bytes / total bytes stats.
- Displays the current phase of the install (download, unpack, etc).
- Displays multiple progress bars when installing many tools.
- Updated HTTP requests that occur from WASM to utilize the same HTTP client that proto does. This allows for the `[settings.http]` settings to be used, which weren't previously.
- WASM API
- Added `ToolMetadataOutput.config_schema`, which can be used to define a JSON schema for the plugins configuration.
Expand Down
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ starbase_events = { version = "0.6.3" }
starbase_sandbox = { version = "0.7.2" }
starbase_shell = { version = "0.5.5", features = ["miette"] }
starbase_styles = { version = "0.4.2" }
starbase_utils = { version = "0.8.5", default-features = false, features = [
starbase_utils = { version = "0.8.7", default-features = false, features = [
"json",
"miette",
"net",
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ comfy-table = "7.1.1"
dialoguer = "0.11.0"
dirs = { workspace = true }
indexmap = { workspace = true }
indicatif = "0.17.8"
indicatif = { version = "0.17.8", features = ["improved_unicode"] }
miette = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true, features = ["rustls-tls-native-roots"] }
Expand Down
Loading