Skip to content

Commit 2557b25

Browse files
authored
Bump to version 2.1.0 (#42)
Signed-off-by: Xuanwo <github@xuanwo.io>
1 parent 05e61ef commit 2557b25

File tree

4 files changed

+50
-7
lines changed

4 files changed

+50
-7
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [v2.1.0] - 2021-04-24
9+
10+
### Added
11+
12+
- *: Implement proposal unify object metadata (#25)
13+
- storage: Normalize iterator next function names (#27)
14+
- pair: Implement default pair support for service (#29)
15+
- *: Set default pair when init (#31)
16+
- storage: Implement Create API (#33)
17+
- storage: Set multipart attributes when create multipart (#34)
18+
- *: Add UnimplementedStub (#35)
19+
- storage: Implement SSE support (#37)
20+
- tests: Introduce STORAGE_QINGSTOR_INTEGRATION_TEST (#39)
21+
- storage: Implement AOS-40 (#41)
22+
23+
### Changed
24+
25+
- storage: Clean up next page logic
26+
- build: Make sure integration tests has been executed
27+
- docs: Migrate zulip to matrix
28+
- docs: Remove zulip
29+
- ci: Only run Integration Test while push to master
30+
- storage: Rename SSE related pairs to meet AOS-38 (#38)
31+
32+
### Fixed
33+
34+
- storage: Fix multipart integration tests (#36)
35+
36+
### Removed
37+
38+
- *: Remove parsed pairs pointer (#28)
39+
40+
### Upgrade
41+
42+
- build(deps): bump github.com/qingstor/qingstor-sdk-go/v4 (#26)
43+
844
## [v2.0.0] - 2021-01-17
945

1046
### Added
@@ -25,4 +61,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
2561

2662
- Implement qingstor services.
2763

64+
[v2.1.0]: https://github.com/aos-dev/go-service-qingstor/compare/v2.0.0...v2.1.0
2865
[v2.0.0]: https://github.com/aos-dev/go-service-qingstor/compare/v1.0.0...v2.0.0

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@
55
[![go-service-qingstor](https://img.shields.io/matrix/go-service-qingstor:aos.dev.svg?server_fqdn=chat.aos.dev&label=%23go-service-qingstor%3Aaos.dev&logo=matrix)](https://matrix.to/#/#go-service-qingstor:aos.dev)
66

77
[QingStor Object Storage](https://www.qingcloud.com/products/objectstorage/) services support for [go-storage](https://github.com/aos-dev/go-storage)
8+
9+
## Install
10+
11+
```go
12+
go get github.com/aos-dev/go-service-qingstor/v2
13+
```

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ go 1.14
44

55
require (
66
bou.ke/monkey v1.0.2
7-
github.com/aos-dev/go-integration-test/v3 v3.0.0-20210420062414-e972ad8801cc
8-
github.com/aos-dev/go-storage/v3 v3.5.1-0.20210423112617-6847a93345fd
7+
github.com/aos-dev/go-integration-test/v3 v3.0.0
8+
github.com/aos-dev/go-storage/v3 v3.6.0
99
github.com/golang/mock v1.5.0
1010
github.com/google/uuid v1.2.0
1111
github.com/pengsrc/go-shared v0.2.1-0.20190131101655-1999055a4a14

go.sum

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ github.com/Xuanwo/go-bufferpool v0.0.0-20200622083641-bc954721ce54/go.mod h1:Mle
55
github.com/Xuanwo/templateutils v0.0.0-20201216100309-46f73cd4e4b1/go.mod h1:x0qS7gfgEm24b8V9U+0zBEBAu/VpxZhO/+EWtpgEgDw=
66
github.com/Xuanwo/templateutils v0.1.0 h1:WpkWOqQtIQ2vAIpJLa727DdN8WtxhUkkbDGa6UhntJY=
77
github.com/Xuanwo/templateutils v0.1.0/go.mod h1:OdE0DJ+CJxDBq6psX5DPV+gOZi8bhuHuVUpPCG++Wb8=
8-
github.com/aos-dev/go-integration-test/v3 v3.0.0-20210420062414-e972ad8801cc h1:ha0GpuSyD/R19if+4D6QCKF6j7UvajiL2LF17xpqKTs=
9-
github.com/aos-dev/go-integration-test/v3 v3.0.0-20210420062414-e972ad8801cc/go.mod h1:2i6Itxp4ScMeZbaJetPPo+b283GYExF9i9Dlcr8E9Y0=
10-
github.com/aos-dev/go-storage/v3 v3.4.2/go.mod h1:PZJT0Ta7YxVM5QoYoh8Q/X4I6e/z/7gOJqm85Aib4nY=
11-
github.com/aos-dev/go-storage/v3 v3.5.1-0.20210423112617-6847a93345fd h1:FEBrz+fo4V+6jMxnbmkI0M+3m5MYriF5SijFF/Sz5cM=
12-
github.com/aos-dev/go-storage/v3 v3.5.1-0.20210423112617-6847a93345fd/go.mod h1:ZQwybmoCcTWUOWg+G15gT/NQJoI8G8KH1pF41TuJqYk=
8+
github.com/aos-dev/go-integration-test/v3 v3.0.0 h1:rxIc7YBfiw9JS5JiVU4BZAqQqoKJemIftFaeJpYCb5M=
9+
github.com/aos-dev/go-integration-test/v3 v3.0.0/go.mod h1:woC3E9Ld1G/Cpo2tSEQ+iwIr4MMdgf+L/8UuyJOE11Q=
10+
github.com/aos-dev/go-storage/v3 v3.5.0/go.mod h1:PZJT0Ta7YxVM5QoYoh8Q/X4I6e/z/7gOJqm85Aib4nY=
11+
github.com/aos-dev/go-storage/v3 v3.6.0 h1:ywjMvh320+esJH81MqB9nyuMNLW97Krujz2UiprC2ZM=
12+
github.com/aos-dev/go-storage/v3 v3.6.0/go.mod h1:ZQwybmoCcTWUOWg+G15gT/NQJoI8G8KH1pF41TuJqYk=
1313
github.com/aos-dev/specs/go v0.0.0-20210312090615-23109627848b/go.mod h1:XTNlLZtPA1inITyDH5hNnQXVjvvKUvo+lurs5GYB8NA=
1414
github.com/aos-dev/specs/go v0.0.0-20210423110314-8361397c2bf3 h1:e65ozDhdfHfhnDpZF9SLcY5mwtAg/sAvNIUAkFd+4D0=
1515
github.com/aos-dev/specs/go v0.0.0-20210423110314-8361397c2bf3/go.mod h1:gNah3KaPJEfysh7uCCX+sYjQC3g2yx2VgBkFlT945Ws=

0 commit comments

Comments
 (0)