diff --git a/CHANGELOG.md b/CHANGELOG.md index 418d0f3a..e72978fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ The complete changelog for the Costs to Expect REST API, our changelog follows t - We have added search to the resource-types summary endpoint. - We have updated the transfers collection; you can filter the results by an `item` ID. - We have updated the partial transfers collection; you can filter the results by an `item` ID. +- We have added additional filtering options for collections. We have added `total` and `actualised_total` range filtering for the `allocated-expense` item type and `total` range filtering for the `simple-expense` item type. ### Changed - We have added the documentation URI to the README and API; the documentation for the API is work in progress; it is almost complete. diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 0bbbac1a..ef91e8f8 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -222,6 +222,7 @@ function gtag(){dataLayer.push(arguments);}
  • We have added search to the resource-types summary endpoint.
  • We have updated the transfers collection; you can filter the results by an `item` ID.
  • We have updated the partial transfers collection; you can filter the results by an `item` ID.
  • +
  • We have added additional filtering options for collections. We have added `total` and `actualised_total` range filtering for the `allocated-expense` item type and `total` range filtering for the `simple-expense` item type.
  • Changed

    @@ -233,6 +234,7 @@ function gtag(){dataLayer.push(arguments);}
  • We have altered the format of the category and subcategory object for item relationships; the returned object is now a closer match to a category object.
  • We have updated the URIs for item category and subcategory assignments; the URI was singular for a collection.
  • We have updated the item delete endpoint; we did not return a conflict error before removing relationships.
  • +
  • We have tweaked the `type` for expense fields; we highlight that the supplied value should be a decimal string.
  • Fixed

    @@ -246,7 +248,6 @@ function gtag(){dataLayer.push(arguments);}
  • We have added a database migration to update the `friendly_name` and `examples` data for `item-types`.
  • We have updated the delete item request; we delete the transfer log entries for the item.
  • We have updated two `item-type` summary endpoints to show they are sortable by `name`.
  • -
  • We have tweaked the `type` for expense fields; we highlight that the supplied value should be a decimal string.
  • Removed