Skip to content

Commit

Permalink
Merge pull request #55 from gogepp/dev
Browse files Browse the repository at this point in the history
Release 0.4.12
  • Loading branch information
mboudet authored Dec 7, 2023
2 parents 54cd72b + f452e83 commit be5e811
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [0.4.12] 2023-12-07

### Fixed

- Fixed filtering when using ES search

## [0.4.11] 2023-11-29

### Added
Expand Down
3 changes: 2 additions & 1 deletion imports/api/publications.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ Meteor.publish({
}
})
}
transformedQuery = {genomeId: { $in: queryGenomeIds }, $or: geneResults}
delete query.query
transformedQuery = {...query, genomeId: { $in: queryGenomeIds }, $or: geneResults}
} else {
transformedQuery = { ...query, genomeId: { $in: queryGenomeIds } };
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genoboo",
"version": "0.4.11",
"version": "0.4.12",
"repository": "https://github.com/gogepp/genoboo",
"description": "A portable website for browsing and querying genome sequences and annotations. Forked from genenotebook",
"license": "AGPL-3.0",
Expand Down

0 comments on commit be5e811

Please sign in to comment.