Skip to content

Commit 394c50b

Browse files
committed
deps: Update plugins. (#2066)
* Update docs. * chore: Release * chore: Release * Update plugins. * Update plugins.
1 parent 822f223 commit 394c50b

20 files changed

Lines changed: 83 additions & 79 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#### ⚙️ Internal
3737

3838
- Added telemetry for toolchain usage.
39+
- Added unstable support for bubbling up logs from WASM plugins.
3940
- Updated Rust to v1.88.0.
4041
- Updated proto to [v0.51.4](https://github.com/moonrepo/proto/releases/tag/v0.51.0) (from 0.50.1).
4142
- Updated dependencies.

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "moon_common"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2024"
55
license = "MIT"
66
description = "Common utilities."

crates/config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "moon_config"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2024"
55
license = "MIT"
66
description = "Core workspace, project, and moon configuration."
@@ -12,8 +12,8 @@ publish = true
1212
features = ["loader"]
1313

1414
[dependencies]
15-
moon_common = { version = "0.1.2", path = "../common" }
16-
moon_target = { version = "0.1.2", path = "../target" }
15+
moon_common = { version = "0.1.3", path = "../common" }
16+
moon_target = { version = "0.1.3", path = "../target" }
1717
indexmap = { workspace = true }
1818
miette = { workspace = true }
1919
regex = { workspace = true }

crates/config/src/toolchain_config.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,17 @@ impl ToolchainConfig {
125125

126126
match id.as_str() {
127127
"typescript" => Some(PluginLocator::Url(Box::new(UrlLocator {
128-
url: "https://github.com/moonrepo/plugins/releases/download/typescript_toolchain-v0.2.0/typescript_toolchain.wasm".into()
128+
url: "https://github.com/moonrepo/plugins/releases/download/typescript_toolchain-v0.2.1/typescript_toolchain.wasm".into()
129129
}))),
130130
"unstable_go" => Some(PluginLocator::Url(Box::new(UrlLocator {
131-
url: "https://github.com/moonrepo/plugins/releases/download/go_toolchain-v0.1.1/go_toolchain.wasm".into()
131+
url: "https://github.com/moonrepo/plugins/releases/download/go_toolchain-v0.1.3/go_toolchain.wasm".into()
132132
}))),
133133
"unstable_rust" => Some(PluginLocator::Url(Box::new(UrlLocator {
134-
url: "https://github.com/moonrepo/plugins/releases/download/rust_toolchain-v0.2.0/rust_toolchain.wasm".into()
134+
url: "https://github.com/moonrepo/plugins/releases/download/rust_toolchain-v0.2.2/rust_toolchain.wasm".into()
135135
}))),
136136
// "typescript" => Some(PluginLocator::File(Box::new(FileLocator {
137137
// file: "".into(),
138-
// path: Some("...".into()),
138+
// path: Some("target/wasm32-wasip1/release/typescript_toolchain.wasm".into()),
139139
// }))),
140140
_ => None,
141141
}

crates/config/src/workspace/plugins_config.rs renamed to crates/config/src/workspace/extensions_config.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub(crate) fn default_extensions() -> FxHashMap<Id, ExtensionConfig> {
3131
Id::raw("download"),
3232
ExtensionConfig {
3333
plugin: Some(PluginLocator::Url(Box::new(UrlLocator {
34-
url: "https://github.com/moonrepo/plugins/releases/download/download_extension-v0.0.9/download_extension.wasm".into()
34+
url: "https://github.com/moonrepo/plugins/releases/download/download_extension-v0.0.11/download_extension.wasm".into()
3535
}))),
3636
config: FxHashMap::default(),
3737
},
@@ -40,7 +40,7 @@ pub(crate) fn default_extensions() -> FxHashMap<Id, ExtensionConfig> {
4040
Id::raw("migrate-nx"),
4141
ExtensionConfig {
4242
plugin: Some(PluginLocator::Url(Box::new(UrlLocator {
43-
url: "https://github.com/moonrepo/plugins/releases/download/migrate_nx_extension-v0.0.9/migrate_nx_extension.wasm".into()
43+
url: "https://github.com/moonrepo/plugins/releases/download/migrate_nx_extension-v0.0.11/migrate_nx_extension.wasm".into()
4444
}))),
4545
config: FxHashMap::default(),
4646
},
@@ -49,7 +49,7 @@ pub(crate) fn default_extensions() -> FxHashMap<Id, ExtensionConfig> {
4949
Id::raw("migrate-turborepo"),
5050
ExtensionConfig {
5151
plugin: Some(PluginLocator::Url(Box::new(UrlLocator {
52-
url: "https://github.com/moonrepo/plugins/releases/download/migrate_turborepo_extension-v0.1.6/migrate_turborepo_extension.wasm".into()
52+
url: "https://github.com/moonrepo/plugins/releases/download/migrate_turborepo_extension-v0.1.8/migrate_turborepo_extension.wasm".into()
5353
}))),
5454
config: FxHashMap::default(),
5555
},

crates/config/src/workspace/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ mod codeowners_config;
22
mod constraints_config;
33
mod docker_config;
44
mod experiments_config;
5+
mod extensions_config;
56
mod generator_config;
67
mod hasher_config;
78
mod notifier_config;
89
mod pipeline_config;
9-
mod plugins_config;
1010
mod remote_config;
1111
mod vcs_config;
1212

1313
pub use codeowners_config::*;
1414
pub use constraints_config::*;
1515
pub use docker_config::*;
1616
pub use experiments_config::*;
17+
pub use extensions_config::*;
1718
pub use generator_config::*;
1819
pub use hasher_config::*;
1920
pub use notifier_config::*;
2021
pub use pipeline_config::*;
21-
pub use plugins_config::*;
2222
pub use remote_config::*;
2323
pub use vcs_config::*;

crates/feature-flags/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "moon_feature_flags"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2024"
55
license = "MIT"
66
description = "Manages feature flags."

crates/file-group/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "moon_file_group"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2024"
55
license = "MIT"
66
description = "File groups and collections."
@@ -9,9 +9,9 @@ repository = "https://github.com/moonrepo/moon"
99
publish = true
1010

1111
[dependencies]
12-
moon_common = { version = "0.1.2", path = "../common" }
13-
moon_config = { version = "0.1.6", path = "../config" }
14-
moon_feature_flags = { version = "0.0.3", path = "../feature-flags" }
12+
moon_common = { version = "0.1.3", path = "../common" }
13+
moon_config = { version = "0.1.7", path = "../config" }
14+
moon_feature_flags = { version = "0.0.4", path = "../feature-flags" }
1515
common-path = "1.0.0"
1616
miette = { workspace = true }
1717
serde = { workspace = true }

crates/mcp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ moon_action = { path = "../action" }
1313
moon_action_graph = { path = "../action-graph" }
1414
moon_action_pipeline = { path = "../action-pipeline" }
1515
moon_app_context = { path = "../app-context" }
16-
moon_common = { version = "0.1.2", path = "../common" }
17-
moon_project = { version = "0.1.3", path = "../project" }
18-
moon_task = { version = "0.1.2", path = "../task" }
16+
moon_common = { version = "0.1.3", path = "../common" }
17+
moon_project = { version = "0.1.4", path = "../project" }
18+
moon_task = { version = "0.1.3", path = "../task" }
1919
moon_workspace_graph = { path = "../workspace-graph" }
2020
async-trait = { workspace = true }
2121
miette = { workspace = true }

0 commit comments

Comments
 (0)