Skip to content

Commit

Permalink
Bump to version 0.9.0 (#376)
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo authored Jun 14, 2022
1 parent c37daf5 commit 0a469d1
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/)
and this project adheres to [Semantic Versioning](https://semver.org/).

## [v0.9.0] - 2022-06-14

### Added

- feat: Implement http service support (#368)
- feat: Add http_header to handle HTTP header parse (#369)
- feat(services/s3): Add virtual host API style support (#374)

### Changed

- refactor: Use the same http client across project (#364)
- refactor(services/{s3,azblob}): Make sure error response parsed correctly and safely (#375)

### Docs

- docs: Add concepts for Accessor, Operator and Object (#354)
- docs: Aad docs for batch operations (#363)

## [v0.8.0] - 2022-06-09

### Added
Expand Down Expand Up @@ -402,6 +420,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

Hello, OpenDAL!

[v0.9.0]: https://github.com/datafuselabs/opendal/compare/v0.8.0...v0.9.0
[v0.8.0]: https://github.com/datafuselabs/opendal/compare/v0.7.3...v0.8.0
[v0.7.3]: https://github.com/datafuselabs/opendal/compare/v0.7.2...v0.7.3
[v0.7.2]: https://github.com/datafuselabs/opendal/compare/v0.7.1...v0.7.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["storage", "data", "s3", "fs", "azblob"]
license = "Apache-2.0"
name = "opendal"
repository = "https://github.com/datafuselabs/opendal"
version = "0.8.0"
version = "0.9.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ You may be looking for:
- [azblob](https://docs.rs/opendal/latest/opendal/services/azblob/index.html): Azure Storage Blob services.
- [fs](https://docs.rs/opendal/latest/opendal/services/fs/index.html): POSIX alike file system.
- [hdfs](https://docs.rs/opendal/latest/opendal/services/hdfs/index.html): Hadoop Distributed File System(HDFS).
- [http](https://docs.rs/opendal/latest/opendal/services/http/index.html): HTTP read-only services.
- [memory](https://docs.rs/opendal/latest/opendal/services/memory/index.html): In memory backend.
- [s3](https://docs.rs/opendal/latest/opendal/services/s3/index.html): AWS S3 alike services.

Expand Down
6 changes: 4 additions & 2 deletions docs/services/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All config could be passed via environment:
- `OPENDAL_S3_REGION`: region of s3 service, could be auto detected.
- `OPENDAL_S3_ACCESS_KEY_ID`: access key id of s3 service, could be auto detected.
- `OPENDAL_S3_SECRET_ACCESS_KEY`: secret access key of s3 service, could be auto detected.
- `OPENDAL_S3_ENABLE_VIRTUAL_HOST_STYLE`: Enable virtual host style for API request.

## Compatible Services

Expand All @@ -44,7 +45,7 @@ To connect to OSS, we need to set:

> OSS provide internal endpoint for used at alibabacloud internally, please visit [OSS Regions and endpoints](https://www.alibabacloud.com/help/en/object-storage-service/latest/regions-and-endpoints) for more details.
> Some bucket must enable the virtual host style accessing feature, they could meet errors like:
> OSS only supports the virtual host style, users could meet errors like:
>
> ```xml
> <?xml version="1.0" encoding="UTF-8"?>
Expand All @@ -56,12 +57,13 @@ To connect to OSS, we need to set:
> </Error>
> ```
>
> In that case, please use endpoint prefixed with bucket name like `https://bucket-name.oss-cn-hangzhou.aliyuncs.com`
> In that case, please enable virtual host style for requesting.
```rust
builder.endpoint("https://oss-cn-hangzhou.aliyuncs.com");
builder.region("<region>");
builder.bucket("<bucket_name>");
builder.enable_virtual_host_style();
```
### Minio
Expand Down

1 comment on commit 0a469d1

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented on 0a469d1 Jun 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for opendal ready!

✅ Preview
https://opendal-j5rui7l2b-databend.vercel.app

Built with commit 0a469d1.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.