Skip to content

deps(core): bump the all group across 1 directory with 3 updates #1137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Updates the requirements on petgraph, sqllogictest and object_store to permit the latest version.
Updates petgraph to 0.8.1

Release notes

Sourced from petgraph's releases.

petgraph-v0.8.1

This patch release re-adds a missing VisitMap implementation that was dropped in the 0.8.0 release, improves error messaging in panicking functions, and adds capacity management methods to UnionFind.

Bug Fixes

  • Bring back VisitMap impl for std HashSet (#764)

New Features

  • Add UnionFind capacity management methods (#736)
  • add #[track_caller] to functions that panic (#748)

Contributors

Changelog

Sourced from petgraph's changelog.

0.8.1 - 2025-04-07

This patch release re-adds a missing VisitMap implementation that was dropped in the 0.8.0 release, improves error messaging in panicking functions, and adds capacity management methods to UnionFind.

Bug Fixes

  • Bring back VisitMap impl for std HashSet (#764)

New Features

  • Add UnionFind capacity management methods (#736)
  • add #[track_caller] to functions that panic (#748)

0.8.0 - 2025-04-05

Breaking changes

  • Add no_std Support (#747)
  • Add VisitMap::unvisit as proposed in #610 (#611)
  • Add support for specifying rankdir on dot plots. (#728)
  • Make dot::Config non_exhaustive (#756)
  • Add from_f32/64 methods for Float, Unit, and Bounded measures (#733)

New algorithms

  • Add articulation points implementation (#681)
  • Add Prim's Algorithm for Minimum Spanning Tree (#625)
  • Add Kou's algorithm for finding a MST (#682)
  • Add Bron-Kerbosch algorithm for maximal cliques (#662)
  • Add Shortest Path Faster Algorithm Implementation (#686)

New features

  • Add UnionFind::new_set (#684)
  • Implement Csr::try_add_edge (#719)
  • Add checked UnionFind methods (#730)
  • Add MatrixGraph methods with recoverable errors (#720)
  • Add methods with recoverable errors for Graph and StableGraph (#718)

CI & fixes

  • Fix all clippy lints and check them on CI (#726)
  • Pin once_cell version for MSRV builds (#750)
  • Require conventional commits tag in PR titles (#734)
  • Fix wrong trigger for pr-title check (#751)
  • Solve clippy warnings (#749)
  • Fix github token in pr-title action (#752)
  • Add new triggers for semver-checks (#754)

... (truncated)

Commits
  • 305a5b2 chore: release v0.8.1 (#762)
  • 8ca4ab2 fix: Bring back VisitMap impl for std HashSet (#764)
  • 4d30c42 ci: Disable semver-checks lints with false positives (#765)
  • ba115d8 feat: add #[track_caller] to functions that panic (#748)
  • c69b94a feat: Add UnionFind capacity management methods (#736)
  • 2678994 ci: Enable automatic CHANGELOG generation (#761)
  • 5f5791c feat!: Release 0.8.0 (#753)
  • 1f611f8 ci: Use release-plz for automated changelog generation and publication (#735)
  • 3145fa8 fix!: Correct typing for steiner_tree (#759)
  • 0038703 docs: Add some missed features into crate-lvl doc (#758)
  • Additional commits viewable in compare view

Updates sqllogictest to 0.28.0

Release notes

Sourced from sqllogictest's releases.

v0.28.0

[0.28.0] - 2025-03-06

  • runner: Add Partitioner and Runner::with_partitioner to enable partitioning of test cases, allowing only a subset of the glob result to be executed. This can be helpful for running tests in parallel in CI.
  • bin: Add --partition-id and --partition-count to set a hash partitioning for the test cases. If users are running in Buildkite CI with parallelism: .. specified in the workflow file, this will be automatically configured.
Changelog

Sourced from sqllogictest's changelog.

[0.28.0] - 2025-03-06

  • runner: Add Partitioner and Runner::with_partitioner to enable partitioning of test cases, allowing only a subset of the glob result to be executed. This can be helpful for running tests in parallel in CI.
  • bin: Add --partition-id and --partition-count to set a hash partitioning for the test cases. If users are running in Buildkite CI with parallelism: .. specified in the workflow file, this will be automatically configured.

[0.27.2] - 2025-02-18

  • engines/bin: fix stdin to be closed properly to avoid hangs in the external engine.

[0.27.1] - 2025-02-17

  • runner: Add Runner::set_var method to allow adding runner-local variables for substitution.
  • bin: Add __DATABASE__ variable for accessing current database name from SLT files.

[0.27.0] - 2025-02-11

  • runner: add shutdown method to DB and AsyncDB trait to allow for graceful shutdown of the database connection. Users are encouraged to call Runner::shutdown or Runner::shutdown_async after running tests to ensure that the database connections are properly closed.

[0.26.4] - 2025-01-27

  • runner: add random string in path generation to avoid conflict when using include.
  • bin: detect connection refused error and exit early to make error message clearer.

[0.26.3] - 2025-01-14

  • bin: when --fail-fast is enabled, abort all remaining connections before dropping temporary databases.

[0.26.2] - 2025-01-08

  • bin: support --fail-fast, and add env vars SLT_FAIL_FAST and SLT_KEEP_DB_ON_FAILURE

[0.26.1] - 2025-01-08

  • parser/runner: support system ok retry

[0.26.0] - 2025-01-06

  • parser: Add back label support, which was removed in 0.25.0.
  • parser/runner: support [statement|query] error retry (Only support multi-line error message)

[0.25.0] - 2024-12-26

  • runner: Add retry clause to statement ok and query ok|error.

[0.24.0] - 2024-12-20

  • runner: Added a Normalizer type for normalizing result values. A new function with_normalizer(normalizer: Normalizer) has been added to the Runner to allow for specifying a custom Normalizer. The existing default normalizer is available via the runner::default_normalizer(..) function.

... (truncated)

Commits
  • 04a9598 feat(runner, bin): support test case partitioning (#257)
  • a1e6957 fix(bin): fix incorrect "skipping" message (#256)
  • 6660c7a fix(external): close stdin properly in shutdown() (#255)
  • 3a603d7 ci: cargo publish on tag (#254)
  • 2003b1a feat: support local variable substitution, add __DATABASE__ variable for bi...
  • 89d0d3c feat: add shutdown method to AsyncDB DB and Runner (#250)
  • See full diff in compare view

Updates object_store to 0.12.0

Release notes

Sourced from object_store's releases.

object_store 0.12.0

Changelog

object_store_0.12.0 (2025-03-05)

Full Changelog

Breaking changes:

Implemented enhancements:

Fixed bugs:

... (truncated)

Changelog

Sourced from object_store's changelog.

Historical Changelog

54.3.0 (2025-03-17)

Full Changelog

Implemented enhancements:

  • Using column chunk offset index in InMemoryRowGroup::fetch #7300
  • Support reading parquet with modular encryption #7296 [parquet]
  • Add example for how to read/write encrypted parquet files #7281 [parquet]
  • Have writer return parsed ParquetMetadata #7254 [parquet]
  • feat: Support Utf8View in JSON reader #7244 [arrow]
  • StructBuilder should provide a way to get a &dyn ArrayBuilder of a field builder #7193 [arrow]
  • Support div_wrapping/rem_wrapping for numeric arithmetic kernels #7158 [arrow]
  • Improve RleDecoder performance #7195 [parquet] (Dandandan)
  • Improve arrow-json deserialization performance by 30% #7157 [arrow] (mwylde)
  • Add with_skip_validation flag to IPC StreamReader, FileReader and FileDecoder #7120 [arrow] (alamb)

Fixed bugs:

  • Archery integration CI test is failing on main: error: package half v2.5.0 cannot be built because it requires rustc 1.81 or newer, while the currently active rustc version is 1.77.2 #7291
  • MSRV CI check is failing on main #7289
  • Incorrect IPC schema encoding for multiple dictionaries #7058 [arrow] [arrow-flight]

Documentation updates:

... (truncated)

Commits

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 commands and options

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added core dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 7, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/wren-core/all-9568075e9a branch 2 times, most recently from ffad440 to 2d73c84 Compare April 14, 2025 19:17
Copy link

coderabbitai bot commented Apr 14, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@dependabot dependabot bot force-pushed the dependabot/cargo/wren-core/all-9568075e9a branch from 2d73c84 to 0debe4c Compare April 21, 2025 18:34
@dependabot dependabot bot force-pushed the dependabot/cargo/wren-core/all-9568075e9a branch 2 times, most recently from 2e71658 to caa1ded Compare May 5, 2025 18:51
@dependabot dependabot bot force-pushed the dependabot/cargo/wren-core/all-9568075e9a branch from caa1ded to dcb7c2e Compare May 12, 2025 18:13
Updates the requirements on [petgraph](https://github.com/petgraph/petgraph), [sqllogictest](https://github.com/risinglightdb/sqllogictest-rs) and [object_store](https://github.com/apache/arrow-rs) to permit the latest version.

Updates `petgraph` to 0.8.1
- [Release notes](https://github.com/petgraph/petgraph/releases)
- [Changelog](https://github.com/petgraph/petgraph/blob/master/CHANGELOG.md)
- [Commits](https://github.com/petgraph/petgraph/compare/[email protected]@v0.8.1)

Updates `sqllogictest` to 0.28.0
- [Release notes](https://github.com/risinglightdb/sqllogictest-rs/releases)
- [Changelog](https://github.com/risinglightdb/sqllogictest-rs/blob/main/CHANGELOG.md)
- [Commits](risinglightdb/sqllogictest-rs@v0.26.4...v0.28.0)

Updates `object_store` to 0.12.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs@object_store_0.11.0...object_store_0.12.0)

---
updated-dependencies:
- dependency-name: petgraph
  dependency-version: 0.8.1
  dependency-type: direct:production
  dependency-group: all
- dependency-name: sqllogictest
  dependency-version: 0.28.0
  dependency-type: direct:production
  dependency-group: all
- dependency-name: object_store
  dependency-version: 0.12.0
  dependency-type: direct:production
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/wren-core/all-9568075e9a branch from dcb7c2e to 1acffce Compare May 19, 2025 19:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants