From 772131580ef15ae9afd9d36863b727b7d272c795 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 29 Jul 2024 10:27:52 -0700 Subject: [PATCH] fix: Update plugins. --- CHANGELOG.md | 7 +++++++ crates/core/src/proto_config.rs | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d38447ac2..e5a047e2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/crates/core/src/proto_config.rs b/crates/core/src/proto_config.rs index 54caef265..18629d612 100644 --- a/crates/core/src/proto_config.rs +++ b/crates/core/src/proto_config.rs @@ -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() } ); } @@ -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() } ); }