Skip to content

Commit 60af52a

Browse files
authored
Bug Fixes found after releasing v0.7.0 (#165)
* bug fixes * add more paging tests, fix paging issues with nulls * fix for delserts in pypgstac load * update changelog
1 parent f39c1c1 commit 60af52a

20 files changed

+5054
-96
lines changed

CHANGELOG.md

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

7+
## [v0.7.1]
8+
9+
### Fixed
10+
- Fix permission issue when running incremental migrations.
11+
- Make sure that pypgstac migrate runs in a single transaction
12+
- Don't try to use concurrently when building indexes by default (this was tripping things up when using with pg_cron)
13+
- Don't short circuit search for requests with ids (Fixes #159)
14+
- Fix for issue with pagination when sorting by columns with nulls (Fixes #161 Fixes #152)
15+
- Fixes issue where duplicate datetime,end_datetime index was being built.
16+
- Fix bug in pypgstac loader when using delsert option
17+
18+
### Added
19+
- Add trigger to detect duplicate configurations for name/collection combination in queryables
20+
- Add trigger to ensure collections added to queryables exist
21+
- Add tests for queryables triggers
22+
- Add more tests for different pagination scenarios
23+
724
## [v0.7.0]
825

926
### Added

scripts/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ function usage() {
1717
if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
1818
docker-compose build
1919
echo "test $@"
20-
docker-compose run --rm pgstac test $@
20+
docker-compose run -T --rm pgstac test $@
2121
fi

src/pgstac/migrations/pgstac.0.6.13-0.7.0.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
RESET ROLE;
12
DO $$
23
DECLARE
34
BEGIN

0 commit comments

Comments
 (0)