Skip to content

Commit

Permalink
5.2.1
Browse files Browse the repository at this point in the history
Including updates from 5.2.1 snapshot

updates included in 5.2.0 snapshot
#292 Grails 6 upgrade
#295 Support the latest AuthService Plugin
#299 Fixed the broken list upload from Spatial
#302 Fixed download list csv issue
#306 Fixed 'family(matched)' facade
#288 Improved rematching process performance
  • Loading branch information
qifeng-bai committed Jun 30, 2024
2 parents 720463b + 4439cd7 commit 6469621
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,12 @@ grails run-app


### Changelog
- **Version 4.2.0**:
- improve the performance of rematching processing
- **Version 5.2.1 **:
- improved the performance of rematching processing
- Fixed list csv downloads has duplicate columns
- Fixed the broken species list upload from spatial issue
- Replaced deprecated functions provided by AuthService plugin
- Grails 6 upgraded
- **Version 3.0**:
- Grails 3, Lucene 5 or above
- **Version 2.0**:
Expand All @@ -56,7 +60,7 @@ grails run-app
- fixed unit and integration tests

### Release
- **Version 4.2.0**:
- **Version 5.2.1**:
Database change:
- rematch_Log table changed:

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
version "5.2.0"
version "5.2.1"
group "au.org.ala"
}

Expand Down
2 changes: 1 addition & 1 deletion grails-app/conf/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<logger name="org.hibernate.orm.deprecation" level="OFF"/>
<logger name="org.grails.config.NavigableMap" level="OFF"/>

<root level="INFO">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,7 @@ class QueryService {
speciesListItems = SpeciesListItem.executeQuery("select sli " + baseQueryAndParams[0], baseQueryAndParams[1], requestParams)
} else {
def criteria = SpeciesListItem.createCriteria()

def q = requestParams.q
speciesListItems = criteria.list(requestParams) {
and {
Expand Down

0 comments on commit 6469621

Please sign in to comment.