From ba29553991802a040332cff2f8276238890af549 Mon Sep 17 00:00:00 2001 From: Jon Duckworth Date: Mon, 1 Aug 2022 15:18:54 -0400 Subject: [PATCH] Add CHANGELOG entry for #425 --- CHANGES.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index bf14d02ea..c7ffc1a11 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -21,6 +21,9 @@ * docker-compose now runs uvicorn with hot-reloading enabled * Bump version of PGStac to 0.6.2 that includes support for hydrating results in the API backed ([#397](https://github.com/stac-utils/stac-fastapi/pull/397)) * Make item geometry and bbox nullable in sqlalchemy backend. ([#398](https://github.com/stac-utils/stac-fastapi/pull/398)) +* Transactions Extension update Item endpoint Item is now `/collections/{collection_id}/items/{item_id}` instead of + `/collections/{collection_id}/items` to align with [STAC API + spec](https://github.com/radiantearth/stac-api-spec/tree/main/ogcapi-features/extensions/transaction#methods) ([#425](https://github.com/stac-utils/stac-fastapi/pull/425)) ### Removed @@ -34,6 +37,9 @@ * SQLAlchemy backend bulk item insert now works ([#356](https://github.com/stac-utils/stac-fastapi/issues/356)) * PGStac Backend has stricter implementation of Fields Extension syntax ([#397](https://github.com/stac-utils/stac-fastapi/pull/397)) * `/queryables` endpoint now has type `application/schema+json` instead of `application/json` ([#421](https://github.com/stac-utils/stac-fastapi/pull/421)) +* Transactions Extension update Item endpoint validates that the `{collection_id}` path parameter matches the Item `"collection"` property + from the request body, if present, and falls back to using the path parameter if no `"collection"` property is found in the body + ([#425](https://github.com/stac-utils/stac-fastapi/pull/425)) ## [2.3.0]