Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.0.2 #13

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading