diff options
| author | Dan Engelbrecht <[email protected]> | 2024-04-04 16:53:31 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2024-04-04 16:53:31 +0200 |
| commit | 7240a27c7fc85205930a8c7c32bcc415038c2a84 (patch) | |
| tree | 69de59fd2b08c471c2651b92c2de26859bcfa710 | |
| parent | improved assert (#37) (diff) | |
| download | zen-7240a27c7fc85205930a8c7c32bcc415038c2a84.tar.xz zen-7240a27c7fc85205930a8c7c32bcc415038c2a84.zip | |
fix changelog
| -rw-r--r-- | CHANGELOG.md | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ff923e47..da32748ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,4 @@ ## -- Bugfix: Fix sentry using wrong folder path when data path contains non-ascii characters UE-210530 - 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 @@ -9,10 +8,8 @@ - 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: Add `GetMediumWorkerPool()` in addition to `LargeWorkerPool()` and `SmallWorkerPool()` - 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 `CompositeBuffer::ViewOrCopyRange` speeding up compressed buffer headers by not materializing entire source buffer - 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 @@ -20,6 +17,19 @@ - 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 +## 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` +- 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: Add `GetMediumWorkerPool()` in addition to `LargeWorkerPool()` and `SmallWorkerPool()` + ## 5.4.2 - Bugfix: Shared memory for zenserver state may hang around after all zenserver processes exit - make sure we find a valid entry in `zen up` before bailing - Bugfix: Httpasio only call listen() once |