Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

new: Update to new v0.47 APIs. #43

Merged
merged 6 commits into from
Feb 27, 2025
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
41 changes: 21 additions & 20 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ moon_pdk_test_utils = { version = "0.0.15" } # , path = "../moon/crates/pdk-test
moon_target = { version = "0.0.10" } # , path = "../moon/crates/target" }

# proto
proto_pdk = { version = "0.28.1" } # , path = "../../proto/crates/pdk" }
proto_pdk_api = { version = "0.27.3" } # , path = "../../proto/crates/pdk-api" }
proto_pdk_test_utils = { version = "0.35.2" } # , path = "../../proto/crates/pdk-test-utils" }
proto_pdk = { version = "0.28.3" } # , path = "../../proto/crates/pdk" }
proto_pdk_api = { version = "0.27.5" } # , path = "../../proto/crates/pdk-api" }
proto_pdk_test_utils = { version = "0.35.4" } # , path = "../../proto/crates/pdk-test-utils" }

# Node.js
nodejs_package_json = "0.3.1"
Expand Down
6 changes: 6 additions & 0 deletions backends/asdf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

#### 🚀 Updates

- Added `exec-env` experimental support. Runs as a `pre-run` hook to extract any set environment variables.
- Added `latest-stable` script support when the alias "stable" is used for a version.
- Reduced the amount of calls made for converting `/proto/backends` virtual paths into a real path.

#### 🐞 Fixes

- Ensure an executable is always returned, even if invalid.
Expand Down
1 change: 1 addition & 0 deletions backends/asdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ crate-type = ["cdylib"]
[dependencies]
extism-pdk = { workspace = true }
proto_pdk = { workspace = true }
rustc-hash = { workspace = true }
schematic = { workspace = true }
serde = { workspace = true }
starbase_utils = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion backends/asdf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Unsupported

The `latest-stable`, `exec-env`, `exec-path`, `post-*`, `pre-*`, and `help.*` asdf scripts are currently not supported by this plugin.
The `exec-path`, `post-*`, `pre-*`, and `help.*` asdf scripts are currently not supported by this plugin.

## Installation

Expand Down
Loading