algoliasearch-client-scala icon indicating copy to clipboard operation
algoliasearch-client-scala copied to clipboard

⚡️ A fully-featured and blazing-fast Scala API client to interact with Algolia.

Results 23 algoliasearch-client-scala issues
Sort by recently updated
recently updated
newest added

When generating secured API keys, an optional [restrictSources](https://www.algolia.com/doc/api-reference/api-methods/generate-secured-api-key/#method-param-restrictsources) parameter can be used as a string (such as `"192.168.1.0"` or `"192.168.1.0/24"`). We discovered that some API clients wrongly accept other types...

The `autoGenerateObjectIDIfNotExist` boolean parameter is for now only valid in the context of the `saveObjects()` method. As pointed out by @julienpa, it would make sense to also accepts it as...

build.sbt ``` name := "algoliaplusfeed" version := "0.13.6" scalaVersion := "2.12.4" libraryDependencies += "com.algolia" %% "algoliasearch-scala" % "[1,)" resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" ``` project/plugins.sbt ``` addSbtPlugin("com.eed3si9n" %...

The spec and tests for this new method are described here: https://github.com/algolia/algoliasearch-client-specs/pull/26

Breaking change

The spec for this new test is described here: https://github.com/algolia/algoliasearch-client-specs/pull/34

Breaking change

The engine is introducing a new feature allowing to optionally compress request payloads (ie. POST/PUT body, http or https). To test it: Perform a `saveObject` with the content encoded with...

API feature
Breaking change

**TL;DR**: The `condition` field on rules is now optional. Actions required: - Update the `cts` with the information on : [#71](https://github.com/algolia/algoliasearch-client-specs-internal/pull/71/files) - On strongly typed clients, update types in query...

Breaking change

The `facetFilters` parameter is currently typed as a `Seq[String]`. However, it can either be used as: * `String` * `Seq[String]` * `Seq[Seq[String]]` * `Seq[?]` where `?` can be a composed...

- Algolia Client Version: 1.29.0 - Language Version: Scala ### Description When using partialUpdate in batch mode, new object is created even if createIfNotExists is false. ### Steps To Reproduce...