aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* v0.2.13-pre3v0.2.13-pre3Dan Engelbrecht2023-06-131-1/+1
|
* Make sure GetEnvVariable can handle values that are longer than 1023 ↵Dan Engelbrecht2023-06-132-4/+19
| | | | characters (#332)
* v0.2.13-pre2v0.2.13-pre2Dan Engelbrecht2023-06-121-1/+1
|
* add oplog snapshot command (#331)Dan Engelbrecht2023-06-124-0/+94
| | | | * add zen oplog-snapshot command line tool * changelog
* fix jupiter access token for oplog upload (#330)Dan Engelbrecht2023-06-122-1/+2
| | | | * make sure to prefix auth token correctly when provided with a raw token * changelog
* drive-by constStefan Boberg2023-06-121-1/+1
|
* narrowed scope of clang-format actionStefan Boberg2023-06-092-19/+1
| | | | also removed some unnecessary entries from .gitignore
* changed ZEN_ERROR to ZEN_WARN to reduce Sentry noiseStefan Boberg2023-06-081-3/+8
| | | | addresses ZEN-SERVER-W5. This should not be logged as an error since the failure is propagated to the client and the failure is typically due to invalid input
* Removed unnecessary windows.h includeStefan Boberg2023-06-081-4/+0
|
* added missing <utility> includeStefan Boberg2023-06-071-0/+1
|
* added thread names to timer, upstream monitorStefan Boberg2023-06-074-2/+20
| | | | also altered http-asio thread naming scheme
* 0.2.13-pre1v0.2.13-pre1Dan Engelbrecht2023-06-051-1/+1
|
* Increase retry logic (#325)Dan Engelbrecht2023-06-052-13/+20
| | | | * Increase timeout and number of retries in CacheBucket::PutStandaloneCacheValue when moving temporary file into place * changelog
* Increased timeout to 25 min for Windows validationStefan Boberg2023-05-311-1/+1
|
* Enable front-end serving in release modeStefan Boberg2023-05-313-26/+41
| | | | Front-end can now be served from a development directory in release mode as well as debug if there's no zipfs attached
* Added Sentry debug information note to CHANGELOG.mdStefan Boberg2023-05-311-0/+1
|
* bump version to test sentry uploadv0.2.13-pre0Stefan Boberg2023-05-311-1/+1
|
* add exe to release sentry-cli upload-dif stepStefan Boberg2023-05-311-3/+3
|
* fix for Linux/sentry build issueStefan Boberg2023-05-261-3/+0
|
* bumped xmake and vcpkg versionsStefan Boberg2023-05-263-12/+13
| | | | | xmake is now 2.7.9 (was 2.6.4) vcpkg is now 2023.04.15 (was 2022.08.15)
* bump timeout for create-release to 25 min (linux/mac)Dan Engelbrecht2023-05-261-2/+2
|
* bump timeout for create-release to 25 minDan Engelbrecht2023-05-261-1/+1
|
* Updated CHANGELOG.mdStefan Boberg2023-05-261-1/+4
|
* oplog snapshot (#317)Stefan Boberg2023-05-253-17/+219
| | | | | Added "snapshot" oplog RPC this may be used to bring referenced files into the local store instead of referencing them by filename, thus making the project/oplog transportable
* minor: refcount bump eliminationStefan Boberg2023-05-251-1/+1
|
* named oplog upload worker pool threadsStefan Boberg2023-05-251-1/+12
|
* minor: comment fixStefan Boberg2023-05-251-1/+1
|
* BasicFile::ReadAll should handle zero-sized files gracefullyStefan Boberg2023-05-251-3/+10
|
* added defaults to remote project store option definitionsStefan Boberg2023-05-253-5/+6
|
* fix for random uint32 -> uint32_tStefan Boberg2023-05-251-1/+1
|
* fix for issue with missing options in helpStefan Boberg2023-05-251-0/+2
| | | | | positional options were not included in the `--help` output previously, now they are!
* updated runner setup docStefan Boberg2023-05-251-1/+3
|
* block destructors from throwing exceptions (#321)Dan Engelbrecht2023-05-244-8/+13
| | | | | | * ~FileMapping() is not allowed to throw exceptions * ~ScopedActivityBase() should not call ZEN_ASSERT (which causes SIGABORT on error) * ProjectStore::Project::WriteAccessTimes() which is called from ProjectStore::~Project() must not throw exceptions * changelog
* cache log sessionid (#297)Stefan Boberg2023-05-238-169/+275
| | | | | | | | | | | * implemented structured cache logging to be used as audit trail to help analyse potential cache pollution/corruption * added common header to all known log targets * made Oid::operator bool explicit to avoid logging/text format mishaps * HttpClient::operator bool -> explicit * changed cache logs to not rotate on start in order to retain more history * added CacheRequestContext * properly initialize request context * log session id and request id on zencacehstore get/put * changelog
* use exception when allocations fail rather than asserts (#319)Dan Engelbrecht2023-05-234-5/+37
| | | | * use exception when allocations fail rather than asserts * changelog
* streaming decompression support (#142)Stefan Boberg2023-05-238-29/+1000
| | | Added CompressedBufferReader support from UE. This provides some streaming decompression support which can be employed to reduce memory and other resource usage.
* MemoryView::RightChop -> constStefan Boberg2023-05-221-1/+1
|
* removed some old test code which is no longer usefulStefan Boberg2023-05-221-66/+1
|
* minor: fixed typos in log output (PUTCACEHRECORD -> PUTCACHERECORD)Stefan Boberg2023-05-221-2/+2
|
* v0.2.12v0.2.12Dan Engelbrecht2023-05-221-1/+1
|
* v0.2.12-pre0v0.2.12-pre0Dan Engelbrecht2023-05-221-1/+1
|
* changelogDan Engelbrecht2023-05-221-0/+3
|
* Update Github_runner_setup.mdStefan Boberg2023-05-221-2/+2
|
* Update Github_runner_setup.mdStefan Boberg2023-05-221-1/+1
|
* Update Github_runner_setup.mdStefan Boberg2023-05-221-0/+1
|
* sorted the commands exposed from zen CLIStefan Boberg2023-05-191-8/+8
|
* updated logic for 7z/zipStefan Boberg2023-05-191-6/+6
| | | | | previously, an attempt was made to locate any installed binary but the located path was not actually used in practice
* updated CHANGELOG.md to reflect oplog bugfixStefan Boberg2023-05-191-0/+1
|
* fixed bug where an oplog delete would not actually delete the oplogStefan Boberg2023-05-191-2/+9
| | | | this would manifest itself if an oplog delete was attempted right after zenserver startup, when the oplog has not yet been instantiated. This fix checks for on-disk state as well as in-memory
* fix for commented-out code which was never meant to be checked inStefan Boberg2023-05-171-6/+6
|