diff --git a/.github/workflows/typo.yml b/.github/workflows/typo.yml index bcc115bca7509..bf2163cdb0299 100644 --- a/.github/workflows/typo.yml +++ b/.github/workflows/typo.yml @@ -10,4 +10,4 @@ jobs: uses: actions/checkout@v3 - name: Check spelling of the entire repository - uses: crate-ci/typos@v1.15.0 + uses: crate-ci/typos@v1.20.4 diff --git a/.typos.toml b/.typos.toml index 052a051bd1e00..c062e9de44d2d 100644 --- a/.typos.toml +++ b/.typos.toml @@ -8,9 +8,11 @@ nd = "nd" # N-dimentional / 2nd steam = "stream" # You played with Steam games too much. # Some weird short variable names ot = "ot" -bui = "bui" +bui = "bui" # BackwardUserIterator mosquitto = "mosquitto" # This is a MQTT broker. - +abd = "abd" +iy = "iy" +Pn = "Pn" [default.extend-identifiers] [files] diff --git a/Makefile.toml b/Makefile.toml index e6598e852b565..37d11266f6d60 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -100,7 +100,7 @@ skip_core_tasks = true skip_git_env_info = true skip_rust_env_info = false skip_crate_env_info = true -min_version = "0.36.10" +min_version = "0.37.1" [tasks.clean-full] category = "Misc" @@ -1132,7 +1132,7 @@ fi private = true category = "RiseDev - Check" description = "Run cargo typos-cli check" -install_crate = { min_version = "1.15.0", crate_name = "typos-cli", binary = "typos", test_arg = [ +install_crate = { min_version = "1.20.4", crate_name = "typos-cli", binary = "typos", test_arg = [ "--help", ], install_command = "binstall" } script = """ diff --git a/risedev b/risedev index 7e187fd829e73..49b3e8efff254 100755 --- a/risedev +++ b/risedev @@ -7,7 +7,7 @@ fi if [ -z "$(which cargo-make)" ]; then echo "Installing cargo-make..." - cargo binstall cargo-make --version "^0.36.10" --locked # >= 0.36.10, < 0.37.0 + cargo binstall cargo-make@~0.37 --locked fi touch risedev-components.user.env diff --git a/src/connector/src/sink/iceberg/prometheus/monitored_base_file_writer.rs b/src/connector/src/sink/iceberg/prometheus/monitored_base_file_writer.rs index daebfb5a81add..b7c04289b7590 100644 --- a/src/connector/src/sink/iceberg/prometheus/monitored_base_file_writer.rs +++ b/src/connector/src/sink/iceberg/prometheus/monitored_base_file_writer.rs @@ -81,7 +81,7 @@ impl FileWriter for MonitoredBaseFileWriter { Ok(()) } - /// Complte the write and return the list of `DataFile` as result. + /// Complete the write and return the list of `DataFile` as result. async fn close(self) -> Result> { let res = self.inner.close().await?; let delta = (res.len() - self.cur_metrics.unflush_data_file) as i64; diff --git a/src/meta/src/hummock/manager/tests.rs b/src/meta/src/hummock/manager/tests.rs index 8c6169fffa061..3b96b0ef0fa89 100644 --- a/src/meta/src/hummock/manager/tests.rs +++ b/src/meta/src/hummock/manager/tests.rs @@ -1748,7 +1748,7 @@ async fn test_split_compaction_group_trivial_expired() { .report_compact_task(task.task_id, TaskStatus::Success, vec![], None) .await .unwrap(); - // the task has been canceld + // the task has been canceled assert!(!ret); }