Skip to content

Commit

Permalink
fix: Update plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jul 29, 2024
1 parent dbf7ef4 commit 7721315
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@

- Disabled the version check requests for `proto activate`.

#### 🧩 Plugins

- Updated `deno_plugin` to v0.11.4.
- Updated canary to find an applicable release based on the current os/arch combination.
- Updated `node_plugin` to v0.11.7.
- Updated canary to find an applicable release based on the current os/arch combination.

## 0.39.1

#### 🚀 Updates
Expand Down
4 changes: 2 additions & 2 deletions crates/core/src/proto_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ impl ProtoConfig {
self.plugins.insert(
Id::raw("deno"),
PluginLocator::Url {
url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.11.3/deno_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/deno_tool-v0.11.4/deno_tool.wasm".into()
}
);
}
Expand All @@ -249,7 +249,7 @@ impl ProtoConfig {
self.plugins.insert(
Id::raw("node"),
PluginLocator::Url {
url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.11.6/node_tool.wasm".into()
url: "https://github.com/moonrepo/tools/releases/download/node_tool-v0.11.7/node_tool.wasm".into()
}
);
}
Expand Down

0 comments on commit 7721315

Please sign in to comment.