We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8db9c7 + 62e68ec commit 01e006aCopy full SHA for 01e006a
2 files changed
CHANGELOG.md
@@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
3
4
This project follows [Semantic Versioning](http://semver.org) guidelines.
5
6
+## v0.7.13 (Derelict Dermodactylus)
7
+### Fixed
8
+* Fixes a bug with the location update API endpoint throwing an error due to an unexected response value.
9
+
10
## v0.7.12 (Derelict Dermodactylus)
11
### Fixed
12
* Fixes an issue with the locations API endpoint referencing an invalid namespace.
app/Http/Requests/Api/Application/Locations/UpdateLocationRequest.php
@@ -30,6 +30,6 @@ public function rules(): array
30
return collect(Location::getUpdateRulesForId($locationId))->only([
31
'short',
32
'long',
33
- ]);
+ ])->toArray();
34
}
35
0 commit comments