Skip to content

Commit be5e811

Browse files
authored
Merge pull request #55 from gogepp/dev
Release 0.4.12
2 parents 54cd72b + f452e83 commit be5e811

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
77

8+
## [0.4.12] 2023-12-07
9+
10+
### Fixed
11+
12+
- Fixed filtering when using ES search
13+
814
## [0.4.11] 2023-11-29
915

1016
### Added

imports/api/publications.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ Meteor.publish({
115115
}
116116
})
117117
}
118-
transformedQuery = {genomeId: { $in: queryGenomeIds }, $or: geneResults}
118+
delete query.query
119+
transformedQuery = {...query, genomeId: { $in: queryGenomeIds }, $or: geneResults}
119120
} else {
120121
transformedQuery = { ...query, genomeId: { $in: queryGenomeIds } };
121122
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genoboo",
3-
"version": "0.4.11",
3+
"version": "0.4.12",
44
"repository": "https://github.com/gogepp/genoboo",
55
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
66
"license": "AGPL-3.0",

0 commit comments

Comments
 (0)