Skip to content

Commit

Permalink
bump version code
Browse files Browse the repository at this point in the history
update telemetry data

bump version code
  • Loading branch information
tsirysndr committed Apr 3, 2024
1 parent b2d00e8 commit 00b445a
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 35 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ license = "MPL-2.0"
name = "fluentci-engine"
readme = "../../README.md"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.2.0"
version = "0.2.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
clap = "3.2.20"
extism = "1.2.0"
fluentci-core = {path = "../core", version = "0.1.4"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-server = {path = "../server", version = "0.1.5"}
fluentci-shared = {path = "../shared", version = "0.1.0"}
fluentci-server = {path = "../server", version = "0.1.6"}
fluentci-shared = {path = "../shared", version = "0.1.1"}
get-port = "4.0.0"
md5 = "0.7.0"
regex = "1.10.3"
Expand Down
6 changes: 3 additions & 3 deletions crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-common"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.0"
version = "0.1.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.81"
dirs = "5.0.1"
fluentci-core = {path = "../core", version = "0.1.4"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.1"}
fluentci-types = {path = "../types", version = "0.1.2"}
regex = "1.10.4"
sha256 = "1.5.0"
uuid = {version = "1.8.0", features = [
Expand Down
4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-core"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.4"
version = "0.1.5"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -16,7 +16,7 @@ anyhow = "1.0.81"
chrono = "0.4.35"
dirs = "5.0.1"
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.0"}
fluentci-types = {path = "../types", version = "0.1.1"}
opentelemetry = {version = "0.22.0", features = ["trace", "pin-project-lite"]}
opentelemetry-jaeger = "0.21.0"
opentelemetry-otlp = {version = "0.15.0", features = ["http-proto", "reqwest-rustls", "reqwest-client"], default-features = false}
Expand Down
16 changes: 12 additions & 4 deletions crates/core/src/deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ impl Graph {
}

let (tx, rx) = mpsc::channel();
let mut span = tracer.start_with_context(label.to_string(), &context);
let mut span = tracer.start_with_context(
format!("{} {}", label.to_string(), self.vertices[i].command.clone()),
&context,
);

span.set_attribute(KeyValue::new("command", self.vertices[i].command.clone()));

if self.vertices[i].label == "withWorkdir" {
Expand Down Expand Up @@ -232,8 +236,9 @@ impl Graph {
}
let (tx, rx) = mpsc::channel();
let label = self.vertices[i].label.clone();
let mut span = tracer.start(label);
span.set_attribute(KeyValue::new("command", self.vertices[i].command.clone()));
let command = self.vertices[i].command.clone();
let mut span = tracer.start(format!("{} {}", label, command.clone()));
span.set_attribute(KeyValue::new("command", command.clone()));

if self.vertices[i].label == "withWorkdir" {
if !Path::new(&self.vertices[i].command).exists() {
Expand Down Expand Up @@ -297,7 +302,10 @@ impl Graph {
continue;
}

let mut span = tracer.start_with_context(label.to_string(), &ctx);
let mut span = tracer.start_with_context(
format!("{} {}", label.to_string(), self.vertices[i].command.clone()),
&ctx,
);
span.set_attribute(KeyValue::new("command", self.vertices[i].command.clone()));
let (tx, rx) = mpsc::channel();
match self.vertices[i].runner.post_setup(tx) {
Expand Down
8 changes: 4 additions & 4 deletions crates/graphql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-graphql"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.5"
version = "0.1.6"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -16,10 +16,10 @@ anyhow = "1.0.80"
async-graphql = "7.0.2"
async-graphql-actix-web = "7.0.2"
dirs = "5.0.1"
fluentci-common = {path = "../common", version = "0.1.0"}
fluentci-core = {path = "../core", version = "0.1.4"}
fluentci-common = {path = "../common", version = "0.1.1"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.0"}
fluentci-types = {path = "../types", version = "0.1.1"}
regex = "1.10.3"
sha256 = "1.5.0"
tokio = "1.36.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/pdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-pdk"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.3"
version = "0.1.4"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
extism-pdk = "1.1.0"
fluentci-types = {path = "../types", version = "0.1.0"}
fluentci-types = {path = "../types", version = "0.1.1"}
serde = {version = "1.0.197", features = ["serde_derive", "derive"]}
4 changes: 2 additions & 2 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-server"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.5"
version = "0.1.6"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -17,7 +17,7 @@ actix-web = "4.5.1"
anyhow = "1.0.81"
async-graphql = "7.0.2"
async-graphql-actix-web = "7.0.2"
fluentci-core = {path = "../core", version = "0.1.4"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-graphql = {path = "../graphql", version = "0.1.5"}
mime_guess = "2.0.4"
Expand Down
8 changes: 4 additions & 4 deletions crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-shared"
repository = "https://github.com/fluentci-io/fluentci-engine"
version = "0.1.0"
version = "0.1.1"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
extism = "1.2.0"
extism-pdk = "1.1.0"
fluentci-common = {path = "../common", version = "0.1.0"}
fluentci-core = {path = "../core", version = "0.1.4"}
fluentci-common = {path = "../common", version = "0.1.1"}
fluentci-core = {path = "../core", version = "0.1.5"}
fluentci-ext = {path = "../ext", version = "0.1.4"}
fluentci-types = {path = "../types", version = "0.1.0"}
fluentci-types = {path = "../types", version = "0.1.1"}
serde = {version = "1.0.197", features = ["serde_derive", "derive"]}
uuid = {version = "1.8.0", features = [
"v4",
Expand Down
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
keywords = ["nix", "environment", "ci", "cd", "devops"]
license = "MPL-2.0"
name = "fluentci-types"
version = "0.1.1"
version = "0.1.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentci/sdk",
"version": "0.2.0",
"version": "0.2.1",
"exports": {
".": "./src/client.gen.ts",
"./plugin": "./src/plugin.ts"
Expand Down

0 comments on commit 00b445a

Please sign in to comment.