Skip to content
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
18 changes: 0 additions & 18 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,25 +88,7 @@ updates:
- "getrandom"


- package-ecosystem: "cargo"
directory: "/bin/ofs"
open-pull-requests-limit: 1
schedule:
interval: "monthly"
cooldown:
semver-patch-days: 90
include:
- "*"

- package-ecosystem: "cargo"
directory: "/bin/oli"
open-pull-requests-limit: 1
schedule:
interval: "monthly"
cooldown:
semver-patch-days: 90
include:
- "*"

- package-ecosystem: "cargo"
directory: "/integrations/dav-server"
Expand Down
51 changes: 0 additions & 51 deletions .github/workflows/ci_bin_ofs.yml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/ci_bin_oli.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ jobs:
- "integrations/fuse3"
- "integrations/unftp-sbe"
- "integrations/cloud_filter"
- "bin/oli"
- "bin/ofs" # depends on integrations/{fuse3,cloud_filter}
steps:
- uses: actions/checkout@v5
- name: Checkout python env
Expand Down
5 changes: 1 addition & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
"${workspaceFolder}/core/Cargo.toml",
"${workspaceFolder}/bindings/python/Cargo.toml",
"${workspaceFolder}/bindings/java/Cargo.toml",
"${workspaceFolder}/bindings/nodejs/Cargo.toml",
"${workspaceFolder}/bin/oli/Cargo.toml",
"${workspaceFolder}/bin/oay/Cargo.toml",
"${workspaceFolder}/bin/ofs/Cargo.toml"
"${workspaceFolder}/bindings/nodejs/Cargo.toml"
],
"java.compile.nullAnalysis.mode": "automatic",
"cmake.ignoreCMakeListsMissing": true,
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ OpenDAL's development is guided by its vision of **One Layer, All Storage** and
|| [oli] | Access data via Command Line (alternative to s3cmd, s3cli, azcopy) | [![oli image]][oli crate] |
|| [ofs] | Access data via POSIX file system API (alternative to s3fs) | [![ofs image]][ofs crate] |

[oli]: bin/oli/README.md
[oli]: https://opendal.apache.org/docs/40-apps/oli
[oli image]: https://img.shields.io/crates/v/oli.svg
[oli crate]: https://crates.io/crates/oli
[ofs]: bin/ofs/README.md
[ofs]: https://opendal.apache.org/docs/40-apps/ofs
[ofs image]: https://img.shields.io/crates/v/ofs.svg
[ofs crate]: https://crates.io/crates/ofs

Expand Down
12 changes: 1 addition & 11 deletions dev/src/release/package.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,7 @@ pub fn all_packages() -> Vec<Package> {
let parquet = make_package("integrations/parquet", "0.6.1", vec![core.clone()]);
let unftp_sbe = make_package("integrations/unftp-sbe", "0.3.1", vec![core.clone()]);

// Binaries
let ofs = make_package(
"bin/ofs",
"0.0.24",
vec![core.clone(), fuse3.clone(), cloud_filter.clone()],
);
let oli = make_package("bin/oli", "0.41.23", vec![core.clone()]);
// Binaries moved to separate repositories; no longer released from this repo

// Bindings
let c = make_package("bindings/c", "0.46.3", vec![core.clone()]);
Expand All @@ -93,8 +87,6 @@ pub fn all_packages() -> Vec<Package> {
object_store,
parquet,
unftp_sbe,
ofs,
oli,
c,
cpp,
java,
Expand All @@ -112,8 +104,6 @@ pub fn update_package_version(package: &Package) -> bool {
"integrations/object_store" => update_cargo_version(&package.path, &package.version),
"integrations/parquet" => update_cargo_version(&package.path, &package.version),
"integrations/unftp-sbe" => update_cargo_version(&package.path, &package.version),
"bin/ofs" => update_cargo_version(&package.path, &package.version),
"bin/oli" => update_cargo_version(&package.path, &package.version),

"bindings/c" => false, // C bindings has no version to update
"bindings/cpp" => false, // C++ bindings has no version to update
Expand Down
4 changes: 3 additions & 1 deletion website/docs/40-apps/oay.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ title: Oay (removed)

This tool has been removed from the Apache OpenDAL repository.

If you relied on oay, please see the release notes and migration guidance in the repository for details.
If you relied on oay, please see the migration tracking issue and release notes for details:

- Migration tracking: https://github.com/apache/opendal/issues/6689
12 changes: 6 additions & 6 deletions website/docs/40-apps/ofs.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: Ofs
title: Ofs (moved)
---

import GitHubReadme from '@site/components/GitHubReadme';
import Content from '../../../bin/ofs/README.md';
Ofs has moved to a separate repository and is no longer maintained in this repository.

<GitHubReadme basePath="bin/ofs/">
<Content components={{ h1: 'h2' }} />
</GitHubReadme>
For migration details and the latest links:

- Migration tracking: https://github.com/apache/opendal/issues/6689
- Crate: https://crates.io/crates/ofs
12 changes: 6 additions & 6 deletions website/docs/40-apps/oli.mdx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: Oli
title: Oli (moved)
---

import GitHubReadme from '@site/components/GitHubReadme';
import Content from '../../../bin/oli/README.md';
Oli has moved to a separate repository and is no longer maintained in this repository.

<GitHubReadme basePath="bin/oli/">
<Content components={{ h1: 'h2' }} />
</GitHubReadme>
For migration details and the latest links:

- Migration tracking: https://github.com/apache/opendal/issues/6689
- Crate: https://crates.io/crates/oli
Loading