| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix autofixable lints | Stefan Majewsky | 2024-07-01 | 11 | -102/+102 |
| | | |||||
| * | Update gophercloud to 2.0.0 | Sandro Jäckel | 2024-07-01 | 1 | -6/+7 |
| | | |||||
| * | Fix remaining lints | Sandro Jäckel | 2023-10-25 | 1 | -2/+3 |
| | | |||||
| * | add Method, Target to type UnexpectedStatusCodeError | Stefan Majewsky | 2023-10-23 | 2 | -5/+7 |
| | | |||||
| * | Fix linting errors | Sandro Jäckel | 2022-10-28 | 7 | -24/+13 |
| | | |||||
| * | Format with go 1.19 | Sandro Jäckel | 2022-10-26 | 2 | -2/+1 |
| | | |||||
| * | fix `make test` | Stefan Majewsky | 2021-05-28 | 1 | -0/+3 |
| | | |||||
| * | rename Object.UploadWithWriter to UploadFromWriter | Stefan Majewsky | 2021-05-28 | 1 | -1/+1 |
| | | |||||
| * | add test for segment expiration | Muhammad Talal Anwar | 2018-09-06 | 1 | -4/+6 |
| | | |||||
| * | add test for large object expiration | Muhammad Talal Anwar | 2018-09-06 | 1 | -19/+54 |
| | | |||||
| * | adjust semantics of Object.InspectSymlink, rename to Object.SymlinkHeaders | Stefan Majewsky | 2018-05-30 | 1 | -7/+7 |
| | | | | | | | The additional guarantee that Object.SymlinkHeaders becomes equivalent to Object.Headers for non-symlinks will be useful e.g. for swift-http-import's usecase. | ||||
| * | add support for symlinks to ObjectIterator | Stefan Majewsky | 2018-05-07 | 1 | -14/+86 |
| | | | | | Closes #2. | ||||
| * | add Object.SymlinkTo(), Object.InspectSymlink() etc. | Stefan Majewsky | 2018-05-07 | 1 | -1/+78 |
| | | |||||
| * | make tests work with Keystone auth | Stefan Majewsky | 2018-05-04 | 1 | -8/+4 |
| | | |||||
| * | add support for pseudo-directories to ObjectIterator | Stefan Majewsky | 2018-05-03 | 1 | -18/+87 |
| | | |||||
| * | add configurable User-Agent to Schwift, Gopherschwift | Stefan Majewsky | 2018-05-03 | 1 | -1/+1 |
| | | |||||
| * | fix CopyTo test | Stefan Majewsky | 2018-05-03 | 1 | -1/+1 |
| | | |||||
| * | test coverage for bulk-delete fallback code path | Stefan Majewsky | 2018-05-02 | 1 | -32/+49 |
| | | |||||
| * | remove Object.MoveTo | Stefan Majewsky | 2018-05-02 | 1 | -7/+0 |
| | | | | | | It's trivially replicable by clients, and has an ugly API that I don't want to commit on at this point. | ||||
| * | test coverage for large object operations | Stefan Majewsky | 2018-05-02 | 1 | -0/+195 |
| | | |||||
| * | revamp the LargeObject API | Stefan Majewsky | 2018-05-02 | 5 | -119/+83 |
| | | | | | | | | | | | I thought about this some more, and I believe the Writer-based approach in the previous version of the LargeObject API does not scale: It makes it very hard to write code that uploads segments without resorting to a buffer the same size as the segments. I don't want gigabyte-scale buffers filling up my RAM, so this commit switches to a different API based on Readers. LargeObject.Append() now behaves very similar to Object.Upload(), which I find quite nice. | ||||
| * | add DeleteOptions to Object.Delete() | Stefan Majewsky | 2018-04-30 | 3 | -3/+74 |
| | | |||||
| * | initial support for large objects | Stefan Majewsky | 2018-04-30 | 3 | -1/+378 |
| | | | | | | | | | | | | | This has gone through a lot of iterations on my branch, and I'm quite happy with the parts of the API that exist now. Test coverage can still be better, and will get better in the following commits. The API is not yet finished: I want to add Options arguments to Object.Upload(), Object.Copy(), Object.Move() and Object.Delete() that specify how each of these operations affect existing segments (and, later, also existing symlinks). For Upload(), uploading in segments shall become as easy as flipping a single switch. | ||||
| * | tryCompute{ContentLength, Etag}: add special cases for strings.Reader, nil | Stefan Majewsky | 2018-04-27 | 1 | -4/+11 |
| | | |||||
| * | fix tests for Swift Queens | Stefan Majewsky | 2018-04-27 | 1 | -3/+5 |
| | | |||||
| * | revamp the Headers API | Stefan Majewsky | 2018-03-11 | 10 | -66/+68 |
| | | | | | | | | | | | | | | | | | | | 1. Move common methods of AccountHeaders, ContainerHeaders, ObjectHeaders into a base type Headers. 2. Fold Headers into RequestOptions to remove one of the two optional arguments on request methods. The new Headers.ToOpts() method offers a nice experience for users passing Headers to request methods. The Update() methods keep the explicit Headers argument since the Headers argument is not optional there. The only downside is that we lose a bit of type-safety because RequestOptions takes any Headers instance, so e.g. ContainerHeaders could be passed to Object.Upload(). I believe the benefits outweigh this problem. | ||||
| * | add Account.BulkDelete() | Stefan Majewsky | 2018-03-09 | 2 | -0/+95 |
| | | |||||
| * | generalize BulkUploadError into BulkError | Stefan Majewsky | 2018-03-08 | 1 | -3/+3 |
| | | | | | For use in Account.BulkDelete(). | ||||
| * | add Account.BulkUpload(), BulkUploadError, BulkObjectError | Stefan Majewsky | 2018-03-08 | 1 | -0/+135 |
| | | |||||
| * | add Object.Copy() and Object.Move() | Stefan Majewsky | 2018-02-21 | 1 | -23/+50 |
| | | |||||
| * | reorganize code | Stefan Majewsky | 2018-02-19 | 9 | -0/+1220 |
| * Gophercloud dependencies move into subpackage gopherschwift. * Tests move into subpackage tests (to avoid import cycles). + Rename "Client" to "Backend". | |||||
