Skip to content

Commit

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

* Second pass.

* Bump envs.

* Update deps.

* Finish blog post.

* Release visualizer.
  • Loading branch information
milesj committed Sep 25, 2023
1 parent 118ece0 commit 08d13cd
Show file tree
Hide file tree
Showing 18 changed files with 712 additions and 605 deletions.
1 change: 1 addition & 0 deletions .yarn/versions/fa0ffbe8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ releases:
'@moonrepo/core-macos-x64': minor
'@moonrepo/core-windows-x64-msvc': minor
'@moonrepo/types': patch
'@moonrepo/visualizer': patch

declined:
- '@moonrepo/report'
Expand Down
91 changes: 46 additions & 45 deletions Cargo.lock

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

15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ default-members = ["crates/cli"]
[workspace.dependencies]
async-trait = "0.1.73"
cached = "0.45.1"
chrono = { version = "0.4.28", features = ["serde"] }
ci_env = "0.2.0"
clap = { version = "4.4.2", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.4.0"
chrono = { version = "0.4.31", features = ["serde"] }
cd_env = "0.1.2"
ci_env = "0.2.1"
clap = { version = "4.4.4", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.4.1"
console = "0.15.7"
criterion = { version = "0.5.1", features = ["async_tokio"] }
miette = "5.10.0"
Expand All @@ -54,9 +55,9 @@ schematic = { version = "0.11.7", default-features = false, features = [
"type_semver",
"type_warpgate",
] }
semver = "1.0.18"
semver = "1.0.19"
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = "1.0.105"
serde_json = "1.0.107"
serde_yaml = "0.9.25"
starbase = "0.2.6"
starbase_archive = { version = "0.2.2", default-features = false, features = [
Expand All @@ -80,7 +81,7 @@ tokio = { version = "1.32.0", default-features = false, features = [
"rt-multi-thread",
"tracing",
] }
tokio-util = "0.7.8"
tokio-util = "0.7.9"
tracing = "0.1.37"
url = "2.4.1"
uuid = { version = "1.4.1", features = ["v4"] }
8 changes: 4 additions & 4 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ moon_typescript_lang = { path = "../typescript/lang" }
moon_utils = { path = "../core/utils" }
moon_vcs = { path = "../../nextgen/vcs" }
moon_workspace = { path = "../../nextgen/workspace" }
bytes = "1.4.0"
bytes = "1.5.0"
ci_env = { workspace = true }
clap = { workspace = true }
clap_complete = { workspace = true }
clap_lex = "0.5.1"
console = { workspace = true }
# console-subscriber = "0.1.8"
dialoguer = { version = "0.10.4", default-features = false }
dialoguer = { version = "0.11.0", default-features = false }
diff = "0.1.13"
indicatif = "0.17.6"
indicatif = "0.17.7"
itertools = "0.11.0"
miette = { workspace = true }
mimalloc = { version = "0.1.38", default-features = false }
mimalloc = { version = "0.1.39", default-features = false }
open = "5.0.0"
petgraph = { workspace = true }
proto_core = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/terminal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ publish = false

[dependencies]
console = { workspace = true }
dialoguer = { version = "0.10.4", default-features = false }
dialoguer = { version = "0.11.0", default-features = false }
miette = { workspace = true }
starbase_styles = { workspace = true }
4 changes: 2 additions & 2 deletions crates/core/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ moon_config = { path = "../../../nextgen/config" }
assert_cmd = "2.0.12"
assert_fs = "1.0.13"
clean-path = "0.2.1"
insta = "1.31.0"
predicates = "3.0.3"
insta = "1.32.0"
predicates = "3.0.4"
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.15.3"
cargo_toml = "0.16.2"
miette = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion nextgen/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false
moon_cache = { path = "../cache" }
moon_common = { path = "../common" }
moon_time = { path = "../time" }
cd_env = { version = "0.1.0" }
cd_env = { workspace = true }
ci_env = { workspace = true }
md5 = "0.7.0"
graphql_client = { version = "0.13.0", features = ["reqwest-rustls"] }
Expand Down
2 changes: 1 addition & 1 deletion nextgen/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ moon_app_components = { version = "0.1.0", path = "../app-components" }
moon_common = { version = "0.1.0", path = "../common" }
moon_config = { version = "0.1.0", path = "../config" }
miette = { workspace = true }
mimalloc = { version = "0.1.37", default-features = false }
mimalloc = { version = "0.1.39", default-features = false }
proto_core = { workspace = true }
semver = { workspace = true }
starbase = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion nextgen/project-graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ moon_query = { version = "0.1.0", path = "../query" }
moon_task = { version = "0.1.0", path = "../task" }
moon_task_builder = { version = "0.1.0", path = "../task-builder" }
moon_vcs = { version = "0.1.0", path = "../vcs" }
async-recursion = "1.0.4"
async-recursion = "1.0.5"
miette = { workspace = true }
once_map = { workspace = true }
petgraph = { workspace = true }
Expand Down
Loading

0 comments on commit 08d13cd

Please sign in to comment.