Skip to content

Commit d24f97f

Browse files
committed
extract pool/connection creation within FastAPI endpoint
1 parent b325f00 commit d24f97f

File tree

4 files changed

+1440
-162
lines changed

4 files changed

+1440
-162
lines changed

CHANGES.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
88

99
## [unreleased]
1010

11+
## [1.2.0] - 2025-07-23
12+
13+
* remove `request: Request` in `Collection.features` and `Collection.get_tile` abstract methods
14+
15+
* pass a `asyncpg.Connection` to `PgCollection.features` and `PgCollection.get_tile` instead of a `Request` object
16+
17+
* switch `pg_get_collection_index` input from `asyncpg.BuildPgPool` to `asyncpg.Connection` object
18+
1119
## [1.1.2] - 2025-07-02
1220

1321
* fix `rel` values for tiling scheme links
@@ -402,11 +410,13 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
402410

403411
- Initial release
404412

405-
[unreleased]: https://github.com/developmentseed/tipg/compare/1.1.1...HEAD
406-
[1.1.1]: https://github.com/developmentseed/tipg/compare/1.1.1...1.1.1
413+
[unreleased]: https://github.com/developmentseed/tipg/compare/1.2.0...HEAD
414+
[1.1.2]: https://github.com/developmentseed/tipg/compare/1.1.2...1.2.0
415+
[1.1.2]: https://github.com/developmentseed/tipg/compare/1.1.1...1.1.2
416+
[1.1.1]: https://github.com/developmentseed/tipg/compare/1.1.0...1.1.1
407417
[1.1.0]: https://github.com/developmentseed/tipg/compare/1.0.1...1.1.0
408418
[1.0.1]: https://github.com/developmentseed/tipg/compare/1.0.0...1.0.1
409-
[1.0.0]: https://github.com/developmentseed/tipg/compare/0.10.0...1.0.0
419+
[1.0.0]: https://github.com/developmentseed/tipg/compare/0.10.1...1.0.0
410420
[0.10.1]: https://github.com/developmentseed/tipg/compare/0.10.0...0.10.1
411421
[0.10.0]: https://github.com/developmentseed/tipg/compare/0.9.0...0.10.0
412422
[0.9.0]: https://github.com/developmentseed/tipg/compare/0.8.0...0.9.0
@@ -418,7 +428,7 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
418428
[0.6.3]: https://github.com/developmentseed/tipg/compare/0.6.2...0.6.3
419429
[0.6.2]: https://github.com/developmentseed/tipg/compare/0.6.1...0.6.2
420430
[0.6.1]: https://github.com/developmentseed/tipg/compare/0.6.0...0.6.1
421-
[0.6.0]: https://github.com/developmentseed/tipg/compare/0.5.7...0.6.0
431+
[0.6.0]: https://github.com/developmentseed/tipg/compare/0.5.8...0.6.0
422432
[0.5.8]: https://github.com/developmentseed/tipg/compare/0.5.7...0.5.8
423433
[0.5.7]: https://github.com/developmentseed/tipg/compare/0.5.6...0.5.7
424434
[0.5.6]: https://github.com/developmentseed/tipg/compare/0.5.5...0.5.6

0 commit comments

Comments
 (0)