Skip to content

Commit 58a5743

Browse files
authored
Bug Fixes (#173)
* fixes * add migrations, remove call to pystac validation from test * add changelog * version change in changelog
1 parent 392ec81 commit 58a5743

File tree

12 files changed

+6470
-202
lines changed

12 files changed

+6470
-202
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## [v0.7.3]
8+
9+
### Fixed
10+
- Use IF EXISTS when dropping constraints to avoid race conditions
11+
- Rework function that finds indexes that need to be added to be added and to find functionally identical indexes better.
12+
13+
614
## [v0.7.2]
715

816
### Fixed

scripts/bin/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ TEMPLATEDB=${1:-pgstac_test_db_template}
101101
psql -X -q -v ON_ERROR_STOP=1 <<EOSQL
102102
CREATE DATABASE pgstac_test_pypgstac TEMPLATE $TEMPLATEDB;
103103
EOSQL
104-
pytest --tb=no tests -o cache_dir=/tmp/.pytest_cache
104+
pytest tests -o cache_dir=/tmp/.pytest_cache
105105
psql -X -q -c "DROP DATABASE pgstac_test_pypgstac WITH (force)";
106106
}
107107

0 commit comments

Comments
 (0)