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

v0.46 #719

Merged
merged 7 commits into from
Feb 15, 2025
Merged

v0.46 #719

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
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,51 @@
- [Rust](https://github.com/moonrepo/plugins/blob/master/tools/rust/CHANGELOG.md)
- [Schema (TOML, JSON, YAML)](https://github.com/moonrepo/plugins/blob/master/tools/internal-schema/CHANGELOG.md)

## Unreleased

#### 💥 Breaking

- WASM API
- Removed deprecated `fetch`, `fetch_url`, `fetch_url_bytes`, `fetch_url_text`, and `fetch_url_with_cache` helper functions. Use the newer fetch functions instead.

#### 🚀 Updates

- Added `$XDG_DATA_HOME` support when detecting the proto store. Will be used if `$PROTO_HOME` is not set, and will fallback to `$HOME/.proto`.
- Added `settings.build` configuration, allowing aspects of the build from source process to be customized.
- Updated `proto install` to log checkpoints instead of rendering progress bars in a non-TTY environment.
- Updated `proto install` to support build from source when installing multiple tools.
- If the build fails, a markdown compatible log file will be written to the current directory.
- Disabled HTTP request caching when in a Docker container.
- Improved our errors implementation, rewriting some error messages, and updating error codes.
- Started on a new "backend" plugin system, allowing third-party tools to be used as proto plugins.
- For example, asdf on Unix, and scoop on Windows. This will land in the next release.
- WASM API
- Added `BuildInstruction::RemoveAllExcept` variant.
- Added `register_backend` plugin function.
- Added `fetch`, `exec`, `exec_captured`, `exec_streamed`, `get_host_env_var`, `set_host_env_var`, `add_host_paths`, `into_real_path`, and `into_virtual_path` helper functions.
- Added `generate_build_install_tests!` test macro.
- Renamed `ToolMetadataInput` to `RegisterToolInput`.
- Renamed `ToolMetadataOutput` to `RegisterToolOutput`.

#### 🧩 Plugins

- Updated `bun_tool` to v0.15.
- Updated `deno_tool` to v0.15.
- Updated `go_tool` to v0.16.
- Updated `moon_tool` v0.3.
- Updated `node_tool` to v0.16.
- Updated `node_depman_tool` to v0.15.
- Updated `python_tool` to v0.14.
- Updated `python_uv_tool` v0.2.
- Updated `ruby_tool` v0.2.
- Updated `rust_tool` to v0.13.
- Updated `schema_tool` to v0.17.

#### ⚙️ Internal

- Updated dependencies.
- Updated wasmtime to v29 (from v26).

## 0.45.2

#### 🚀 Updates
Expand Down
Loading
Loading