File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
src/pypgstac/python/pypgstac Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
- ## Unreleased
8
+ ## [ Unreleased]
9
+
10
+ ### Added
9
11
10
12
- Add limited support for free-text search in the search functions. (Fixes #293 )
11
13
- the ` q ` parameter is converted from the
12
14
[ OGC API - Features syntax] ( https://docs.ogc.org/DRAFTS/24-031.html ) into a ` tsquery `
13
15
statement which is used to compare to the description, title, and keywords fields in items or collection_search
14
16
- the text search is un-indexed and will be very slow for item-level searches!
15
17
18
+ ### Fixed
19
+
20
+ - Add ` open=True ` in ` psycopg.ConnectionPool ` to avoid future behavior change
21
+
16
22
## [ v0.9.1]
17
23
18
24
### Fixed
@@ -516,6 +522,8 @@ _TODO_
516
522
517
523
- Fixed issue with pypgstac loads which caused some writes to fail ([ #18 ] ( https://github.com/stac-utils/pgstac/pull/18 ) )
518
524
525
+ [ Unreleased ] : https://github.com/stac-utils/pgstac/compare/v0.9.1...main
526
+ [ v0.9.1 ] : https://github.com/stac-utils/pgstac/compare/v0.9.0...v0.9.1
519
527
[ v0.9.0 ] : https://github.com/stac-utils/pgstac/compare/v0.8.5...v0.9.0
520
528
[ v0.8.5 ] : https://github.com/stac-utils/pgstac/compare/v0.8.4...v0.8.5
521
529
[ v0.8.4 ] : https://github.com/stac-utils/pgstac/compare/v0.8.3...v0.8.4
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ def get_pool(self) -> ConnectionPool:
89
89
max_waiting = settings .db_max_queries ,
90
90
max_idle = settings .db_max_idle ,
91
91
num_workers = settings .db_num_workers ,
92
+ open = True ,
92
93
)
93
94
return self .pool
94
95
You can’t perform that action at this time.
0 commit comments