Skip to content

Releases: junghoon-vans/spring-data-meilisearch

v0.4.0

23 Aug 13:49

Choose a tag to compare

🚀 Features

🐛 Bug Fixes

🛠️ Maintenance

📝 Documentation

🧪 Tests

v0.3.0

12 Aug 06:30

Choose a tag to compare

What's Changed

Provides a new way to set up JSON Handler.

The following JSON Handlers are supported:

  • com.meilisearch.sdk.json.GsonJsonHandler
  • com.meilisearch.sdk.json.JacksonJsonHandler

Annotation based configuration

public class CustomConfiguration extends MeilisearchConfiguration {

    @Override
    public JsonHandler jsonHandler() {
        return new JacksonJsonHandler();
    }
}

The default JSON Handler is GsonJsonHandler.
You can use other JSON Handler by overriding the jsonHandler() method.

Namespace based configuration

<bean id="jsonHandler" class="com.meilisearch.sdk.json.GsonJsonHandler"/>

The default JSON Handler is not provided by the XML Namespace.
JSON Handler must be defined as a bean with id="jsonHandler".

🛠️ Maintenance

v0.2.1

10 Aug 14:37

Choose a tag to compare

What's Changed

🛠️ Maintenance

v0.2.0

10 Aug 10:27

Choose a tag to compare

What's Changed

🛠️ Maintenance

v0.1.1

08 Aug 06:13

Choose a tag to compare

What's Changed

🛠️ Maintenance

  • refactor: remove unused implimentation in MeilisearchClientFactoryBean (#35) @junghoon-vans

v0.1.0

06 Aug 11:26
de15f6b

Choose a tag to compare

What's Changed

🚀 Features

🛠️ Maintenance

📝 Documentation