Skip to content

Commit 8a2acd0

Browse files
chore(deps): bump ctor from 0.10.1 to 1.0.1 (apache#22023)
Bumps [ctor](https://github.com/mmastrac/linktime) from 0.10.1 to 1.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mmastrac/linktime/releases">ctor's releases</a>.</em></p> <blockquote> <h2>ctor-1.0.1</h2> <h2>What's Changed</h2> <ul> <li>Fix duplicated ctor calls in WASM <a href="https://redirect.github.com/mmastrac/linktime/pull/422">mmastrac/linktime#422</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mmastrac/linktime/compare/ctor-1.0.0...ctor-1.0.1">https://github.com/mmastrac/linktime/compare/ctor-1.0.0...ctor-1.0.1</a></p> <h2>ctor-1.0.0</h2> <h2>What's Changed</h2> <ul> <li>Cleanup pass on build scripts by <a href="https://github.com/mmastrac"><code>@​mmastrac</code></a> in <a href="https://redirect.github.com/mmastrac/linktime/pull/416">mmastrac/linktime#416</a></li> <li>Release 1.0 (🎉) by <a href="https://github.com/mmastrac"><code>@​mmastrac</code></a> in <a href="https://redirect.github.com/mmastrac/linktime/pull/414">mmastrac/linktime#414</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mmastrac/linktime/compare/ctor-0.13.1...ctor-1.0.0">https://github.com/mmastrac/linktime/compare/ctor-0.13.1...ctor-1.0.0</a></p> <h2>ctor-0.13.1</h2> <p>No release notes provided.</p> <h2>ctor-0.13.0</h2> <p>No release notes provided.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mmastrac/linktime/commits/ctor-1.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ctor&package-manager=cargo&previous-version=0.10.1&new-version=1.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
1 parent 1a934d1 commit 8a2acd0

14 files changed

Lines changed: 24 additions & 40 deletions

File tree

Cargo.lock

Lines changed: 11 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ bytes = "1.11"
118118
bzip2 = "0.6.1"
119119
chrono = { version = "0.4.44", default-features = false }
120120
criterion = "0.8"
121-
ctor = "0.10.0"
121+
ctor = "1.0.1"
122122
dashmap = "6.0.1"
123123
datafusion = { path = "datafusion/core", version = "53.1.0", default-features = false }
124124
datafusion-catalog = { path = "datafusion/catalog", version = "53.1.0" }

datafusion-cli/tests/cli_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async fn setup_minio_container() -> Result<ContainerAsync<minio::MinIO>, String>
121121
}
122122

123123
#[cfg(test)]
124-
#[ctor::ctor]
124+
#[ctor::ctor(unsafe)]
125125
fn init() {
126126
// Enable RUST_LOG logging configuration for tests
127127
let _ = env_logger::try_init();

datafusion/core/tests/core_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ mod tracing;
6464
mod extension_types;
6565

6666
#[cfg(test)]
67-
#[ctor::ctor]
67+
#[ctor::ctor(unsafe)]
6868
fn init() {
6969
// Enable RUST_LOG logging configuration for test
7070
let _ = env_logger::try_init();

datafusion/core/tests/fuzz.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
mod fuzz_cases;
2323

2424
#[cfg(test)]
25-
#[ctor::ctor]
25+
#[ctor::ctor(unsafe)]
2626
fn init() {
2727
// Enable RUST_LOG logging configuration for test
2828
let _ = env_logger::try_init();

datafusion/core/tests/memory_limit/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ use futures::StreamExt;
6363
use tokio::fs::File;
6464

6565
#[cfg(test)]
66-
#[ctor::ctor]
66+
#[ctor::ctor(unsafe)]
6767
fn init() {
6868
// Enable RUST_LOG logging configuration for test
6969
let _ = env_logger::try_init();

datafusion/core/tests/optimizer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ use datafusion_expr::expr_rewriter::rewrite_with_guarantees;
4747
use datafusion_functions::datetime;
4848

4949
#[cfg(test)]
50-
#[ctor::ctor]
50+
#[ctor::ctor(unsafe)]
5151
fn init() {
5252
// enable logging so RUST_LOG works
5353
let _ = env_logger::try_init();

datafusion/core/tests/parquet/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ mod schema_coercion;
6060
mod utils;
6161

6262
#[cfg(test)]
63-
#[ctor::ctor]
63+
#[ctor::ctor(unsafe)]
6464
fn init() {
6565
// Enable RUST_LOG logging configuration for test
6666
let _ = env_logger::try_init();

datafusion/core/tests/user_defined_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
mod user_defined;
2020

2121
#[cfg(test)]
22-
#[ctor::ctor]
22+
#[ctor::ctor(unsafe)]
2323
fn init() {
2424
// Enable RUST_LOG logging configuration for test
2525
let _ = env_logger::try_init();

datafusion/expr/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pub use udwf::{LimitEffect, ReversedUDWF, WindowUDF, WindowUDFImpl};
139139
pub use window_frame::{WindowFrame, WindowFrameBound, WindowFrameUnits};
140140

141141
#[cfg(test)]
142-
#[ctor::ctor]
142+
#[ctor::ctor(unsafe)]
143143
fn init() {
144144
// Enable RUST_LOG logging configuration for test
145145
let _ = env_logger::try_init();

0 commit comments

Comments
 (0)