diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bf97a5c..16e8ff84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ The complete changelog for the Costs to Expect REST API, our changelog follows the format defined at https://keepachangelog.com/en/1.0.0/ +## [v2.10.4] - 2020-05-23 +### Fixed +- We have adjusted the lottery value to reduce session clears. +- We have updated to v3.5.1 of Jquery, v3.5.0 was bugged. + ## [v2.10.3] - 2020-05-09 ### Fixed - We have updated the delete resource type action; we have added additional checks before we attempt to delete, it was possible to remove relationship values which made the resource type inaccessible. diff --git a/config/api/app/version.php b/config/api/app/version.php index 67fa1b81..1514191a 100644 --- a/config/api/app/version.php +++ b/config/api/app/version.php @@ -3,9 +3,9 @@ declare(strict_types=1); return [ - 'version'=> '2.10.3', + 'version'=> '2.10.4', 'prefix' => 'v2', - 'release_date' => '2020-05-09', + 'release_date' => '2020-05-23', 'changelog' => [ 'api' => '/v2/changelog', 'markdown' => 'https://github.com/costs-to-expect/api/blob/master/CHANGELOG.md' diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 9d246018..47e9eefa 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -252,6 +252,8 @@ function gtag(){dataLayer.push(arguments);}
  • We have switched the table we look at to return created at for an item; we should be using the sub table, not the base item table.
  • We have corrected the `/resource-types/` OPTIONS request; `public` is not a required field.
  • We have updated the delete resource type action; we have added additional checks before we attempt to delete, it was possible to remove relationship values which made the resource type inaccessible.
  • +
  • We have adjusted the lottery value to reduce session clears.
  • +
  • We have updated to v3.5.1 of Jquery, v3.5.0 was bugged.