From bb750255f8957549411c13aa329ccb7e30bd43f8 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Sun, 24 Oct 2021 19:11:25 +0800 Subject: [PATCH] chore(services/*): Bump major versions (#957) * chore(services/*): Bump major versions Signed-off-by: Xuanwo * Enable concurrency Signed-off-by: Xuanwo * Fix group Signed-off-by: Xuanwo * Include action in group Signed-off-by: Xuanwo * Use workflow name instead Signed-off-by: Xuanwo --- .github/workflows/build-test.yml | 4 +++ .github/workflows/cross-build.yml | 4 +++ .github/workflows/services-test-azblob.yml | 4 +++ .github/workflows/services-test-azfile.yml | 16 +++++++----- .github/workflows/services-test-bos.yml | 16 +++++++----- .github/workflows/services-test-cos.yml | 16 +++++++----- .github/workflows/services-test-dropbox.yml | 16 +++++++----- .github/workflows/services-test-fs.yml | 20 +++++++++------ .github/workflows/services-test-ftp.yml | 4 +++ .github/workflows/services-test-gcs.yml | 16 +++++++----- .github/workflows/services-test-gdrive.yml | 16 +++++++----- .github/workflows/services-test-hdfs.yml | 26 +++++++++++--------- .github/workflows/services-test-ipfs.yml | 20 +++++++++------ .github/workflows/services-test-kodo.yml | 16 +++++++----- .github/workflows/services-test-memory.yml | 18 ++++++++------ .github/workflows/services-test-minio.yml | 16 +++++++----- .github/workflows/services-test-obs.yml | 16 +++++++----- .github/workflows/services-test-oss.yml | 16 +++++++----- .github/workflows/services-test-qingstor.yml | 16 +++++++----- .github/workflows/services-test-s3.yml | 16 +++++++----- .github/workflows/services-test-storj.yml | 16 +++++++----- .github/workflows/unit-test.yml | 4 +++ services/azblob/CHANGELOG.md | 11 +++++++++ services/azfile/CHANGELOG.md | 12 +++++++++ services/bos/CHANGELOG.md | 11 +++++++++ services/cos/CHANGELOG.md | 7 ++++++ services/dropbox/CHANGELOG.md | 7 ++++++ services/fs/CHANGELOG.md | 6 +++++ services/ftp/CHANGELOG.md | 7 ++++++ services/gcs/CHANGELOG.md | 12 +++++++++ services/gdrive/CHANGELOG.md | 11 +++++++++ services/hdfs/CHANGELOG.md | 7 ++++++ services/ipfs/CHANGELOG.md | 7 ++++++ services/kodo/CHANGELOG.md | 11 +++++++++ services/memory/CHANGELOG.md | 5 ++++ services/minio/CHANGELOG.md | 11 +++++++++ services/oss/CHANGELOG.md | 6 +++++ services/qingstor/CHANGELOG.md | 4 +++ services/s3/CHANGELOG.md | 17 +++++++++++++ services/storj/CHANGELOG.md | 12 +++++++++ services/storj/Makefile | 5 +++- services/uss/CHANGELOG.md | 7 +++++- 42 files changed, 374 insertions(+), 114 deletions(-) create mode 100644 services/azfile/CHANGELOG.md create mode 100644 services/storj/CHANGELOG.md diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 65ca9a414..3d91dc403 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -2,6 +2,10 @@ name: "Build Test" on: [ push,pull_request ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + jobs: build_test: name: Build Test diff --git a/.github/workflows/cross-build.yml b/.github/workflows/cross-build.yml index d464a5698..62dc68bd9 100644 --- a/.github/workflows/cross-build.yml +++ b/.github/workflows/cross-build.yml @@ -2,6 +2,10 @@ name: "Cross Build" on: [ push,pull_request ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + jobs: build_js_wasm: name: Build js wasm diff --git a/.github/workflows/services-test-azblob.yml b/.github/workflows/services-test-azblob.yml index 9f56522b6..496804db6 100644 --- a/.github/workflows/services-test-azblob.yml +++ b/.github/workflows/services-test-azblob.yml @@ -1,5 +1,9 @@ name: "Services Test Azblob" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: push: paths: diff --git a/.github/workflows/services-test-azfile.yml b/.github/workflows/services-test-azfile.yml index e87ed2a01..60ff3a1fe 100644 --- a/.github/workflows/services-test-azfile.yml +++ b/.github/workflows/services-test-azfile.yml @@ -1,12 +1,16 @@ name: "Services Test Azfile" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/azfile/**' - pull_request: - paths: - - 'services/azfile/**' + push: + paths: + - 'services/azfile/**' + pull_request: + paths: + - 'services/azfile/**' jobs: services_test_azfile: diff --git a/.github/workflows/services-test-bos.yml b/.github/workflows/services-test-bos.yml index a6022e9ae..0fbade38d 100644 --- a/.github/workflows/services-test-bos.yml +++ b/.github/workflows/services-test-bos.yml @@ -1,12 +1,16 @@ name: "Services Test Bos" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/bos/**' - pull_request: - paths: - - 'services/bos/**' + push: + paths: + - 'services/bos/**' + pull_request: + paths: + - 'services/bos/**' jobs: services_test_bos: diff --git a/.github/workflows/services-test-cos.yml b/.github/workflows/services-test-cos.yml index 694fb2e02..1c125546f 100644 --- a/.github/workflows/services-test-cos.yml +++ b/.github/workflows/services-test-cos.yml @@ -1,12 +1,16 @@ name: "Services Test Cos" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/cos/**' - pull_request: - paths: - - 'services/cos/**' + push: + paths: + - 'services/cos/**' + pull_request: + paths: + - 'services/cos/**' jobs: services_test_cos: diff --git a/.github/workflows/services-test-dropbox.yml b/.github/workflows/services-test-dropbox.yml index 6aca3e22a..4a40f070f 100644 --- a/.github/workflows/services-test-dropbox.yml +++ b/.github/workflows/services-test-dropbox.yml @@ -1,12 +1,16 @@ name: "Services Test Dropbox" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/dropbox/**' - pull_request: - paths: - - 'services/dropbox/**' + push: + paths: + - 'services/dropbox/**' + pull_request: + paths: + - 'services/dropbox/**' jobs: services_test_dropbox: diff --git a/.github/workflows/services-test-fs.yml b/.github/workflows/services-test-fs.yml index 4374428bf..5298fa051 100644 --- a/.github/workflows/services-test-fs.yml +++ b/.github/workflows/services-test-fs.yml @@ -1,12 +1,16 @@ name: "Services Test Fs" -on: - push: - paths: - - 'services/fs/**' - pull_request: - paths: - - 'services/fs/**' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +on: + push: + paths: + - 'services/fs/**' + pull_request: + paths: + - 'services/fs/**' jobs: integration_test: @@ -16,7 +20,7 @@ jobs: strategy: matrix: go: [ "1.16", "1.17" ] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - name: Set up Go 1.x diff --git a/.github/workflows/services-test-ftp.yml b/.github/workflows/services-test-ftp.yml index f81ca71d4..6cd6760e6 100644 --- a/.github/workflows/services-test-ftp.yml +++ b/.github/workflows/services-test-ftp.yml @@ -1,5 +1,9 @@ name: "Services Test Ftp" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: push: paths: diff --git a/.github/workflows/services-test-gcs.yml b/.github/workflows/services-test-gcs.yml index b367bb23f..940f7fd1e 100644 --- a/.github/workflows/services-test-gcs.yml +++ b/.github/workflows/services-test-gcs.yml @@ -1,12 +1,16 @@ name: "Services Test Gcs" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/gcs/**' - pull_request: - paths: - - 'services/gcs/**' + push: + paths: + - 'services/gcs/**' + pull_request: + paths: + - 'services/gcs/**' jobs: services_test_gcs: diff --git a/.github/workflows/services-test-gdrive.yml b/.github/workflows/services-test-gdrive.yml index 4b1c23302..a821ec893 100644 --- a/.github/workflows/services-test-gdrive.yml +++ b/.github/workflows/services-test-gdrive.yml @@ -1,12 +1,16 @@ name: "Services Test Gdrive" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/gdrive/**' - pull_request: - paths: - - 'services/gdrive/**' + push: + paths: + - 'services/gdrive/**' + pull_request: + paths: + - 'services/gdrive/**' jobs: services_test_gdrive: diff --git a/.github/workflows/services-test-hdfs.yml b/.github/workflows/services-test-hdfs.yml index 42747ee8f..458cd35ac 100644 --- a/.github/workflows/services-test-hdfs.yml +++ b/.github/workflows/services-test-hdfs.yml @@ -1,12 +1,16 @@ name: "Services Test Hdfs" -on: - push: - paths: - - 'services/hdfs/**' - pull_request: - paths: - - 'services/hdfs/**' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +on: + push: + paths: + - 'services/hdfs/**' + pull_request: + paths: + - 'services/hdfs/**' jobs: integration_test: @@ -17,7 +21,7 @@ jobs: matrix: go: [ "1.16", "1.17" ] hdfs-version: [ "2.10.1", "3.2.2", "3.3.0", "3.3.1" ] - os: [ubuntu-latest] + os: [ ubuntu-latest ] steps: - name: Set up Go 1.x @@ -31,17 +35,17 @@ jobs: - name: Checkout python env uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.8' - name: Checkout java env uses: actions/setup-java@v1 with: - java-version: '11' + java-version: '11' - name: Setup-hdfs env uses: beyondstorage/setup-hdfs@master with: - hdfs-version: ${{ matrix.hdfs-version }} + hdfs-version: ${{ matrix.hdfs-version }} - name: Test env: diff --git a/.github/workflows/services-test-ipfs.yml b/.github/workflows/services-test-ipfs.yml index 5f7ae78c1..de890fa11 100644 --- a/.github/workflows/services-test-ipfs.yml +++ b/.github/workflows/services-test-ipfs.yml @@ -1,12 +1,16 @@ name: "Services Test Ipfs" -on: - push: - paths: - - 'services/ipfs/**' - pull_request: - paths: - - 'services/ipfs/**' +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + +on: + push: + paths: + - 'services/ipfs/**' + pull_request: + paths: + - 'services/ipfs/**' jobs: integration_test: @@ -16,7 +20,7 @@ jobs: strategy: matrix: go: [ "1.16", "1.17" ] - ipfs: ["0.8", "0.9"] + ipfs: [ "0.8", "0.9" ] steps: - name: Set up Go 1.x diff --git a/.github/workflows/services-test-kodo.yml b/.github/workflows/services-test-kodo.yml index cbf2691b8..c07705788 100644 --- a/.github/workflows/services-test-kodo.yml +++ b/.github/workflows/services-test-kodo.yml @@ -1,12 +1,16 @@ name: "Services Test Kodo" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/kodo/**' - pull_request: - paths: - - 'services/kodo/**' + push: + paths: + - 'services/kodo/**' + pull_request: + paths: + - 'services/kodo/**' jobs: services_test_kodo: diff --git a/.github/workflows/services-test-memory.yml b/.github/workflows/services-test-memory.yml index 44fa38ea9..1167f4877 100644 --- a/.github/workflows/services-test-memory.yml +++ b/.github/workflows/services-test-memory.yml @@ -1,12 +1,16 @@ name: "Services Test Memory" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/memory/**' - pull_request: - paths: - - 'services/memory/**' + push: + paths: + - 'services/memory/**' + pull_request: + paths: + - 'services/memory/**' jobs: unit_test: @@ -16,7 +20,7 @@ jobs: strategy: matrix: go: [ "1.16", "1.17" ] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - name: Set up Go 1.x diff --git a/.github/workflows/services-test-minio.yml b/.github/workflows/services-test-minio.yml index bb801990d..710417290 100644 --- a/.github/workflows/services-test-minio.yml +++ b/.github/workflows/services-test-minio.yml @@ -1,12 +1,16 @@ name: "Services Test Minio" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/minio/**' - pull_request: - paths: - - 'services/minio/**' + push: + paths: + - 'services/minio/**' + pull_request: + paths: + - 'services/minio/**' jobs: integration_test: diff --git a/.github/workflows/services-test-obs.yml b/.github/workflows/services-test-obs.yml index ddb2198b3..1330f361a 100644 --- a/.github/workflows/services-test-obs.yml +++ b/.github/workflows/services-test-obs.yml @@ -1,12 +1,16 @@ name: "Services Test Obs" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/obs/**' - pull_request: - paths: - - 'services/obs/**' + push: + paths: + - 'services/obs/**' + pull_request: + paths: + - 'services/obs/**' jobs: services_test_obs: diff --git a/.github/workflows/services-test-oss.yml b/.github/workflows/services-test-oss.yml index 171f7984f..31b5cdd11 100644 --- a/.github/workflows/services-test-oss.yml +++ b/.github/workflows/services-test-oss.yml @@ -1,12 +1,16 @@ name: "Services Test Oss" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/oss/**' - pull_request: - paths: - - 'services/oss/**' + push: + paths: + - 'services/oss/**' + pull_request: + paths: + - 'services/oss/**' jobs: services_test_oss: diff --git a/.github/workflows/services-test-qingstor.yml b/.github/workflows/services-test-qingstor.yml index dba208630..f82bc56b1 100644 --- a/.github/workflows/services-test-qingstor.yml +++ b/.github/workflows/services-test-qingstor.yml @@ -1,12 +1,16 @@ name: "Services Test Qingstor" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/qingstor/**' - pull_request: - paths: - - 'services/qingstor/**' + push: + paths: + - 'services/qingstor/**' + pull_request: + paths: + - 'services/qingstor/**' jobs: services_test_qingstor: diff --git a/.github/workflows/services-test-s3.yml b/.github/workflows/services-test-s3.yml index 4328afb04..6c3aaf73b 100644 --- a/.github/workflows/services-test-s3.yml +++ b/.github/workflows/services-test-s3.yml @@ -1,12 +1,16 @@ name: "Services Test S3" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/s3/**' - pull_request: - paths: - - 'services/s3/**' + push: + paths: + - 'services/s3/**' + pull_request: + paths: + - 'services/s3/**' jobs: services_test_s3: diff --git a/.github/workflows/services-test-storj.yml b/.github/workflows/services-test-storj.yml index e4def60ce..dc77ec53b 100644 --- a/.github/workflows/services-test-storj.yml +++ b/.github/workflows/services-test-storj.yml @@ -1,12 +1,16 @@ name: "Services Test Storj" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + on: - push: - paths: - - 'services/storj/**' - pull_request: - paths: - - 'services/storj/**' + push: + paths: + - 'services/storj/**' + pull_request: + paths: + - 'services/storj/**' jobs: services_test_storj: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 21480145b..2dd3351cd 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -2,6 +2,10 @@ name: "Unit Test" on: [ push,pull_request ] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} + cancel-in-progress: true + jobs: unit_test: name: Unit Test diff --git a/services/azblob/CHANGELOG.md b/services/azblob/CHANGELOG.md index 4bc2812f8..6728edc37 100644 --- a/services/azblob/CHANGELOG.md +++ b/services/azblob/CHANGELOG.md @@ -5,6 +5,17 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Added + +- feat: Add support for Write Empty File Behavior (https://github.com/beyondstorage/go-service-azblob/pull/54) + +### Changed + +- feat(services/azblob): Move services azblob back (#875) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v2.3.0] - 2021-09-13 ### Changed diff --git a/services/azfile/CHANGELOG.md b/services/azfile/CHANGELOG.md new file mode 100644 index 000000000..1047ec157 --- /dev/null +++ b/services/azfile/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +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/). + +## v1.0.0 - 2021-10-23 + +### Added + +- Implement azfile services. diff --git a/services/bos/CHANGELOG.md b/services/bos/CHANGELOG.md index e4e172cec..1200b0901 100644 --- a/services/bos/CHANGELOG.md +++ b/services/bos/CHANGELOG.md @@ -5,6 +5,17 @@ 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/). +## v2.0.0 - 2021-10-23 + +### Changed + +- feat(services/bos): Move services bos back (#879) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump github.com/baidubce/bce-sdk-go in /services/bos (#919) + ## v1.0.0 - 2021-09-08 ### Added diff --git a/services/cos/CHANGELOG.md b/services/cos/CHANGELOG.md index 37f5ed2d1..af926c565 100644 --- a/services/cos/CHANGELOG.md +++ b/services/cos/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/cos): Move services cos back (#884) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v2.3.0] - 2021-09-13 ### Changed diff --git a/services/dropbox/CHANGELOG.md b/services/dropbox/CHANGELOG.md index 3c084e26c..10c94c95c 100644 --- a/services/dropbox/CHANGELOG.md +++ b/services/dropbox/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/dropbox): Move services dropbox back (#888) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v2.3.0] - 2021-09-13 ### Changed diff --git a/services/fs/CHANGELOG.md b/services/fs/CHANGELOG.md index 01ad35536..cddce2c17 100644 --- a/services/fs/CHANGELOG.md +++ b/services/fs/CHANGELOG.md @@ -5,6 +5,12 @@ 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/). +## v4.0.0 - 2021-10-23 + +### Added + +- feat(services/fs): Move services fs back (#949) + ## [v3.5.0] - 2021-09-23 ### Added diff --git a/services/ftp/CHANGELOG.md b/services/ftp/CHANGELOG.md index 48284db0e..8bc0b1e15 100644 --- a/services/ftp/CHANGELOG.md +++ b/services/ftp/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3.0 - 2021-10-23 + +### Added + +- feat(services/ftp): Move services ftp back (#895) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v0.2.0] - 2021-09-13 ### Added diff --git a/services/gcs/CHANGELOG.md b/services/gcs/CHANGELOG.md index f62b7c0ec..7211c7e5c 100644 --- a/services/gcs/CHANGELOG.md +++ b/services/gcs/CHANGELOG.md @@ -5,6 +5,18 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/gcs): Move services gcs back (#896) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump cloud.google.com/go/storage in /services/gcs (#899) +- build(deps): bump google.golang.org/api in /services/gcs (#926) + ## [v2.3.0] - 2021-09-13 ### Added diff --git a/services/gdrive/CHANGELOG.md b/services/gdrive/CHANGELOG.md index 25703223f..2e60a9044 100644 --- a/services/gdrive/CHANGELOG.md +++ b/services/gdrive/CHANGELOG.md @@ -5,6 +5,17 @@ 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.2.0 - 2021-10-23 + +### Changed + +- feat(services/gdrive): Move services gdrive back (#903) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump google.golang.org/api in /services/gdrive (#925) + ## v0.1.0 - 2021-09-22 ### Added diff --git a/services/hdfs/CHANGELOG.md b/services/hdfs/CHANGELOG.md index 686300b95..de4711d0c 100644 --- a/services/hdfs/CHANGELOG.md +++ b/services/hdfs/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3.0 - 2021-10-23 + +### Changed + +- feat(services/hdfs): Move services hdfs back (#909) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v0.2.1] - 2021-09-09 ### Fixed diff --git a/services/ipfs/CHANGELOG.md b/services/ipfs/CHANGELOG.md index 2f8174401..cb57c814b 100644 --- a/services/ipfs/CHANGELOG.md +++ b/services/ipfs/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3.0 - 2021-10-23 + +### Added + +- feat(services/ipfs): Move services ipfs back (#910) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v0.2.0] - 2021-09-13 ### Added diff --git a/services/kodo/CHANGELOG.md b/services/kodo/CHANGELOG.md index 75cf4906e..1d7988f9a 100644 --- a/services/kodo/CHANGELOG.md +++ b/services/kodo/CHANGELOG.md @@ -5,6 +5,17 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/kodo): Move services kodo back (#911) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump github.com/qiniu/go-sdk/v7 in /services/kodo (#914) + ## [v2.3.0] - 2021-09-13 ### Changed diff --git a/services/memory/CHANGELOG.md b/services/memory/CHANGELOG.md index bb65b6eed..870abf686 100644 --- a/services/memory/CHANGELOG.md +++ b/services/memory/CHANGELOG.md @@ -5,6 +5,11 @@ 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.4.0 - 2021-10-23 + +- feat(services/memory): Move services memory back (#912) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + ## [v0.3.0] - 2021-09-13 ### Added diff --git a/services/minio/CHANGELOG.md b/services/minio/CHANGELOG.md index 188529fc0..f68ba6880 100644 --- a/services/minio/CHANGELOG.md +++ b/services/minio/CHANGELOG.md @@ -5,6 +5,17 @@ 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.3.0 - 2021-10-23 + +### Changed + +- feat(services/minio): Move services minio back (#913) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump github.com/minio/minio-go/v7 in /services/minio (#915) + ## [v0.2.0] - 2021-09-13 ### Changed diff --git a/services/oss/CHANGELOG.md b/services/oss/CHANGELOG.md index 6f4853b3b..2cc42c633 100644 --- a/services/oss/CHANGELOG.md +++ b/services/oss/CHANGELOG.md @@ -5,6 +5,12 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/oss): Move services oss back (#927) + ## [v2.4.0] - 2021-09-13 ### Changed diff --git a/services/qingstor/CHANGELOG.md b/services/qingstor/CHANGELOG.md index 3ac9f1b1d..273670592 100644 --- a/services/qingstor/CHANGELOG.md +++ b/services/qingstor/CHANGELOG.md @@ -5,6 +5,10 @@ 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/). +## v4.0.0 - 2021-10-23 + +- feat(services/qingstor): Move services qingstor back (#928) + ## [v3.3.0] - 2021-09-13 ### Added diff --git a/services/s3/CHANGELOG.md b/services/s3/CHANGELOG.md index e449e4808..c60ae7ff0 100644 --- a/services/s3/CHANGELOG.md +++ b/services/s3/CHANGELOG.md @@ -5,6 +5,23 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Added + +- feat(services/s3): Add missing option back (#880) + +### Changed + +- feat(services/s3): Move services s3 back (#853) +- refactor(services/s3): Cleanup the logic of client init (#876) +- ci(*): Upgrade minimum version to Go 1.16 (#916) + +### Upgraded + +- build(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 (#940) +- build(deps): bump github.com/aws/aws-sdk-go-v2/config in /services/s3 (#941) + ## [v2.5.0] - 2021-10-09 ### Added diff --git a/services/storj/CHANGELOG.md b/services/storj/CHANGELOG.md new file mode 100644 index 000000000..70957529e --- /dev/null +++ b/services/storj/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +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/). + +## v1.0.0 - 2021-10-23 + +### Added + +- Implement storj services. diff --git a/services/storj/Makefile b/services/storj/Makefile index f92dccd49..14c888b05 100644 --- a/services/storj/Makefile +++ b/services/storj/Makefile @@ -32,7 +32,10 @@ test: go tool cover -html="coverage.txt" -o "coverage.html" integration_test: - go test -race -count=1 -covermode=atomic -v ./tests + # Storj is much slower than we expected: https://github.com/beyondstorage/go-storage/issues/958 + # 10 minutes is not enough for storj to finish our test. + # So we increase timeout to 30m. + go test -race -count=1 -covermode=atomic -v -timeout=30m ./tests tidy: go mod tidy diff --git a/services/uss/CHANGELOG.md b/services/uss/CHANGELOG.md index 37cdd63f4..a614cf13c 100644 --- a/services/uss/CHANGELOG.md +++ b/services/uss/CHANGELOG.md @@ -5,6 +5,12 @@ 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/). +## v3.0.0 - 2021-10-23 + +### Changed + +- feat(services/uss): Move services uss back (#932) + ## [v2.2.0] - 2021-07-21 ### Added @@ -49,4 +55,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/). [v2.2.0]: https://github.com/beyondstorage/go-service-uss/compare/v2.1.0...v2.2.0 [v2.1.0]: https://github.com/beyondstorage/go-service-uss/compare/v2.0.0...v2.1.0 [v2.0.0]: https://github.com/beyondstorage/go-service-uss/compare/v1.0.0...v2.0.0 - \ No newline at end of file