Skip to content

Remove object_store from arrow-rs repository #7316

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

Merged
merged 2 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 0 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ updates:
open-pull-requests-limit: 10
target-branch: main
labels: [ auto-dependencies, arrow ]
- package-ecosystem: cargo
directory: "/object_store"
schedule:
interval: daily
open-pull-requests-limit: 10
target-branch: main
labels: [ auto-dependencies, object_store ]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/dev_pr/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,3 @@ parquet:
parquet-derive:
- changed-files:
- any-glob-to-any-file: [ 'parquet_derive/**/*' ]

object-store:
- changed-files:
- any-glob-to-any-file: [ 'object_store/**/*' ]
226 changes: 0 additions & 226 deletions .github/workflows/object_store.yml

This file was deleted.

15 changes: 3 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,9 @@ jobs:
- uses: actions/checkout@v4
- name: Create GitHub Releases
run: |
case "${GITHUB_REF_NAME}" in
object_store_*)
version=${GITHUB_REF_NAME#object_store_}
title="object_store ${version}"
notes_file=object_store/CHANGELOG.md
;;
*)
version=${GITHUB_REF_NAME}
title="arrow ${version}"
notes_file=CHANGELOG.md
;;
esac
version=${GITHUB_REF_NAME}
title="arrow ${version}"
notes_file=CHANGELOG.md
gh release create ${GITHUB_REF_NAME} \
--title "${title}" \
--notes-file ${notes_file} \
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,6 @@ jobs:
# if this fails, run this from the parquet directory:
# cargo fmt -p parquet -- --config skip_children=true `find . -name "*.rs" \! -name format.rs`
cargo fmt -p parquet -- --check --config skip_children=true `find . -name "*.rs" \! -name format.rs`
- name: Format object_store
working-directory: object_store
run: cargo fmt --all -- --check

msrv:
name: Verify MSRV (Minimum Supported Rust Version)
Expand All @@ -123,14 +120,6 @@ jobs:
uses: ./.github/actions/setup-builder
- name: Install cargo-msrv
run: cargo install cargo-msrv
- name: Downgrade object_store dependencies
working-directory: object_store
# Necessary because tokio 1.30.0 updates MSRV to 1.63
# and url 2.5.1, updates to 1.67
run: |
cargo update -p tokio --precise 1.29.1
cargo update -p url --precise 2.5.0
cargo update -p once_cell --precise 1.20.3
- name: Downgrade arrow-pyarrow-integration-testing dependencies
working-directory: arrow-pyarrow-integration-testing
# Necessary because half 2.5 requires rust 1.81 or newer
Expand Down
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ exclude = [
# significantly changing how it is compiled within the workspace, causing the whole workspace to be compiled from
# scratch this way, this is a stand-alone package that compiles independently of the others.
"arrow-pyarrow-integration-testing",
# object_store is excluded because it follows a separate release cycle from the other arrow crates
"object_store"
]

[workspace.package]
Expand Down
27 changes: 0 additions & 27 deletions object_store/.github_changelog_generator

This file was deleted.

Loading
Loading