Skip to content

Commit d110365

Browse files
meili-bors[bot]meili-botbrunoocasali
authored
Merge #355
355: Update version for the next release (v0.15.0) r=brunoocasali a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-dart to a new version: "v0.15.0" Co-authored-by: meili-bot <[email protected]> Co-authored-by: Bruno Casali <[email protected]>
2 parents 656bd85 + 3d58293 commit d110365

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
[comment]: <> (All notable changes to this project will be documented in this file.)
22

3+
# 0.15.0
4+
### Breaking Changes:
5+
6+
- Change members of `Faceting` to be `final`, and remove the default values
7+
- Mark all `Searcheable<T>` fields in the constructor as `required`
8+
- Bug Fix `Searcheable<T>` had a wrong `matchesPosition` property, which was moved into `MeiliDocumentContainer<T>`
9+
10+
### Changes:
11+
12+
- Add `int? total` to `TasksResults`
13+
- Add `attributesToSearchOn` to `SearchQuery` and `IndexSearchQuery`
14+
- Add `Future<FacetSearchResult> facetSearch(FacetSearchQuery query)` to `MeiliSearchIndex`
15+
- Add `enum FacetingSortTypes`
16+
- Add `Map<String, FacetingSortTypes>? sortFacetValuesBy` to `Faceting`
17+
- [experimental]* Add `List? vector` to `SearchQuery` and `IndexSearchQuery`
18+
- [experimental]* Add `bool? showRankingScoreDetails` to `SearchQuery` and `IndexSearchQuery`
19+
- Add `bool? showRankingScore` to `SearchQuery` and `IndexSearchQuery`
20+
- Add `MeiliDocumentContainer<T>`
21+
- Add `Map<String, dynamic> src` to `Searchable` which exposes the raw json object returned from the server.
22+
Just in case we don't keep up with new meilisearch releases, the user has a way to access new features.
23+
24+
[experimental]* To adopt a experimental [change you must opt-in manually](https://www.meilisearch.com/docs/learn/experimental/overview#activating-experimental-features)
25+
326
# 0.14.0
427
### Breaking Changes:
528
- Moved `indexUid`, `query` from `SearchQuery` to the new `IndexSearchQuery`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can install the **meilisearch** package by adding a few lines into `pubspec.
5555

5656
```yaml
5757
dependencies:
58-
meilisearch: ^0.14.0
58+
meilisearch: ^0.15.0
5959
```
6060
6161
Then open your terminal and update dart packages.

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Version {
2-
static const String current = '0.14.0';
2+
static const String current = '0.15.0';
33

44
static String get qualifiedVersion {
55
return "Meilisearch Dart (v$current)";

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: meilisearch
22
description: Meilisearch Dart is the Meilisearch API client for Dart and Flutter developers.
3-
version: 0.14.0
3+
version: 0.15.0
44
homepage: https://meilisearch.com
55
repository: https://github.com/meilisearch/meilisearch-dart
66
issue_tracker: https://github.com/meilisearch/meilisearch-dart/issues

0 commit comments

Comments
 (0)