From 660fd2f97119785c266794c5c141034c95d38e9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jul 2021 14:03:52 +0000 Subject: [PATCH 1/3] build(deps): bump github.com/google/uuid from 1.2.0 to 1.3.0 Bumps [github.com/google/uuid](https://github.com/google/uuid) from 1.2.0 to 1.3.0. - [Release notes](https://github.com/google/uuid/releases) - [Commits](https://github.com/google/uuid/compare/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: github.com/google/uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 2 +- go.sum | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index e13dfa4..e2cd803 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,6 @@ go 1.15 require ( github.com/beyondstorage/go-storage/v4 v4.2.0 - github.com/google/uuid v1.2.0 + github.com/google/uuid v1.3.0 github.com/smartystreets/goconvey v1.6.4 ) diff --git a/go.sum b/go.sum index 22309f8..c778d82 100644 --- a/go.sum +++ b/go.sum @@ -12,8 +12,9 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/google/pprof v0.0.0-20181127221834-b4f47329b966/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/uuid v1.2.0 h1:qJYtXnJRWmpe7m/3XlyhrsLrEURqHRM2kxzoxXqyUDs= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= From 2acf6acebde392c8237a6a972fe4c512408030d3 Mon Sep 17 00:00:00 2001 From: JinnyYi Date: Wed, 14 Jul 2021 22:23:32 +0800 Subject: [PATCH 2/3] Bump to version 4.2.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 480d042..b187ef7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ 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.2.0] - 2021-07-14 + +### Added + +- storage: Implement Copier and Mover tests (#27) + +### Changed + +- storage: Minor refactor (#31) +- storage: Implement GSP-134 Write Behavior Consistency (#32) +- storage: Update tests for List (#33) + +### Fixed + +- move: Use errors.Is to assert error's type (#28) +- append: Remove content-length check for CreateAppend (#34) + +### Upgraded + +- build(deps): bump github.com/google/uuid from 1.2.0 to 1.3.0 (#35) + ## [v4.1.1] - 2021-06-25 ### Changed @@ -38,6 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Implement integration test for multiparter - Implement integration test for appender +[v4.2.0]: https://github.com/beyondstorage/go-integration-test/compare/v4.1.1...v4.2.0 [v4.1.1]: https://github.com/beyondstorage/go-integration-test/compare/v4.1.0...v4.1.1 [v4.1.0]: https://github.com/beyondstorage/go-integration-test/compare/v4.0.0...v4.1.0 [v4.0.0]: https://github.com/beyondstorage/go-integration-test/compare/v3.0.0...v4.0.0 From 982ef68df4c55f8a21bfe75db494b0ce4587c795 Mon Sep 17 00:00:00 2001 From: JinnyYi Date: Wed, 14 Jul 2021 22:32:05 +0800 Subject: [PATCH 3/3] Upgrade go-storage to 4.3.0 --- go.mod | 2 +- go.sum | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index e2cd803..f466909 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/beyondstorage/go-integration-test/v4 go 1.15 require ( - github.com/beyondstorage/go-storage/v4 v4.2.0 + github.com/beyondstorage/go-storage/v4 v4.3.0 github.com/google/uuid v1.3.0 github.com/smartystreets/goconvey v1.6.4 ) diff --git a/go.sum b/go.sum index c778d82..97db7cb 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,6 @@ github.com/Xuanwo/templateutils v0.1.0/go.mod h1:OdE0DJ+CJxDBq6psX5DPV+gOZi8bhuHuVUpPCG++Wb8= -github.com/beyondstorage/go-storage/v4 v4.2.0 h1:J0xqqy4qEQRtIS2zUWMA5wRXVHx/cxX5fHsU2ezA3+I= -github.com/beyondstorage/go-storage/v4 v4.2.0/go.mod h1:rUNzOXcikYk5w0ewvNsKbztg7ndQDyDvjDuP0bznSLU= -github.com/beyondstorage/specs/go v0.0.0-20210623065218-d1c2d7d81259/go.mod h1:vF/Q0P1tCvhVAUrxg7i6NvrARRMQVTAuQdDNqpSzR1w= +github.com/beyondstorage/go-storage/v4 v4.3.0 h1:4WvcxGcIWBiLFUICec9OxaFtLfQ1akDIRW1h6D6TfUE= +github.com/beyondstorage/go-storage/v4 v4.3.0/go.mod h1:0fdcRCzLKMQe7Ve4zPlyTGgoPYwuINiV79Gx9tCt9tQ= github.com/dave/dst v0.26.2/go.mod h1:UMDJuIRPfyUCC78eFuB+SV/WI8oDeyFDvM/JR6NI3IU= github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg=