Skip to content

Commit

Permalink
chore: trim incubator prefix everywhere (#4016)
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun authored Jan 19, 2024
1 parent 33174bd commit 7045ddd
Show file tree
Hide file tree
Showing 151 changed files with 1,431 additions and 1,435 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

# This is a place holder for all committers who what to join the review of not owned code.
#
# More details could be found at <https://github.com/apache/incubator-opendal/issues/3967>
# More details could be found at <https://github.com/apache/opendal/issues/3967>
COMMITTERS_PLACEHOLDER @Xuanwo @Ji-Xinyou @morristai @dqhl76 @ClSlaid @Young-Flash @G-XD @oowl @silver-ymz
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
run: |
# Disable full debug symbol generation to speed up CI build and keep memory down
# "1" means line tables only, which is useful for panic tracebacks.
# About `force-frame-pointers`, here's the discussion history: https://github.com/apache/incubator-opendal/issues/3756
# About `force-frame-pointers`, here's the discussion history: https://github.com/apache/opendal/issues/3756
echo "RUSTFLAGS=-C force-frame-pointers=yes -C debuginfo=1" >> $GITHUB_ENV
# Enable backtraces
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/behavior_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Handle event-specific logic
if [ "$event_name" == "push" ]; then
if [ "$repository" == "apache/incubator-opendal" ]; then
if [ "$repository" == "apache/opendal" ]; then
is_push="true"
has_secrets="true"
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bindings_php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
name: Bindings PHP CI

on:
# Disable PHP build until https://github.com/apache/incubator-opendal/issues/3055 addressed
# Disable PHP build until https://github.com/apache/opendal/issues/3055 addressed
#
# push:
# branches:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Cargo clippy
# FIXME
# remove `-exclude opendal-php` after https://github.com/apache/incubator-opendal/issues/3055 addressed
# remove `-exclude opendal-php` after https://github.com/apache/opendal/issues/3055 addressed
run: cargo clippy --all-targets --all-features --workspace --exclude opendal-php -- -D warnings

- name: Check diff
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
# services-rocksdb
services-s3
services-seafile
# TODO: sftp is known to not work on windows, waiting for https://github.com/apache/incubator-opendal/issues/2963
# TODO: sftp is known to not work on windows, waiting for https://github.com/apache/opendal/issues/2963
# services-sftp
services-sled
services-swift
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: apache/incubator-opendal
repository: apache/opendal
ref: ${{ inputs.ref }}
- name: Set up JDK 8
uses: actions/setup-java@v4
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ dist/
# env files for backends
.env

incubator-opendal-release-verify

# profiling
flamegraph.svg
perf.*
Expand Down
2,022 changes: 1,011 additions & 1,011 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors:
email: [email protected]
identifiers:
- type: url
value: 'https://github.com/apache/incubator-opendal'
repository-code: 'https://github.com/apache/incubator-opendal'
value: 'https://github.com/apache/opendal'
repository-code: 'https://github.com/apache/opendal'
url: 'https://opendal.apache.org/'
license: Apache-2.0
33 changes: 17 additions & 16 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,24 @@

First, thank you for contributing to OpenDAL! The goal of this document is to provide everything you need to start contributing to OpenDAL. The following TOC is sorted progressively, starting with the basics and expanding into more specifics.

- [Your First Contribution](#your-first-contribution)
- [Workflow](#workflow)
- [Git Branches](#git-branches)
- [GitHub Pull Requests](#github-pull-requests)
- [Title](#title)
- [Reviews & Approvals](#reviews--approvals)
- [Merge Style](#merge-style)
- [Contributing](#contributing)
- [Your First Contribution](#your-first-contribution)
- [Workflow](#workflow)
- [Git Branches](#git-branches)
- [GitHub Pull Requests](#github-pull-requests)
- [Title](#title)
- [Reviews \& Approvals](#reviews--approvals)
- [Merge Style](#merge-style)
- [CI](#ci)
- [Setup](#setup)
- [Using a dev container environment](#using-a-dev-container-environment)
- [Bring your own toolbox](#bring-your-own-toolbox)
- [Code of Conduct](#code-of-conduct)
- [Setup](#setup)
- [Using a dev container environment](#using-a-dev-container-environment)
- [Bring your own toolbox](#bring-your-own-toolbox)
- [Code of Conduct](#code-of-conduct)

## Your First Contribution

1. Ensure your change has an issue! Find an [existing issue](https://github.com/apache/incubator-opendal/issues) or [open a new issue](https://github.com/apache/incubator-opendal/issues/new).
1. [Fork the OpenDAL repository](https://github.com/apache/incubator-opendal/fork) in your own GitHub account.
1. Ensure your change has an issue! Find an [existing issue](https://github.com/apache/opendal/issues) or [open a new issue](https://github.com/apache/opendal/issues/new).
1. [Fork the OpenDAL repository](https://github.com/apache/opendal/fork) in your own GitHub account.
1. [Create a new Git branch](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository).
1. Make your changes.
1. [Submit the branch as a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) to the main OpenDAL repo. An OpenDAL team member should comment and/or review your pull request within a few days. Although, depending on the circumstances, it may take longer.
Expand All @@ -31,7 +32,7 @@ First, thank you for contributing to OpenDAL! The goal of this document is to pr

### GitHub Pull Requests

Once your changes are ready you must submit your branch as a [pull request](https://github.com/apache/incubator-opendal/pulls).
Once your changes are ready you must submit your branch as a [pull request](https://github.com/apache/opendal/pulls).

#### Title

Expand All @@ -56,7 +57,7 @@ All pull requests should be reviewed by at least one OpenDAL committer.
All pull requests are squash merged.
We generally discourage large pull requests that are over 300–500 lines of diff.
If you would like to propose a change that is larger, we suggest
coming onto our [Discussions](https://github.com/apache/incubator-opendal/discussions) and discussing it with us.
coming onto our [Discussions](https://github.com/apache/opendal/discussions) and discussing it with us.
This way we can talk through the solution and discuss if a change that large is even needed!
This will produce a quicker response to the change and likely produce code that aligns better with our process.

Expand All @@ -78,7 +79,7 @@ Please pick up your favourite runtime environment.

The fastest way is:

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/incubator-opendal?quickstart=1&machine=standardLinux32gb)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/opendal?quickstart=1&machine=standardLinux32gb)

### Bring your own toolbox

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ members = [
resolver = "2"

[workspace.package]
authors = ["OpenDAL Contributors <[email protected]>"]
authors = ["Apache OpenDAL <[email protected]>"]
edition = "2021"
homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/incubator-opendal"
repository = "https://github.com/apache/opendal"
rust-version = "1.67"
version = "0.44.1"

Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache OpenDAL (Incubating)
Apache OpenDAL
Copyright 2023-2024 The Apache Software Foundation

This product includes software developed at
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**OpenDAL** is a data access layer that allows users to easily and efficiently retrieve data from various storage services in a unified way.

![OpenDAL Architectural](https://github.com/apache/incubator-opendal/assets/5351546/c81013b2-5455-4950-9d31-dbf272b07998)
![OpenDAL Architectural](https://github.com/apache/opendal/assets/5351546/c81013b2-5455-4950-9d31-dbf272b07998)

Major components of the project include:

Expand Down Expand Up @@ -98,7 +98,7 @@ Major components of the project include:

</details>

> Welcome to add any services that are not currently supported [here](https://github.com/apache/incubator-opendal/issues/5).
> Welcome to add any services that are not currently supported [here](https://github.com/apache/opendal/issues/5).
## Examples

Expand All @@ -113,9 +113,9 @@ The documentation is available at <https://opendal.apache.org>.
OpenDAL is an active open-source project. We are always open to people who want to use it or contribute to it. Here are some ways to go.

- Start with [Contributing Guide](CONTRIBUTING.md).
- Submit [Issues](https://github.com/apache/incubator-opendal/issues/new) for bug report or feature requests.
- Submit [Issues](https://github.com/apache/opendal/issues/new) for bug report or feature requests.
- Discuss at [dev mailing list](mailto:[email protected]) ([subscribe](mailto:[email protected]?subject=(send%20this%20email%20to%20subscribe)) / [unsubscribe](mailto:[email protected]?subject=(send%20this%20email%20to%20unsubscribe)) / [archives](https://lists.apache.org/[email protected]))
- Asking questions in the [Discussions](https://github.com/apache/incubator-opendal/discussions/new?category=q-a).
- Asking questions in the [Discussions](https://github.com/apache/opendal/discussions/new?category=q-a).
- Talk to community directly at [Discord](https://discord.gg/XQy8yGR2dg).

## Who is using OpenDAL?
Expand Down
2 changes: 1 addition & 1 deletion bin/oli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Contribution is not only about code, but also about documentation, examples, and

If you have any questions or suggestions about `oli`, please feel free to open an issue on GitHub.

As `oli` is a part of Apache OpenDAL, you should follow the [CONTRIBUTION](https://github.com/apache/incubator-opendal/blob/main/CONTRIBUTING.md) documentation. There are still lots works to do with `oli`, you could track them on this [GitHub Issue](https://github.com/apache/incubator-opendal/issues/422).
As `oli` is a part of Apache OpenDAL, you should follow the [CONTRIBUTION](https://github.com/apache/opendal/blob/main/CONTRIBUTING.md) documentation. There are still lots works to do with `oli`, you could track them on this [GitHub Issue](https://github.com/apache/opendal/issues/422).

## License and Trademarks

Expand Down
16 changes: 8 additions & 8 deletions bindings/c/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Contributing

1. [Contributing](#contributing)
1. [Setup](#setup)
1. [Using a dev container environment](#using-a-dev-container-environment)
2. [Bring your own toolbox](#bring-your-own-toolbox)
2. [Build](#build)
3. [Test](#test)
4. [Documentation](#documentation)
- [Contributing](#contributing)
- [Setup](#setup)
- [Using a dev container environment](#using-a-dev-container-environment)
- [Bring your own toolbox](#bring-your-own-toolbox)
- [Build](#build)
- [Test](#test)
- [Documentation](#documentation)

## Setup

Expand All @@ -16,7 +16,7 @@ OpenDAL provides a pre-configured [dev container](https://containers.dev/) that

The fastest way is:

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/incubator-opendal?quickstart=1&machine=standardLinux32gb)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/opendal?quickstart=1&machine=standardLinux32gb)

### Bring your own toolbox

Expand Down
4 changes: 2 additions & 2 deletions bindings/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
name = "opendal-c"
publish = false

authors = ["OpenDAL Contributors <[email protected]>"]
authors = ["Apache OpenDAL <[email protected]>"]
edition = "2021"
homepage = "https://opendal.apache.org/"
license = "Apache-2.0"
repository = "https://github.com/apache/incubator-opendal"
repository = "https://github.com/apache/opendal"
rust-version = "1.67"
version = "0.44.1"

Expand Down
2 changes: 1 addition & 1 deletion bindings/c/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![](https://img.shields.io/badge/status-unreleased-red)

![](https://github.com/apache/incubator-opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)
![](https://github.com/apache/opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)

## Example

Expand Down
2 changes: 1 addition & 1 deletion bindings/cpp/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ OpenDAL provides a pre-configured [dev container](https://containers.dev/) that

The fastest way is:

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/incubator-opendal?quickstart=1&machine=standardLinux32gb)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/opendal?quickstart=1&machine=standardLinux32gb)

### Bring your own toolbox

Expand Down
8 changes: 4 additions & 4 deletions bindings/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![](https://img.shields.io/badge/status-unreleased-red)

![](https://github.com/apache/incubator-opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)
![](https://github.com/apache/opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)

Documents: [![Documents](https://img.shields.io/badge/opendal-cpp-blue?logo=Apache&logoColor=red)](https://opendal.apache.org/docs/cpp/)

Expand Down Expand Up @@ -31,7 +31,7 @@ You can use `FetchContent` to add OpenDAL to your project.
```cmake
FetchContent_Declare(
opendal-cpp
GIT_REPOSITORY https://github.com/apache/incubator-opendal.git
GIT_REPOSITORY https://github.com/apache/opendal.git
GIT_TAG v0.40.0
SOURCE_SUBDIR bindings/cpp
)
Expand All @@ -43,12 +43,12 @@ Or you can download the source code and add it to your project.
```shell
mkdir third_party
cd third_party
git clone https://github.com/apache/incubator-opendal.git
git clone https://github.com/apache/opendal.git
git checkout v0.40.0
```

```cmake
add_subdirectory(third_party/incubator-opendal/bindings/cpp)
add_subdirectory(third_party/opendal/bindings/cpp)
```

Now you can use OpenDAL in your project.
Expand Down
4 changes: 2 additions & 2 deletions bindings/dotnet/DotOpenDAL/DotOpenDAL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<Title>DotOpenDAL</Title>
<Description>The official .NET binding for Apache OpenDAL™ (incubating)</Description>
<Description>The official .NET binding for Apache OpenDAL™</Description>
<Version>0.1.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Authors>Apache OpenDAL™ (incubating)</Authors>
<Authors>Apache OpenDAL™</Authors>
<Company>Apache Software Foundation</Company>
<Copyright>$(Company)</Copyright>
<PackageTags>Apache;OpenDAL</PackageTags>
Expand Down
3 changes: 1 addition & 2 deletions bindings/haskell/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
- [Build](#build)
- [Test](#test)
- [Doc](#doc)
- [Misc](#misc)

## Setup

Expand All @@ -15,7 +14,7 @@ OpenDAL provides a pre-configured [dev container](https://containers.dev/) that

The fastest way is:

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/incubator-opendal?quickstart=1&machine=standardLinux32gb)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/apache/opendal?quickstart=1&machine=standardLinux32gb)

### Bring your own toolbox

Expand Down
2 changes: 1 addition & 1 deletion bindings/haskell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![](https://img.shields.io/badge/status-unreleased-red)

![](https://github.com/apache/incubator-opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)
![](https://github.com/apache/opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)

## Example

Expand Down
4 changes: 2 additions & 2 deletions bindings/haskell/opendal.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ custom-setup

source-repository head
type: git
location: https://github.com/apache/incubator-opendal
location: https://github.com/apache/opendal
subdir: bindings/haskell

source-repository this
type: git
location: https://github.com/apache/incubator-opendal
location: https://github.com/apache/opendal
tag: v0.44.0
subdir: bindings/haskell

Expand Down
2 changes: 1 addition & 1 deletion bindings/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.opendal/opendal-java.svg?logo=Apache+Maven&logoColor=blue)](https://central.sonatype.com/search?q=opendal-java&smo=true)
[![Website](https://img.shields.io/badge/opendal-OpenDAL_Website-red?logo=Apache&logoColor=red)](https://opendal.apache.org/docs/java/)

![](https://github.com/apache/incubator-opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)
![](https://github.com/apache/opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)

## Example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class OperatorUtf8DecodeTest {
/**
* Write file with non ascii name should succeed.
*
* @see <a href="https://github.com/apache/incubator-opendal/issues/3194">More information</a>
* @see <a href="https://github.com/apache/opendal/issues/3194">More information</a>
*/
@Test
public void testWriteFileWithNonAsciiName() {
Expand Down
5 changes: 2 additions & 3 deletions bindings/java/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

## Breaking change

Because of [a TLS lib issue](https://github.com/apache/incubator-opendal/issues/3650), we temporarily disable the `services-ftp` feature.

Because of [a TLS lib issue](https://github.com/apache/opendal/issues/3650), we temporarily disable the `services-ftp` feature.

# Upgrade to v0.41

## Breaking change for constructing operators

[PR-3166](https://github.com/apache/incubator-opendal/pull/3166) changes the API for constructing operators:
[PR-3166](https://github.com/apache/opendal/pull/3166) changes the API for constructing operators:

Previous:

Expand Down
2 changes: 1 addition & 1 deletion bindings/lua/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![](https://img.shields.io/badge/status-unreleased-red)

![](https://github.com/apache/incubator-opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)
![](https://github.com/apache/opendal/assets/5351546/87bbf6e5-f19e-449a-b368-3e283016c887)

## Example

Expand Down
Loading

0 comments on commit 7045ddd

Please sign in to comment.