Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions dev/changelog/52.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

# Apache DataFusion Python 52.3.0 Changelog

This release consists of 1 commits from 1 contributors. See credits at the end of this changelog for more information.

## Credits

Thank you to everyone who contributed to this release. Here is a breakdown of commits (PRs merged) per contributor.

```
1 Tim Saucer
```

Thank you also to everyone who contributed in other ways such as filing issues, reviewing PRs, and providing feedback on this release.

4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
// under the License.

// Re-export Apache Arrow DataFusion dependencies
pub use datafusion;
pub use datafusion::{
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: ive been seeing a lot of these changes across PRs, is there something we can run for the entire repo? or configure the linter?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a change in the nightly cargo fmt, probably from the new rust release. If we do, then we'd need to turn off the group_imports and imports_granularity in rustfmt.toml. I suppose we could do that and just have it turned on in the pre-commit. That just means that any contributors who do have that turned on will end up with more formatting changes than others. Or we could take those out, but personally I think it does make the repo cleaner. What do you think?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah its already part of pre-commit (we're using cargo +nightly fmt) here

I see the change is already applied in the main branch.
We're seeing this change again because this PR targets the apache:branch-52 branch.

Ignore my comment 😄 everything looks good

common as datafusion_common, logical_expr as datafusion_expr, optimizer, sql as datafusion_sql,
self, common as datafusion_common, logical_expr as datafusion_expr, optimizer,
sql as datafusion_sql,
};
#[cfg(feature = "substrait")]
pub use datafusion_substrait;
Expand Down
Loading