Skip to content

Commit 815fe7f

Browse files
Update version -> 0.12.13
1 parent 8d91e92 commit 815fe7f

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.12.12"
2+
current_version = "0.12.13"
33
parse = "^(?P<major>0|[1-9]\\d*)\\.(?P<minor>0|[1-9]\\d*)\\.(?P<patch>0|[1-9]\\d*)(?:-(?P<prerelease>(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"
44
serialize = [
55
"{major}.{minor}.{patch}-{prerelease}+{buildmetadata}",

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Release](https://img.shields.io/github/v/release/IBM/cloudant-node-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-node-sdk/releases/latest)
33
[![Docs](https://img.shields.io/static/v1?label=TypeDoc&message=latest&color=blue)](https://ibm.github.io/cloudant-node-sdk/)
44

5-
# IBM Cloudant Node.js SDK Version 0.12.12
5+
# IBM Cloudant Node.js SDK Version 0.12.13
66

77
IBM Cloudant Node.js SDK is a client library that interacts with the
88
[IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=node).
@@ -68,8 +68,8 @@ project:
6868
- Handles the authentication.
6969
- Familiar user experience with IBM Cloud SDKs.
7070
- Flexibility to use either built-in models or byte-based requests and responses for documents.
71-
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Changes_Follower.md)
72-
- Built-in [Pagination](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Pagination.md) (beta)
71+
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Changes_Follower.md)
72+
- Built-in [Pagination](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Pagination.md) (beta)
7373
- `Promise` based design with asynchronous HTTP requests.
7474
- Use either as native JavaScript or take advantage of TypeScript models.
7575
- Transparently compresses request and response bodies.
@@ -99,16 +99,16 @@ account.
9999

100100
There are several ways to **set** these authentication properties:
101101

102-
1. As [environment variables](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Authentication.md#authentication-with-environment-variables)
103-
2. The [programmatic approach](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Authentication.md#programmatic-authentication)
104-
3. With an [external credentials file](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Authentication.md#authentication-with-external-configuration)
102+
1. As [environment variables](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Authentication.md#authentication-with-environment-variables)
103+
2. The [programmatic approach](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Authentication.md#programmatic-authentication)
104+
3. With an [external credentials file](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Authentication.md#authentication-with-external-configuration)
105105

106106
The following section describes the different authentication types and provides environment variable examples.
107107
Examples for other configuration methods are available by following the provided links.
108108

109109
### Authentication
110110

111-
Consult the [authentication document](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Authentication.md)
111+
Consult the [authentication document](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Authentication.md)
112112
for comprehensive details of all the available authentication methods and how to configure them with environment settings
113113
or programmatically.
114114

@@ -154,10 +154,10 @@ service.getAllDbs().then(response => {
154154
});
155155
```
156156

157-
[More tutorial examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Examples.md) for creating a database
157+
[More tutorial examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Examples.md) for creating a database
158158
and document create, read, update and delete operations.
159159

160-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/examples#examples-for-node).
160+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/examples#examples-for-node).
161161

162162
### Error handling
163163

@@ -181,7 +181,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`.
181181
The returned byte stream allows the response body to be consumed
182182
without triggering JSON unmarshalling that is typically performed by the SDK.
183183

184-
The [update document](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs/Examples.md#3-update-your-previously-created-document) section
184+
The [update document](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs/Examples.md#3-update-your-previously-created-document) section
185185
contains examples for both request and response byte stream cases.
186186

187187
The API reference contains further examples of using byte streams.
@@ -197,7 +197,7 @@ Expand them to see examples of:
197197

198198
### Further resources
199199

200-
- [Cloudant Node.js SDK feature docs](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/docs)
200+
- [Cloudant Node.js SDK feature docs](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/docs)
201201
- [Cloudant API docs](https://cloud.ibm.com/apidocs/cloudant?code=node):
202202
API reference including usage examples for Cloudant Node.js SDK API.
203203
- [TypeDoc](https://ibm.github.io/cloudant-node-sdk/):
@@ -282,7 +282,7 @@ If you encounter an issue with the project, you are welcome to submit a
282282

283283
Before you submit a bug report, search for
284284
[similar issues](https://github.com/IBM/cloudant-node-sdk/issues?q=is%3Aissue) and review the
285-
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
285+
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
286286

287287
Please consult the [security policy](https://github.com/IBM/cloudant-node-sdk/security/policy) before opening security related issues.
288288

@@ -312,8 +312,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.
312312

313313
## Contributing
314314

315-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/CONTRIBUTING.md).
315+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/CONTRIBUTING.md).
316316

317317
## License
318318

319-
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/LICENSE).
319+
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/LICENSE).

docs/Changes_Follower.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min
6767
instantiation if it is insufficient. The default client configuration has sufficiently long timeouts.
6868

6969
For use-cases where these configuration limitations are too restrictive then write code to use the SDK's
70-
[POST `_changes` API](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/examples#postchanges) instead of the follower.
70+
[POST `_changes` API](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/examples#postchanges) instead of the follower.
7171

7272
## Error suppression
7373

@@ -101,7 +101,7 @@ The follower is not optimized for some use cases and it is not recommended to us
101101
* Setting `include_docs` and larger document sizes (for example > 10 kiB).
102102
* The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it can never catch-up).
103103

104-
In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/examples#postchanges)
104+
In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/examples#postchanges)
105105
for specific control over the number of change requests made and the content size of the responses.
106106

107107
## Checkpoints

docs/Examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,4 +669,4 @@ You have deleted the document.
669669

670670
## Further code examples
671671

672-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/examples#examples-for-node).
672+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/examples#examples-for-node).

docs/Pagination.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ then a `429 Too Many Requests` error occurs.
7373
Pagination is available for these operations:
7474
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=node#postalldocs)
7575
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=node#postpartitionalldocs)
76-
* [Global all documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/allDocsPagination.ts)
77-
* [Partitioned all documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/partitionAllDocsPagination.ts)
76+
* [Global all documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/allDocsPagination.ts)
77+
* [Partitioned all documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/partitionAllDocsPagination.ts)
7878
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=node#postdesigndocs)
79-
* [Design documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/designDocsPagination.ts)
79+
* [Design documents examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/designDocsPagination.ts)
8080
* Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=node#postfind)
8181
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=node#postpartitionfind)
82-
* [Global find selector query examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/findPagination.ts)
83-
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/partitionFindPagination.ts)
82+
* [Global find selector query examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/findPagination.ts)
83+
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/partitionFindPagination.ts)
8484
* Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=node#postsearch)
8585
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=node#postpartitionsearch)
86-
* [Global search examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/searchPagination.ts)
87-
* [Partitioned search examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/partitionSearchPagination.ts)
86+
* [Global search examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/searchPagination.ts)
87+
* [Partitioned search examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/partitionSearchPagination.ts)
8888
* Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=node#postview)
8989
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=node#postpartitionview)
90-
* [Global view examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/viewPagination.ts)
91-
* [Partitioned view examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.12/test/examples/src/features/pagination/ts/partitionViewPagination.ts)
90+
* [Global view examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/viewPagination.ts)
91+
* [Partitioned view examples](https://github.com/IBM/cloudant-node-sdk/tree/v0.12.13/test/examples/src/features/pagination/ts/partitionViewPagination.ts)
9292

9393
The examples presented in this `README` are for all documents in a partition.
9494
The links in the list are to equivalent examples for each of the other available operations.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IBM Cloudant Node.js SDK Version 0.12.12 Detailed Documentation
1+
# IBM Cloudant Node.js SDK Version 0.12.13 Detailed Documentation
22

33
## Table of Contents
44

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ibm-cloud/cloudant",
3-
"version": "0.12.12",
3+
"version": "0.12.13",
44
"description": "IBM Cloudant Node.js SDK",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)