<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go-schwift/account.go, branch v1.1.0</title>
<subtitle>Go client library for Swift (OpenStack object storage) aka Rackspace Cloud Files aka Memset Memstore
</subtitle>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/'/>
<entry>
<title>document non-threadsafety</title>
<updated>2020-10-14T12:27:16+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>stefan.majewsky@sap.com</email>
</author>
<published>2020-10-14T12:27:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=bd1c74594efeab1268531225d304ebae8992e286'/>
<id>bd1c74594efeab1268531225d304ebae8992e286</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo</title>
<updated>2020-04-13T01:23:30+00:00</updated>
<author>
<name>Muhammad Talal Anwar</name>
<email>talalanwar@outlook.com</email>
</author>
<published>2020-04-13T01:23:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=08c75d8f6405d126e188744cd5cf9f05826e1532'/>
<id>08c75d8f6405d126e188744cd5cf9f05826e1532</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make the IsEqualTo() methods public</title>
<updated>2018-05-30T12:57:29+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-05-30T12:57:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=81732006cfe081371d8a67e47408d4eae7542179'/>
<id>81732006cfe081371d8a67e47408d4eae7542179</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>proof-read documentation</title>
<updated>2018-05-03T12:09:36+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-05-03T12:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=8cb7c02b4294d3f596633284abc144ba98b565b8'/>
<id>8cb7c02b4294d3f596633284abc144ba98b565b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add Account.isEqualTo, Container.isEqualTo</title>
<updated>2018-04-27T17:55:34+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-04-27T17:55:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=62ea09de889bd5c5048540ab4c44fcdb5002467a'/>
<id>62ea09de889bd5c5048540ab4c44fcdb5002467a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>s/project name/project ID/</title>
<updated>2018-04-27T13:29:17+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-04-27T13:29:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=61cbe4314ea1f626a8b785628d053e2af52c1ddd'/>
<id>61cbe4314ea1f626a8b785628d053e2af52c1ddd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>revamp the Headers API</title>
<updated>2018-03-11T18:41:33+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-03-11T18:38:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=d23b4052c0866698b14ac13ac98581d9f5440a9b'/>
<id>d23b4052c0866698b14ac13ac98581d9f5440a9b</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix URL computation in Account.Capabilties()</title>
<updated>2018-03-08T20:53:13+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-03-08T20:53:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=bded7c64d485ce5aaf82982573a041314257b4dc'/>
<id>bded7c64d485ce5aaf82982573a041314257b4dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add struct Capabilities, Account.{,Raw}Capabilities</title>
<updated>2018-02-26T19:53:42+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-02-26T19:46:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=f5e33c280f225b04652b6898d586c5d9ec60052e'/>
<id>f5e33c280f225b04652b6898d586c5d9ec60052e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>reorganize code</title>
<updated>2018-02-19T20:33:49+00:00</updated>
<author>
<name>Stefan Majewsky</name>
<email>majewsky@gmx.net</email>
</author>
<published>2018-02-19T20:30:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.xyrillian.de/go-schwift/commit/?id=60d4779889baedc44972d4749daa073efca3b25c'/>
<id>60d4779889baedc44972d4749daa073efca3b25c</id>
<content type='text'>
* Gophercloud dependencies move into subpackage gopherschwift.
* Tests move into subpackage tests (to avoid import cycles).
+ Rename "Client" to "Backend".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Gophercloud dependencies move into subpackage gopherschwift.
* Tests move into subpackage tests (to avoid import cycles).
+ Rename "Client" to "Backend".
</pre>
</div>
</content>
</entry>
</feed>
