Skip to content

Commit

Permalink
Merge branch 'hotfix-3.5.8' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Nov 8, 2023
2 parents 8de7765 + f13ea92 commit 543ad2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v3.5.8

* Validated data not passed through on update single record - PUT

## v3.5.7

* Always return id field in entity GETs
Expand Down
4 changes: 2 additions & 2 deletions handlers/rest-apis/data/v1/SingleRecord.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ component {
var updated = dataApiService.updateSingleRecord(
entity = entity
, recordId = recordId
, data = body
, data = validationData
);

if ( updated ) {
Expand All @@ -96,4 +96,4 @@ component {

restResponse.setData( { deleted=deletedCount } );
}
}
}

0 comments on commit 543ad2d

Please sign in to comment.