Skip to content

Commit bda38a8

Browse files
authored
Merge pull request #56 from OLIOEX/fix-collections-truncate-len
fix(test): align local Typesense image with v30+ supported range
2 parents 3b3b57a + c92e364 commit bda38a8

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ruby-version: ['3.0', '3.2', '3.3', '3.4', '4.0']
1414
services:
1515
typesense:
16-
image: typesense/typesense:30.0.alpha1
16+
image: typesense/typesense:30.2
1717
ports:
1818
- 8108:8108
1919
volumes:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
typesense:
3-
image: typesense/typesense:29.0
3+
image: typesense/typesense:30.2
44
ports:
55
- "127.0.0.1:8108:8108"
66
volumes:

spec/typesense/curation_set_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
'id' => 'rule-1',
2828
'rule' => {
2929
'query' => 'test',
30-
'match' => 'exact'
30+
'match' => 'exact',
31+
'stem' => false,
32+
'synonyms' => false
3133
},
3234
'includes' => [{ 'id' => '123', 'position' => 1 }],
3335
'excludes' => [],

spec/typesense/curation_sets_spec.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
'id' => 'rule-1',
2828
'rule' => {
2929
'query' => 'test',
30-
'match' => 'exact'
30+
'match' => 'exact',
31+
'stem' => false,
32+
'synonyms' => false
3133
},
3234
'includes' => [{ 'id' => '123', 'position' => 1 }],
3335
'excludes' => [],

0 commit comments

Comments
 (0)