Skip to content

Commit

Permalink
deps: Pin plugin versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Nov 8, 2023
1 parent e4bfcaf commit 612d5b6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@

#### 🧩 Plugins

- Updated `bun_plugin` to v0.5.
- Updated `deno_plugin` to v0.5.
- Updated `go_plugin` to v0.5.
- Updated `node_plugin` and `node_depman_plugin` to v0.5.
- Updated `python_plugin` to v0.2.
- Updated `rust_plugin` to v0.4.
- Updated `schema_plugin` (TOML) to v0.5.
- **Node**
- Updated the `npm` tool to create the `npx` shim instead of the `node` tool.
- Updated symlinked binaries to use the shell scripts instead of the source `.js` files (when applicable).
Expand Down
16 changes: 8 additions & 8 deletions crates/core/src/tools_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("bun"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/bun-plugin/releases/download/v0.5.0-alpha.1/bun_plugin.wasm".into()
url: "https://github.com/moonrepo/bun-plugin/releases/download/v0.5.0/bun_plugin.wasm".into()
}
);
}
Expand All @@ -135,7 +135,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("deno"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/deno-plugin/releases/download/v0.5.0-alpha.1/deno_plugin.wasm".into()
url: "https://github.com/moonrepo/deno-plugin/releases/download/v0.5.0/deno_plugin.wasm".into()
}
);
}
Expand All @@ -144,7 +144,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("go"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/go-plugin/releases/download/v0.5.0-alpha.1/go_plugin.wasm".into()
url: "https://github.com/moonrepo/go-plugin/releases/download/v0.5.0/go_plugin.wasm".into()
}
);
}
Expand All @@ -153,7 +153,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("node"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.5.0-alpha.1/node_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.5.0/node_plugin.wasm".into()
}
);
}
Expand All @@ -163,7 +163,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw(depman),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.5.0-alpha.1/node_depman_plugin.wasm".into()
url: "https://github.com/moonrepo/node-plugin/releases/download/v0.5.0/node_depman_plugin.wasm".into()
}
);
}
Expand All @@ -173,7 +173,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("python"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/python-plugin/releases/download/v0.2.0-alpha.1/python_plugin.wasm".into()
url: "https://github.com/moonrepo/python-plugin/releases/download/v0.2.0/python_plugin.wasm".into()
}
);
}
Expand All @@ -182,7 +182,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw("rust"),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/rust-plugin/releases/download/v0.4.0-alpha.1/rust_plugin.wasm".into()
url: "https://github.com/moonrepo/rust-plugin/releases/download/v0.4.0/rust_plugin.wasm".into()
}
);
}
Expand All @@ -191,7 +191,7 @@ impl ToolsConfig {
self.plugins.insert(
Id::raw(SCHEMA_PLUGIN_KEY),
PluginLocator::SourceUrl {
url: "https://github.com/moonrepo/schema-plugin/releases/download/v0.5.0-alpha.1/schema_plugin.wasm".into()
url: "https://github.com/moonrepo/schema-plugin/releases/download/v0.5.0/schema_plugin.wasm".into()
}
);
}
Expand Down

0 comments on commit 612d5b6

Please sign in to comment.