Skip to content

Commit a2c0cae

Browse files
committed
çhange version
1 parent 7ca3f3e commit a2c0cae

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

RELEASE_NOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# TerminusDB Client v10.0.29
2+
## Fixes 🛠
3+
* Fix getCommitsLog in WOQLClient
4+
5+
## New 🚀
6+
* add getDocumentHistory in WOQLClient class
7+
* add baseServer property to ConnectionConfig class
8+
19
# TerminusDB Client v10.0.28
210

311
## Fixes 🛠

lib/connectionConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ function ConnectionConfig(serverUrl, params) {
1919
* @type {string}
2020
*/
2121
this.server = undefined;
22-
23-
// the base server url without the team name
22+
23+
// the base server url without the team name
2424
this.baseServer = undefined;
2525

2626
// remote auth for authenticating to remote servers for push / fetch / clone

lib/woqlClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1857,7 +1857,7 @@ WOQLClient.prototype.apply = function (beforeVersion, afterVersion, message, mat
18571857
*/
18581858

18591859
// eslint-disable-next-line max-len
1860-
WOQLClient.prototype.docHistory = function (id, historyParams) {
1860+
WOQLClient.prototype.getDocumentHistory = function (id, historyParams) {
18611861
const params = historyParams || {};
18621862
params.id = id;
18631863
return this.dispatch(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@terminusdb/terminusdb-client",
3-
"version": "10.0.28",
3+
"version": "10.0.29",
44
"description": "TerminusDB client library",
55
"main": "index.js",
66
"types": "./dist/typescript/index.d.ts",

0 commit comments

Comments
 (0)