Skip to content

Commit d9b8ba7

Browse files
authored
Remove object_store from arrow-rs repository (#7316)
* git rm -r object_store * Remove other references to object_store
1 parent 166cc38 commit d9b8ba7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+3
-30665
lines changed

.github/dependabot.yml

-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ updates:
77
open-pull-requests-limit: 10
88
target-branch: main
99
labels: [ auto-dependencies, arrow ]
10-
- package-ecosystem: cargo
11-
directory: "/object_store"
12-
schedule:
13-
interval: daily
14-
open-pull-requests-limit: 10
15-
target-branch: main
16-
labels: [ auto-dependencies, object_store ]
1710
- package-ecosystem: "github-actions"
1811
directory: "/"
1912
schedule:

.github/workflows/dev_pr/labeler.yml

-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,3 @@ parquet:
4949
parquet-derive:
5050
- changed-files:
5151
- any-glob-to-any-file: [ 'parquet_derive/**/*' ]
52-
53-
object-store:
54-
- changed-files:
55-
- any-glob-to-any-file: [ 'object_store/**/*' ]

.github/workflows/object_store.yml

-226
This file was deleted.

.github/workflows/release.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,9 @@ jobs:
3636
- uses: actions/checkout@v4
3737
- name: Create GitHub Releases
3838
run: |
39-
case "${GITHUB_REF_NAME}" in
40-
object_store_*)
41-
version=${GITHUB_REF_NAME#object_store_}
42-
title="object_store ${version}"
43-
notes_file=object_store/CHANGELOG.md
44-
;;
45-
*)
46-
version=${GITHUB_REF_NAME}
47-
title="arrow ${version}"
48-
notes_file=CHANGELOG.md
49-
;;
50-
esac
39+
version=${GITHUB_REF_NAME}
40+
title="arrow ${version}"
41+
notes_file=CHANGELOG.md
5142
gh release create ${GITHUB_REF_NAME} \
5243
--title "${title}" \
5344
--notes-file ${notes_file} \

.github/workflows/rust.yml

-11
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,6 @@ jobs:
108108
# if this fails, run this from the parquet directory:
109109
# cargo fmt -p parquet -- --config skip_children=true `find . -name "*.rs" \! -name format.rs`
110110
cargo fmt -p parquet -- --check --config skip_children=true `find . -name "*.rs" \! -name format.rs`
111-
- name: Format object_store
112-
working-directory: object_store
113-
run: cargo fmt --all -- --check
114111
115112
msrv:
116113
name: Verify MSRV (Minimum Supported Rust Version)
@@ -123,14 +120,6 @@ jobs:
123120
uses: ./.github/actions/setup-builder
124121
- name: Install cargo-msrv
125122
run: cargo install cargo-msrv
126-
- name: Downgrade object_store dependencies
127-
working-directory: object_store
128-
# Necessary because tokio 1.30.0 updates MSRV to 1.63
129-
# and url 2.5.1, updates to 1.67
130-
run: |
131-
cargo update -p tokio --precise 1.29.1
132-
cargo update -p url --precise 2.5.0
133-
cargo update -p once_cell --precise 1.20.3
134123
- name: Downgrade arrow-pyarrow-integration-testing dependencies
135124
working-directory: arrow-pyarrow-integration-testing
136125
# Necessary because half 2.5 requires rust 1.81 or newer

Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ exclude = [
5757
# significantly changing how it is compiled within the workspace, causing the whole workspace to be compiled from
5858
# scratch this way, this is a stand-alone package that compiles independently of the others.
5959
"arrow-pyarrow-integration-testing",
60-
# object_store is excluded because it follows a separate release cycle from the other arrow crates
61-
"object_store"
6260
]
6361

6462
[workspace.package]

object_store/.github_changelog_generator

-27
This file was deleted.

0 commit comments

Comments
 (0)