Skip to content

Commit

Permalink
Merge branch 'main' into gil/faster-mutation-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gil Mizrahi authored Nov 28, 2023
2 parents 211e729 + 4d7d190 commit 1c66aed
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 36 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
with:
status: ${{ job.status }}
notify_when: failure
notification_title: "${{ github.event.commits[0].author.name }}, *nap time is over*! The following commit to <{repo_url}|{repo}> broke the end-to-end tests:"
message_format: "${{ github.event.commits[0].message }}"
notification_title: "${{ github.actor }}, *nap time is over*! The following commit to <{repo_url}|{repo}> broke the end-to-end tests:"
message_format: "${{ github.event.head_commit.message }}"
env:
SLACK_WEBHOOK_URL: ${{ secrets.BROKEN_E2E_SLACK_WEBHOOK_URL }}
85 changes: 58 additions & 27 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions crates/connectors/ndc-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ query-engine-sql = { path = "../../query-engine/sql" }
query-engine-translation = { path = "../../query-engine/translation" }

async-trait = "0.1.74"
percent-encoding = "2.3.0"
percent-encoding = "2.3.1"
prometheus = "0.13.3"
schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] }
serde = "1.0.192"
serde = "1.0.193"
serde_json = { version = "1.0.108", features = ["raw_value"] }
sqlx = { version = "0.7.2", features = [ "json", "postgres", "runtime-tokio-rustls" ] }
sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] }
thiserror = "1.0"
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/query-engine/execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ query-engine-sql = { path = "../sql" }
prometheus = "0.13.3"
serde_json = "1.0.108"
sqlformat = "0.2.2"
sqlx = { version = "0.7.2", features = [ "json", "postgres", "runtime-tokio-rustls", "uuid" ] }
sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls", "uuid" ] }
tracing = "0.1.40"
bytes = "1.5.0"
2 changes: 1 addition & 1 deletion crates/query-engine/metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ license = "Apache-2.0"

[dependencies]
schemars = { version = "0.8.16", features = ["smol_str"] }
serde = { version = "1.0.192", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] }
4 changes: 2 additions & 2 deletions crates/tests/tests-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ hyper = { version = "0.14.27", features = ["tcp"] }
jsonschema = { version = "0.17.1", default-features = false, features = ["resolve-http"] }
reqwest = "0.11.22"
schemars = { version = "0.8.16", features = ["smol_str", "preserve_order"] }
serde = "1.0.192"
serde = "1.0.193"
serde_derive = "^1.0"
serde_json = { version = "1.0.108", features = ["raw_value"] }
similar-asserts = "1.5.0"
sqlx = { version = "0.7.2", features = [ "json", "postgres", "runtime-tokio-rustls" ] }
sqlx = { version = "0.7.3", features = [ "json", "postgres", "runtime-tokio-rustls" ] }
tokio = { version = "1.34.0", features = ["full"] }
tokio-postgres = "0.7.10"
tracing = "0.1.40"
Expand Down

0 comments on commit 1c66aed

Please sign in to comment.