Skip to content

Commit 04cad1b

Browse files
authored
Merge pull request #141 from typesense/typesense-server-0.24.0-changes
Typesense Server 0.24.0 changes
2 parents 27f0bc5 + 4725bdc commit 04cad1b

27 files changed

+8681
-110
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
8888
nodes: [
8989
{
9090
host: "localhost",
91-
path: '', // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
91+
path: "", // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
9292
port: "8108",
9393
protocol: "http",
9494
},
@@ -146,7 +146,7 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
146146
{
147147
host: "localhost",
148148
port: "8108",
149-
path: '', // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
149+
path: "", // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
150150
protocol: "http",
151151
},
152152
],
@@ -198,7 +198,7 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
198198
nodes: [
199199
{
200200
host: "localhost",
201-
path: '', // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
201+
path: "", // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
202202
port: "8108",
203203
protocol: "http",
204204
},
@@ -239,7 +239,7 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
239239
nodes: [
240240
{
241241
host: "localhost",
242-
path: '', // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
242+
path: "", // Optional. Example: If you have your typesense mounted in localhost:8108/typesense, path should be equal to '/typesense'
243243
port: "8108",
244244
protocol: "http",
245245
},
@@ -321,7 +321,7 @@ For Federated / Multi-Index Search, you'd need to use the `index` widget. To the
321321
const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
322322
server: {
323323
apiKey: "abcd", // Be sure to use an API key that only allows search operations
324-
nodes: [{ host: "localhost", path:'/', port: "8108", protocol: "http" }],
324+
nodes: [{ host: "localhost", path: "/", port: "8108", protocol: "http" }],
325325
},
326326
// Search parameters that are common to all collections/indices go here:
327327
additionalSearchParameters: {
@@ -368,7 +368,8 @@ const typesenseInstantsearchAdapter = new TypesenseInstantSearchAdapter({
368368
## Compatibility
369369

370370
| Typesense Server | typesense-instantsearch-adapter | instantsearch.js | react-instantsearch | vue-instantsearch | angular-instantsearch |
371-
| ---------------- | ------------------------------- | ---------------- | ------------------- | ----------------- | --------------------- |
371+
|------------------|---------------------------------|------------------|---------------------|-------------------|-----------------------|
372+
| \>= v0.24 | \>= v2.5.0 | \>= 4.2.0 | \>= 6.0.0 | \>= 2.2.1 | \>= 3.0.0 |
372373
| \>= v0.21 | \>= v2.0.0 | \>= 4.2.0 | \>= 6.0.0 | \>= 2.2.1 | \>= 3.0.0 |
373374
| \>= v0.19 | \>= v1.0.0 | \>= 4.2.0 | \>= 6.0.0 | \>= 2.2.1 | \>= 3.0.0 |
374375
| \>= v0.15 | \>= v0.3.0 | \>= 4.2.0 | \>= 6.0.0 | \>= 2.2.1 | \>= 3.0.0 |

0 commit comments

Comments
 (0)