Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Bump to version 4.2.0 #37

Merged
merged 4 commits into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ go 1.15

require (
github.com/beyondstorage/go-storage/v4 v4.2.0
JinnyYi marked this conversation as resolved.
Show resolved Hide resolved
github.com/google/uuid v1.2.0
github.com/google/uuid v1.3.0
github.com/smartystreets/goconvey v1.6.4
)
3 changes: 2 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down