Navigation Menu

Skip to content

Releases: go-kivik/couchdb

v3.4.1

28 Aug 10:19
4367c26
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.0...v3.4.1

Request that the server compress responses with gzip

09 Jul 20:44
c637049
Compare
Choose a tag to compare
Merge pull request #329 from go-kivik/prep-v3

Bump version constant

v3.3.0

02 Jan 16:56
8c0cd7a
Compare
Choose a tag to compare

Trigger a re-authentication when a cookie will expire within a minute

06 Jun 12:54
7c3aefb
Compare
Choose a tag to compare
Merge pull request #283 from go-kivik/earlyAuth

Re-authenticate if the cookie is nearing expiration

Reset cookie when 401 received from server

03 Jun 20:56
7a5e3ef
Compare
Choose a tag to compare
Merge pull request #280 from cv-library/cookie-sync-error

Drop cookie if we get a 401 after authenticating using one.

Fix handling of plus signs (+) in doc IDs

16 May 20:04
6a9ba41
Compare
Choose a tag to compare
Merge pull request #279 from go-kivik/plussign-v3

Support + characters in doc IDs properly

Fix a nil pointer dereference bug, and support Go 1.16

10 Apr 16:39
6f4a6b9
Compare
Choose a tag to compare
Merge pull request #274 from go-kivik/vers-v3

Bump version constant for next release

Fix escaping of doc IDs passed to Get()

26 Jan 16:41
16c544a
Compare
Choose a tag to compare

Fix double-escaping of document IDs passed to Get (regression introduced in v3.2.2)

Avoid duplicate rev= arguments when calling Delete()

02 Dec 13:44
2b1cc4b
Compare
Choose a tag to compare

This fixes an obscure bug which can occur when a rev argument and a rev option are provided ot the Delete() method.

It also properly updates the Version constant to 3.2.5.

No longer require ContentType for PutAttachment()

02 Dec 11:51
487ff2f
Compare
Choose a tag to compare

The CouchDB server automatically falls back to application/octet-stream when a Content Type is omitted for file attachments, but prior to this, the driver prevented omitting that value. This allows omitting it, and falling back to the server default.