Skip to content

Commit 3dd41b3

Browse files
committed
update changelog
1 parent 27dd522 commit 3dd41b3

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

CHANGES.md

+19-13
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,24 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
88

99
## [unreleased]
1010

11-
* update `Collection.get_tile()` and `Collection.features()` signature to expect `request: Request` as first parameter
12-
* re-use pg *connection* for `features_count` and `features`
13-
* renamed `tipg.collections.get_collection_index` to `tipg.collections.pg_get_collection_index` and change the function to use `DatabaseSettings` instance directly instead of keyword option
14-
* update `tipg.collections.pg_get_collection_index` to return a list of PgCollection instead of a Catalog
15-
* update `tipg.collections.register_collection_catalog` to pass `db_settings` to `pg_get_collection_index` function
11+
### Added
12+
1613
* add `tilesets` and `viewer` links in `/collections` and `/collections/{collectionId}` response links
1714
* add the ability to use a schema other than pg_temp for installing catalog functions (using `TIPG_DB_APPLICATION_SCHEMA` environment variable)
18-
* change `database.connect_to_db` input order
15+
* re-use pg *connection* for `features_count` and `features`
16+
* add `tipg.collections.Collection` abstract base class
17+
18+
### Changed
19+
20+
* rename `tipg.collections.Collection -> tipg.collections.PgCollection` **breaking change**
21+
* update `Collection.get_tile()` and `Collection.features()` signature to expect `request: Request` as first parameter **breaking change**
22+
* rename `tipg.collections.get_collection_index` to `tipg.collections.pg_get_collection_index` and change the function to use `DatabaseSettings` instance directly instead of keyword option **breaking change**
23+
* update `tipg.collections.pg_get_collection_index` to return a list of PgCollection instead of a Catalog **breaking change**
24+
* update `tipg.collections.register_collection_catalog` to pass `db_settings` to `pg_get_collection_index` function **breaking change**
25+
* remove **deprecated** tiles endpoint with default TileMatrixSet
26+
* rename tilejson endpoint from `/collections/{collectionId}/{tileMatrixSetId}/tilejson.json` to `/collections/{collectionId}/tiles/{tileMatrixSetId}/tilejson.json` **breaking change**
27+
* rename stylejson endpoint from `/collections/{collectionId}/{tileMatrixSetId}/style.json` to `/collections/{collectionId}/tiles/{tileMatrixSetId}/style.json` **breaking change**
28+
* change `database.connect_to_db` input order **breaking change**
1929

2030
```python
2131
# Before
@@ -38,15 +48,11 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
3848
**kwargs,
3949
) -> None:
4050
```
41-
* fix URL in HTML templates when behind proxy
42-
* remove **deprecated** tiles endpoint with default TileMatrixSet
43-
* renamed tilejson endpoint from `/collections/{collectionId}/{tileMatrixSetId}/tilejson.json` to `/collections/{collectionId}/tiles/{tileMatrixSetId}/tilejson.json` **breaking change**
44-
* renamed stylejson endpoint from `/collections/{collectionId}/{tileMatrixSetId}/style.json` to `/collections/{collectionId}/tiles/{tileMatrixSetId}/style.json` **breaking change**
4551

46-
## [0.11.0] - TBD
52+
### Fixed
53+
54+
* fix URL in HTML templates when behind proxy
4755

48-
* rename `tipg.collections.Collection -> tipg.collections.PgCollection`
49-
* add `tipg.collections.Collection` abstract base class
5056

5157
## [0.10.0] - 2025-02-20
5258

0 commit comments

Comments
 (0)