Skip to content

Tags: algolia-bot/algoliasearch-client-javascript

Tags

3.24.3

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

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

3.24.1

Verified

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

* feat(headers): add functions to remove and get extra headers (algolia#572)
  * client.setExtraHeader('X-cool-header','hello there');
  * client.getExtraHeader('X-cool-header'); //hello there
  * client.unsetExtraHeader('X-cool-header');
  * client.getExtraHeader('X-cool-header'); //undefined
* feat(deprecation): use console.warn to be more visible
* refact(rules): Adapt to latest JSON schema for Query Rules

3.24.0

2017-06-21 3.24.0

  * feat(rules): Add query rules beta version, you cannot use this for now

3.23.0

2017-06-08 3.23.0

  * feat(places): Add places.getObject(); fixes algolia/places#381

3.22.3

2017-05-29 3.22.3

  * fix(dependency): Do not pin debug dependency anymore
  fixes algolia#556

3.22.2

2017-03-13 3.22.2

  * fix(partialUpdateObjects): allow createIfNotExists (algolia#552)
    Much like partialUpdateObject, allow createIfNotExists
    fixes algolia#551

3.22.1

3.22.1

  * fix(packaging): put back envify in deps
    * browserify transforms are applied for node_modules/pkg

3.22.0

3.22.0

  * feat(API): rename all *userKey[s] methods to *apiKey[s]
    * client/index.listUserKeys() => client/index.listApiKeys()
    * client/index.getUserKeyACL() => client/index.getApiKey()
    * client/index.deleteUserKey() => client/index.deleteApiKey()
    * client/index.addUserKey() => client/index.addApiKey()
    * client/index.udpateUserKey() => client/index.updateApiKey()
  * fix(packaging): remove useless files for packaging (reduce package file size)

3.21.1

3.21.1

 * fix(browse*): use POST instead of GET to avoid limits (algolia#503)