Skip to content

Commit

Permalink
docs: Add v1.20 blog post. (#1289)
Browse files Browse the repository at this point in the history
* First pass.

* Add optional docs.

* Finish blog post.

* Add image.
  • Loading branch information
milesj committed Jan 26, 2024
1 parent 39c2ca3 commit 084442c
Show file tree
Hide file tree
Showing 18 changed files with 186 additions and 222 deletions.
162 changes: 23 additions & 139 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default-members = ["crates/cli"]
[workspace.dependencies]
async-trait = "0.1.77"
cached = "0.48.1"
chrono = { version = "0.4.32", features = ["serde"] }
chrono = { version = "0.4.33", features = ["serde"] }
cd_env = "0.1.2"
ci_env = "0.2.1"
clap = { version = "4.4.18", default-features = false, features = [
Expand Down
4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ moon_cache = { path = "../../nextgen/cache" }
moon_notifier = { path = "../core/notifier" }
moon_runner = { path = "../core/runner" }
moon_test_utils = { path = "../core/test-utils" }
httpmock = "0.6.8"
serial_test = "2.0.0"
httpmock = "0.7.0"
serial_test = "3.0.0"
starbase_archive = { workspace = true }
6 changes: 3 additions & 3 deletions crates/core/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ publish = false
[dependencies]
moon_common = { path = "../../../nextgen/common" }
moon_config = { path = "../../../nextgen/config" }
assert_cmd = "2.0.12"
assert_fs = "1.1.0"
assert_cmd = "2.0.13"
assert_fs = "1.1.1"
clean-path = "0.2.1"
insta = "1.34.0"
predicates = "3.0.4"
predicates = "3.1.0"
pretty_assertions = "1.4.0"
rustc-hash = { workspace = true }
serde_yaml = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rust/lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ moon_lang = { path = "../../core/lang" }
moon_logger = { path = "../../core/logger" }
cached = { workspace = true }
cargo-lock = "9.0.0"
cargo_toml = "0.17.2"
cargo_toml = "0.18.0"
miette = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rust/lang/src/cargo_toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl CargoTomlExt for CargoToml {
optional: data.optional,
..DependencyDetail::default()
},
Dependency::Detailed(detail) => detail.to_owned(),
Dependency::Detailed(detail) => (**detail).to_owned(),
})
}

Expand Down
2 changes: 1 addition & 1 deletion nextgen/cache-item/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ starbase_utils = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
serial_test = "2.0.0"
serial_test = "3.0.0"
starbase_sandbox = { workspace = true }
2 changes: 1 addition & 1 deletion nextgen/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ serde_yaml = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
httpmock = "0.6.8"
httpmock = "0.7.0"
starbase_sandbox = { workspace = true }
4 changes: 2 additions & 2 deletions nextgen/query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/moonrepo/moon"
moon_common = { version = "0.1.0", path = "../common" }
moon_config = { version = "0.1.0", path = "../config" }
miette = { workspace = true }
pest = "2.7.5"
pest_derive = "2.7.5"
pest = "2.7.6"
pest_derive = "2.7.6"
starbase_utils = { workspace = true }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion nextgen/vcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ moon_common = { version = "0.1.0", path = "../common" }
moon_process = { version = "0.1.0", path = "../process" }
async-trait = { workspace = true }
git-url-parse = "0.4.4"
ignore = "0.4.21"
ignore = "0.4.22"
miette = { workspace = true }
once_cell = { workspace = true }
once_map = { workspace = true }
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
- Added a `taskOptions` setting to `.moon` task configs, allowing default task options to be
defined.
- These options will be merged and inherited as part of the configuration chain.
- Added an `optional` field to task `deps`, allowing the dependency to be optional during
inheritance.
- Updated proto installation to trigger for all applicable commands, not just `moon run`,
`moon check`, and `moon ci`.
- Will also use the global proto version if available when there's no internet connection, and the
Expand Down
Loading

0 comments on commit 084442c

Please sign in to comment.