diff options
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f16b110cb..6c0445d71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,24 @@ ## +- Bugfix: Get raw size for compressed chunks correctly for `/prj/{project}/oplog/{log}/chunkinfos` +- Bugfix: Fix log of Success/Failure for oplog import +- Improvement: It is now possible to control which fields to include in `/prj/{project}/oplog/{log}/chunkinfos` request by adding a comma delimited list of filed names for `fieldnames` parameter + - Default fields are: `id`, `rawhash` and `rawsize` (translates to `?fieldnames=id,rawhash,rawsize`) + - Use `?fieldnames=*` to get all the fields +- Improvement: It is now possible to control which fields to include in `/prj/{project}/oplog/{log}/files` request by adding a comma delimited list of filed names for `fieldnames` parameter + - Default fields are: `id`, `clientpath` and `serverpath` (translates to `?fieldnames=id,clientpath,serverpath`), `filter=client` only applies if `fieldnames` is not given as a parameter + - Use `?fieldnames=*` to get all the fields +- Improvement: Use multithreading to fetch size/rawsize of entries in `/prj/{project}/oplog/{log}/chunkinfos` and `/prj/{project}/oplog/{log}/files` +- Improvement: Use HttpClient when doing oplog export/import with a zenserver as a remote target. Includes retry logic +- Improvement: Increase the retry count to 4 (5 attempts in total) when talking to Jupiter for oplog export/import +- Improvement: Optimize `CompressedBuffer::GetRange()` with new `CompressedBuffer::ReadHeader()` that does one less read from source data resulting in a 30% perf increase. +- Improvement: Validate lengths of chunks fetched from CAS/Cache store, if full chunk can not be retrieved, treat it as missing +- Improvement: Add file and line to ASSERT exceptions +- Improvement: Catch call stack when throwing assert exceptions and log/output call stack at important places to provide more context to caller +- Improvement: Validate lengths of chunks fetched from CAS/Cache store, if full chunk can not be retrieved, treat it as missing +- Improvement: Hardening of ParsePackageMessage and added extended details of all malformed attachments detected +- Improvement: Allow import-oplog command to include GC marker path as an argument for when it creates the destination oplog + +## 5.4.3 - Bugfix: Fix sentry using wrong folder path when data path contains non-ascii characters UE-210530 - Improvement: Faster reading of compressed buffer headers by not materializing entire source buffer - Bugfix: Get raw size for compressed chunks correctly for `/prj/{project}/oplog/{log}/chunkinfos` |