Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Oct 30, 2023
1 parent 8a54e31 commit 1fef6fc
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,39 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin

### fixed

- hide map element in HTML pages when collections/items do not have spatial component
- hide map element in HTML pages when collections/items do not have spatial component (https://github.com/developmentseed/tipg/issues/132)

- exclude/include tables and functions (https://github.com/developmentseed/tipg/issues/130)

### changed

- split endpoints registration for more customization

```python
# before
class OGCFeaturesFactory(EndpointsFactory):

def register_routes(self):
@self.router.get("/collections", ...)
@self.router.get("/collections/{collectionId}", ...)
...

# now
class OGCFeaturesFactory(EndpointsFactory):

def register_routes(self):
self._collections_route()
self._collection_route()
self._queryables_route()
self._items_route()
self._item_route()

def _collections_route(self):
@self.router.get("/collections", ...)

...
```

## [0.4.4] - 2023-10-03

### fixed
Expand Down

0 comments on commit 1fef6fc

Please sign in to comment.