File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3
3
## [ master] ( https://github.com/arangodb/go-driver/tree/master ) (N/A)
4
4
- Add Driver V2 in Alpha version
5
5
- Add HTTP2 support for V1 and V2
6
+ - Don't omit the ` stopwords ` field. The field is mandatory in 3.6 ArangoDB
6
7
7
8
## [ 1.1.0] ( https://github.com/arangodb/go-driver/tree/1.1.0 ) (2020-08-11)
8
9
- Use internal coordinator communication for cursors if specified coordinator was not found on endpoint list
Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ type ArangoSearchAnalyzerProperties struct {
118
118
119
119
// Stemming used by Text
120
120
Stemming * bool `json:"stemming,omitempty"`
121
- // Stopword used by Text
122
- Stopwords []string `json:"stopwords,omitempty "`
121
+ // Stopword used by Text. This field is not mandatory since version 3.7 of arangod so it can not be omitted in 3.6.
122
+ Stopwords []string `json:"stopwords"`
123
123
// StopwordsPath used by Text
124
124
StopwordsPath []string `json:"stopwordsPath,omitempty"`
125
125
}
You can’t perform that action at this time.
0 commit comments