Skip to content

Commit ad3c63b

Browse files
authored
Merge branch 'main' into expose-meilisearch-package
2 parents ac6eb90 + 8bf9016 commit ad3c63b

File tree

27 files changed

+105
-31
lines changed

27 files changed

+105
-31
lines changed

.github/workflows/meilisearch-prototype-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
strategy:
124124
fail-fast: false
125125
matrix:
126-
node: ['14', '16', '18']
126+
node: ['18', '20']
127127
name: integration-tests (Node.js ${{ matrix.node }})
128128
steps:
129129
- uses: actions/checkout@v4

.github/workflows/pre-release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
strategy:
124124
fail-fast: false
125125
matrix:
126-
node: ['14', '16', '18']
126+
node: ['18', '20']
127127
name: integration-tests (Node.js ${{ matrix.node }})
128128
steps:
129129
- uses: actions/checkout@v4

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
strategy:
135135
fail-fast: false
136136
matrix:
137-
node: ['14', '16', '18']
137+
node: ['18', '20']
138138
name: integration-tests (Node.js ${{ matrix.node }})
139139
steps:
140140
- uses: actions/checkout@v4

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<p align="center">
1818
<a href="https://github.com/meilisearch/meilisearch-js-plugins/actions"><img src="https://github.com/meilisearch/meilisearch-js-plugins/workflows/Tests/badge.svg?branch=main" alt="Tests"></a>
1919
<a href="https://github.com/meilisearch/meilisearch-js-plugins/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-informational" alt="License"></a>
20-
<a href="https://github.com/meilisearch/meilisearch/discussions" alt="Discussions"><img src="https://img.shields.io/badge/github-discussions-red" /></a>
2120
<a href="https://ms-bors.herokuapp.com/repositories/48"><img src="https://bors.tech/images/badge_small.svg" alt="Bors enabled"></a>
2221
</p>
2322

bors.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
status = [
22
'style-check',
33
'types-check',
4-
'integration-tests (Node.js 14)',
5-
'integration-tests (Node.js 16)',
64
'integration-tests (Node.js 18)',
5+
'integration-tests (Node.js 20)',
76
'autocomplete-client end-to-end-tests',
87
'instant-meilisearch end-to-end-tests',
98
]

packages/autocomplete-client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @meilisearch/autocomplete-client
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 00f30c9: Remove node 14 and 16 from workflow
8+
39
## 0.2.2
410

511
### Patch Changes

packages/autocomplete-client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ This package guarantees compatibility with [version v1.x of Meilisearch](https:/
255255

256256
**Node / NPM versions**:
257257

258-
- NodeJS >= 14 <= 18
258+
- NodeJS >= 18
259259

260260
## ⚙️ Development Workflow and Contributing
261261

packages/autocomplete-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meilisearch/autocomplete-client",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"private": false,
55
"description": "The search client to use Meilisearch with autocomplete.js.",
66
"homepage": "https://github.com/meilisearch/meilisearch-js-plugins/tree/main/packages/autocomplete-client",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PACKAGE_VERSION = '0.2.2'
1+
export const PACKAGE_VERSION = '0.3.0'

packages/instant-meilisearch/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @meilisearch/instant-meilisearch
22

3+
## 0.16.0
4+
5+
### Minor Changes
6+
7+
- b1343c1: Enable experimental hybrid search
8+
9+
## 0.15.0
10+
11+
### Minor Changes
12+
13+
- 72726ac: Update meilisearch-js version
14+
- 36b5a62: Fixed RegExp in filter-adapter.ts and sort-context.ts to work in Safari
15+
316
## 0.14.0
417

518
### Minor Changes

0 commit comments

Comments
 (0)