Skip to content

Commit

Permalink
new: Add v1.15 blog post. (#1106)
Browse files Browse the repository at this point in the history
* First pass.

* Second pass.

* Start on blog post.

* Finish blog post.
  • Loading branch information
milesj committed Oct 9, 2023
1 parent c0d1fd8 commit 23502e6
Show file tree
Hide file tree
Showing 13 changed files with 227 additions and 77 deletions.
96 changes: 59 additions & 37 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ cached = "0.46.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"
clap = { version = "4.4.6", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.4.3"
console = "0.15.7"
criterion = { version = "0.5.1", features = ["async_tokio"] }
miette = "5.10.0"
Expand All @@ -39,10 +39,10 @@ pathdiff = "0.2.1"
petgraph = { version = "0.6.4", default-features = false, features = [
"serde-1",
] }
proto_core = "0.19.2"
proto_core = "0.19.3"
relative-path = { version = "1.9.0", features = ["serde"] }
regex = "1.9.5"
reqwest = { version = "0.11.20", default-features = false, features = [
regex = "1.9.6"
reqwest = { version = "0.11.22", default-features = false, features = [
"rustls-tls-native-roots",
# We don't use openssl but its required for musl builds
"native-tls-vendored",
Expand All @@ -60,7 +60,7 @@ semver = "1.0.19"
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
starbase = "0.2.7"
starbase = "0.2.8"
starbase_archive = { version = "0.2.3", default-features = false, features = [
"tar-gz",
] }
Expand All @@ -75,7 +75,7 @@ starbase_utils = { version = "0.3.4", default-features = false, features = [
"yaml",
] }
tera = { version = "1.19.1", features = ["preserve_order"] }
thiserror = "1.0.48"
thiserror = "1.0.49"
tokio = { version = "1.32.0", default-features = false, features = [
"process",
"rt",
Expand Down
2 changes: 1 addition & 1 deletion crates/core/notifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ serde = { workspace = true }
serde_json = { workspace = true }
starbase_styles = { workspace = true }
tokio = { workspace = true }
uuid = { version = "1.4.1", features = ["v4"] }
uuid = { workspace = true }
2 changes: 1 addition & 1 deletion crates/core/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ moon_config = { path = "../../../nextgen/config" }
assert_cmd = "2.0.12"
assert_fs = "1.0.13"
clean-path = "0.2.1"
insta = "1.32.0"
insta = "1.33.0"
predicates = "3.0.4"
pretty_assertions = "1.4.0"
rustc-hash = { 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.16.2"
cargo_toml = "0.16.3"
miette = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion nextgen/hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ moon_config = { version = "0.1.0", path = "../config" }
miette = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = "0.10.7"
sha2 = "0.10.8"
starbase_utils = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
Expand Down
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.3"
pest_derive = "2.7.3"
pest = "2.7.4"
pest_derive = "2.7.4"
starbase_utils = { workspace = true }
thiserror = { workspace = true }
Loading

0 comments on commit 23502e6

Please sign in to comment.