Skip to content

Tags: tedj/algoliasearch-client-javascript

Tags

3.24.11

Toggle 3.24.11's commit message
3.24.11

* FIX: allow `index.getSettings` without any arguments
    * this was a regression in 3.24.10
    * added tests

3.24.10

Toggle 3.24.10's commit message
3.24.10

* FIX: correct `index.exportSynonyms` and `index.exportRules`
  * they had the wrong implementation until now
  * add some tests to prevent regression

3.24.9

Toggle 3.24.9's commit message
3.24.9

* FIX: make sure long API keys are sent via the POST body
  * this wasn't the case in 3.24.8 because of a typo

3.24.8

Toggle 3.24.8's commit message
3.24.8

* add multi cluster management methods
  * [ Assign or Move a userID to a cluster](https://algolia.com/doc/api-reference/api-methods/assign-user-id/): `assignUserID`
  * [Get userID with highest number of records per cluster](https://algolia.com/doc/api-reference/api-methods/get-top-user-id/): `getTopUserID`
  * [Returns the userID data stored in the mapping](https://algolia.com/doc/api-reference/api-methods/get-user-id/): `getUserID`
  * [List the clusters available in a multi-clusters setup for a single appID](https://algolia.com/doc/api-reference/api-methods/list-clusters/): `listClusters`
  * [List the userIDs assigned to a multi-clusters appID](https://algolia.com/doc/api-reference/api-methods/list-user-id/): `listUserIDs`
  * [Remove a userID and associated data from the multi-clusters](https://algolia.com/doc/api-reference/api-methods/remove-user-id/): `removeUserID`
  * [Search for userIDs](https://algolia.com/doc/api-reference/api-methods/search-user-id/): `searchUserIDs`

3.24.7

Toggle 3.24.7's commit message
3.24.7

* don't throw an error when `copyIndex` without scope is used
  * if no scope is given, `settings`, as the default will be chosen

3.24.6

Toggle 3.24.6's commit message
3.24.6

* add `index.exportSynonyms` and `index.exportRules`
  * they will get all of the synonyms or query rules on an index
* add a new `scope` argument to `copyIndex`
  * this is the third argument (from, to, scope)
  * it's an array with settings, synonyms or rules
  * if specified, that data will also be copied if you copy the index

3.24.5

Toggle 3.24.5's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Haroenv Haroen Viaene
3.24.5

* feat(deleteBy): add deleteBy
  * deleteByQuery is deprecated now
  * the same, but now it happens at the indexing side
  * no major changes should be seen, please report if any
  * https://github.com/algolia/algoliasearch-client-javascript/wiki/Deprecated#indexdeletebyquery

3.24.4

Toggle 3.24.4's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Haroenv Haroen Viaene
3.24.4

* chore(build): provide jsDelivr the right file (algolia#599)

3.24.3

Toggle 3.24.3's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Haroenv Haroen Viaene
3.24.3

* chore(deprecation): remove deprecation from singular/plural methods; all these methods will stay existing
  * index.addObject(obj) or index.addObjects([obj])
  * index.partialUpdateObject(obj) or partialUpdateObjects([obj])
  * index.saveObject(obj) or index.saveObjects([obj])
  * index.deleteObject(objectID) or index.deleteObjects([objectID])
  * index.getObject(objectID) or index.getObjects([objectID])

3.24.2

Toggle 3.24.2's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Haroenv Haroen Viaene
2017-07-24 3.24.2

* chore(deprecation): add deprecation message to all methods that will be removed in v4 (algolia#573)
  * index.addObject(obj) --> index.addObjects([obj])
  * index.ttAdapter --> autocomplete.js
  * index.partialUpdateObject(obj) --> partialUpdateObjects([obj])
  * index.saveObject(obj) --> index.saveObjects([obj])
  * index.deleteObject(objectID) --> index.deleteObjects([objectID])
  * index.getObject(objectID) --> index.getObjects([objectID])
  * see https://github.com/algolia/algoliasearch-client-javascript/wiki/Deprecated for more information