Skip to content

Commit 2335919

Browse files
committed
Add 0.14.0 release to instant CHANGELOG
1 parent 2bd6163 commit 2335919

File tree

12 files changed

+74
-23
lines changed

12 files changed

+74
-23
lines changed

.changeset/calm-beans-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@meilisearch/instant-meilisearch": minor
3+
---
4+
5+
rolling back the v1.0 release

packages/instant-meilisearch/CHANGELOG.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
# @meilisearch/instant-meilisearch
22

3-
## 1.0.0
3+
## 0.14.0
4+
5+
### Major Changes
6+
7+
- 5b6be19: Added ability to override a selection of Meilisearch search parameters.
8+
9+
⚠️ The returned value of the core `instantMeiliSearch` function has changed!
10+
11+
This change was necessary for the aforementioned ability to be implemented and
12+
applied in a clean manner.
13+
The necessary migration should be of minimal impact.
14+
15+
### Migration
16+
17+
Change the following
18+
19+
```js
20+
// 1.
21+
const client = instantMeiliSearch(/*...*/);
22+
// 2.
23+
const searchClient = instantMeiliSearch(/*...*/);
24+
// 3.
25+
instantsearch({
26+
indexName: "movies",
27+
searchClient: instantMeiliSearch(/*...*/),
28+
});
29+
```
30+
31+
to the following
32+
33+
```js
34+
// 1.
35+
const { searchClient: client } = instantMeiliSearch(/*...*/);
36+
// 2.
37+
const { searchClient } = instantMeiliSearch(/*...*/);
38+
// 3.
39+
instantsearch({
40+
indexName: "movies",
41+
searchClient: instantMeiliSearch(/*...*/).searchClient,
42+
});
43+
```
44+
45+
### Patch Changes
46+
47+
- 06377ef: Fixes issue where backslashes ("\") and quotes (`"`) are not escaped in filters.
48+
49+
## [DEPRECATED] 1.0.0
450

551
### Major Changes
652

packages/instant-meilisearch/__tests__/assets/games.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,4 @@
374374
"red"
375375
]
376376
}
377-
]
377+
]

packages/instant-meilisearch/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meilisearch/instant-meilisearch",
3-
"version": "1.0.0",
3+
"version": "0.14.0",
44
"private": false,
55
"description": "The search client to use Meilisearch with InstantSearch.",
66
"homepage": "https://github.com/meilisearch/meilisearch-js-plugins/tree/main/packages/instant-meilisearch",
@@ -78,4 +78,4 @@
7878
"tslib": "^2.6.1",
7979
"typescript": "^4.9.5"
8080
}
81-
}
81+
}

playgrounds/angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@angular/platform-browser": "~15.1.0",
2020
"@angular/platform-browser-dynamic": "~15.1.0",
2121
"@angular/router": "~15.1.0",
22-
"@meilisearch/instant-meilisearch": "1.0.0",
22+
"@meilisearch/instant-meilisearch": "0.14.0",
2323
"algoliasearch": "^4.17.2",
2424
"angular-instantsearch": "^4.4.1",
2525
"instantsearch.js": "^4.56.2",
@@ -39,4 +39,4 @@
3939
"browserslist": [
4040
"defaults"
4141
]
42-
}
42+
}

playgrounds/autocomplete/assets/games.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,4 @@
374374
"red"
375375
]
376376
}
377-
]
377+
]

playgrounds/geo-javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"devDependencies": {
1414
"@babel/core": "^7.20.12",
15-
"@meilisearch/instant-meilisearch": "1.0.0",
15+
"@meilisearch/instant-meilisearch": "0.14.0",
1616
"eslint-config-meilisearch": "*"
1717
},
1818
"browserslist": [
@@ -22,4 +22,4 @@
2222
"dependencies": {
2323
"scriptjs": "^2.5.9"
2424
}
25-
}
25+
}

playgrounds/javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
],
1919
"license": "MIT",
2020
"dependencies": {
21-
"@meilisearch/instant-meilisearch": "1.0.0"
21+
"@meilisearch/instant-meilisearch": "0.14.0"
2222
}
23-
}
23+
}

playgrounds/local-react/assets/games.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"genres": [
1919
"Adventure",
20-
"Science Fiction"
20+
"\"Science's\" Fiction"
2121
],
2222
"misc": [],
2323
"color": [
@@ -42,7 +42,7 @@
4242
],
4343
"genres": [
4444
"Romance",
45-
"Science Fiction"
45+
"\"Science's\" Fiction"
4646
],
4747
"misc": [],
4848
"color": [
@@ -67,7 +67,7 @@
6767
],
6868
"genres": [
6969
"Drama",
70-
"Science Fiction"
70+
"\"Science's\" Fiction"
7171
],
7272
"misc": [],
7373
"color": [
@@ -220,7 +220,7 @@
220220
],
221221
"genres": [
222222
"Action",
223-
"Science Fiction"
223+
"\"Science's\" Fiction"
224224
],
225225
"misc": [],
226226
"color": [
@@ -367,11 +367,11 @@
367367
"Single player"
368368
],
369369
"genres": [
370-
"Science Fiction"
370+
"\"Science's\" Fiction"
371371
],
372372
"misc": [],
373373
"color": [
374374
"red"
375375
]
376376
}
377-
]
377+
]

playgrounds/local-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"author": "",
2525
"license": "ISC",
2626
"dependencies": {
27-
"@meilisearch/instant-meilisearch": "1.0.0",
27+
"@meilisearch/instant-meilisearch": "0.14.0",
2828
"instantsearch.css": "^8.0.0",
2929
"react": "^17.0.1",
3030
"react-dom": "^17.0.1",
@@ -39,4 +39,4 @@
3939
"cypress": "^8.6.0",
4040
"eslint-config-meilisearch": "*"
4141
}
42-
}
42+
}

0 commit comments

Comments
 (0)