From d5c318cbc684ac42d0211df4aeb2bec3169729d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 15:18:54 +0530 Subject: [PATCH] chore(main): release 0.0.2 (#13) * chore(main): release 0.0.2 * docs: updated changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: DaniAkash --- CHANGELOG.md | 14 ++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bcf896..08406b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.0.2](https://github.com/Clarifai/clarifai-nodejs/compare/v0.0.1...v0.0.2) (2024-05-07) + + +### Features + +* search & datasets ([#8](https://github.com/Clarifai/clarifai-nodejs/issues/8)) ([39cd278](https://github.com/Clarifai/clarifai-nodejs/commit/39cd278b66ab70fa3993480044d3b1057c5b6a67)) + - A new `Dataset` class was added with several methods for handling datasets, including creating and deleting versions, listing versions, and uploading data from a folder or a CSV file. + - Several new methods were added to the `Input` class for handling inputs, including methods for bulk uploading, waiting for inputs, deleting failed inputs, and retrying uploads. + - Several new methods and properties were added to the `Search` class, including support for different search algorithms and metrics, and improved handling of queries and pagination. + +### Miscellaneous Chores + +* One of the dependencies, `uuidv4` has been deprecated in npm hence it has been replaced with the recommended `uuid` package. + ## 0.0.1 (2024-04-02) diff --git a/package-lock.json b/package-lock.json index 57372ef..9f386ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clarifai-nodejs", - "version": "0.0.1", + "version": "0.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "clarifai-nodejs", - "version": "0.0.1", + "version": "0.0.2", "license": "Apache-2.0", "dependencies": { "@grpc/grpc-js": "^1.10.1", diff --git a/package.json b/package.json index fc9ab53..38e210c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clarifai-nodejs", - "version": "0.0.1", + "version": "0.0.2", "description": "The official Clarifai Node.js SDK", "source": "src/index.ts", "main": "dist/main.js",