1
0
mirror of https://github.com/minio/minio.git synced 2025-01-14 16:25:01 -05:00
minio/vendor/github.com/go-ini/ini/Makefile
Harshavardhana f5b4b0765a Update minio-go dependency ()
This updates dependency for

 - AWS S3 backend.
 - pkg/madmin

```
- Relax isValidBucketName to allow reading existing buckets. () (3 minutes ago) <Harshavardhana>
- For GCS the size limit of S3 is not useful. () (3 days ago) <Harshavardhana>
- s3utils: Support AWS S3 US GovCloud endpoint. () (3 days ago) <Harshavardhana>
- api: Always strip 80/443 port from host () (3 days ago) <Anis Elleuch>
- Redact signature strings properly. () (4 days ago) <Harshavardhana>
- api: Single putObject can use temporary file always. () (6 days ago) <Harshavardhana>
- Spelling fix () (7 days ago) <Jacob Taylor>
- api/encrypt: Get() on encrypted object should be a reader. () (2 weeks ago) <Harshavardhana>
- get: Fix reading an object if its size is unknown () (3 weeks ago) <Anis Elleuch>
- fixes  by updating the examples for put-encrypted-object and get-encrypted-object () (3 weeks ago) <Tejay Cardon>
- fix InvalidAccessKeyId error according to amazon documentation () (4 weeks ago) <samkevich>
- Add AWS S3 SSE-C example. () (4 weeks ago) <Harshavardhana>
- According to RFC7232 Etag should be in quotes for If-Match. () (5 weeks ago) <Harshavardhana>
- api: getReaderSize() should honor seeked file descriptors. () (5 weeks ago) <Harshavardhana>
- tests: Use bytes.Repeat() when generating big data () (5 weeks ago) <Anis Elleuch>
- api: Failed call retry with region only when http.StatusBadRequest. () (5 weeks ago) <Harshavardhana>
- api: Add NewWithCredentials() () (5 weeks ago) <Harshavardhana>
```
2017-06-19 16:02:35 -07:00

13 lines
155 B
Makefile

.PHONY: build test bench vet
build: vet bench
test:
go test -v -cover -race
bench:
go test -v -cover -race -test.bench=. -test.benchmem
vet:
go vet