Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-12 | [refactor] remove u1db dep from support code | drebs | |
2016-06-22 | [test] use docker for gitlab-ci tests | drebs | |
2016-06-22 | [test] limit cpu sets for docker perf test containers | drebs | |
2016-06-22 | [test] add commit/branch checkout to docker test running script | drebs | |
2016-06-22 | [test] add logging to client running on docker container | drebs | |
2016-06-22 | [test] improve docker scripts README file | drebs | |
2016-06-22 | [test] refactor of docker scripts | drebs | |
2016-06-22 | [test] improve docker run-test script | drebs | |
2016-06-22 | [test] improve repo config and checkout on docker scripts | drebs | |
2016-06-22 | [test] create dir before cert on setup-env script | drebs | |
2016-06-22 | [test] update docker image before test | drebs | |
2016-06-22 | [test] add memory limit to docker containers | drebs | |
2016-06-22 | [style] pep8 fix | drebs | |
2016-06-22 | [test] add docker perf tests | drebs | |
2016-06-08 | [refactor] reorganize scripts dir | drebs | |
2016-06-08 | [feature] add script to run tests for a gitlab ci runner | drebs | |
2016-06-06 | [doc] improve docker script docs | drebs | |
2016-06-06 | [test] add rule for running trial tests in a docker container | drebs | |
2016-06-06 | [test] add rule and script to run soledad connection test | drebs | |
2016-06-06 | [test] add shared db setup to docker start server script | drebs | |
2016-06-06 | [test] add makefile option to rm all docker containers | drebs | |
2016-06-06 | [test] pep8 fix on test script | drebs | |
2016-06-06 | [test] fix docker image run example in readme file | drebs | |
2016-06-06 | [test] add soledad-perf repo to docker image | drebs | |
2016-06-06 | [test] fix test-env script command line option | drebs | |
2016-06-06 | [test] fix docker makefile target for running client test | drebs | |
2016-06-06 | [test] add missing deps to Dockerfile | drebs | |
2016-06-06 | [test] add files to create docker image | drebs | |
2016-06-06 | [refactor] adapt profiling script to local debug server | Kali Kaneko | |
2015-11-17 | [feat] add script to measure batch of uploads | Kali Kaneko | |
- Releases: 0.8.0 | |||
2015-11-03 | [refactor] CouchDocument is now ServerDocument | Victor Shyba | |
As SoledadBackend is intended to be database agnostic, a new generic document is now used instead of the old one made for CouchDB. The only attribute that really relates to couch was couch_rev, removed on this commit as it can be set on CouchDatabase implementation when needed. | |||
2015-10-05 | [feat] Move config dir to /etc/soledad | varac | |
- Resolves: #7509 | |||
2015-08-18 | [bug] always release lock on spam script | drebs | |
2015-08-11 | [tests] add util function to instantiate dowser mem profiler | Kali Kaneko | |
2015-08-11 | [feat] control sending messages in script | Kali Kaneko | |
- ability to disable sending (to get raw receive times) - ability to specify size and number of payloads - ability to point to a file to be used as raw source of payloads | |||
2015-08-11 | [feat] add support for twisted-aware theseus profiler | Kali Kaneko | |
2015-08-11 | [bug] disable events on profiling | Kali Kaneko | |
2015-08-11 | [feat] update profile-sync script, add plop profiling | Kali Kaneko | |
Updating the profile-sync script to the latest deferred-based sync. - Added a couple of options to have finer control about what output to get. - Add support for the plop profiler https://pypi.python.org/pypi/plop/ - To get meaningful plop profiles, make sure to disable the system stats collection, like this:: ./profile-sync.py --no-stats --plop -b /tmp/syncdata/ -p sikret user@provider A good practice for this is having a pre-seeded soledad account (currently you have to do that through the wizard, a cli will be very nice to have in the coming future) with a known amount of data (for instance, sending some mails with known payload weight). It is VERY IMPORTANT that you *NEVER* process the data in this account (ie, do not ever log in with a mail client, for instance, since that will alter the original documents). In order to have comparable results, you should always run this sync script in similar conditions. Ideally, on a machine with runlevel 1. Also, make sure of deleting the contents in the folder if you are not using a temporal dir. | |||
2015-08-03 | [style] pep8 | Kali Kaneko | |
2015-08-03 | [feat] allow repeated sync in client db script | drebs | |
2015-08-03 | [feat] use dynamic mx server in spam script | drebs | |
2015-07-27 | [feat] add smtp port and log level to spam script | drebs | |
2015-07-23 | [feat] several features in client db script | drebs | |
* Close soledad when finished. * Allow creation of many documents. * Store timestamp in documents. * Log errors. * Update docstrings. | |||
2015-07-23 | [bug] properly close reactor on client db script | drebs | |
2015-07-23 | [feat] add auth data storage on client db script | drebs | |
2015-07-23 | [bug] use ssl smtp connection on spam script | drebs | |
2015-05-20 | [feature] ensure reactor stops on client db script | drebs | |
2015-05-20 | [feature] add --create-doc to client db script | drebs | |
2015-05-20 | [bug] fix order of insertion of decrypted docs | drebs | |
This commit actually does some different things: * When doing asynchronous decryption of incoming documents in soledad client during a sync, there was the possibility that a document corresponding to a newer generation would be decrypted and inserted in the local database before a document corresponding to an older generation. When this happened, the metadata about the target database (i.e. its locally-known generation) would be first updated to the newer generation, and then an attempt to insert a document corresponding to an older generation would cause the infamous InvalidGeneration error. To fix that we use the sync-index information that is contained in the sync stream to correctly find the insertable docs to be inserted in the local database, thus avoiding the problem described above. * Refactor the sync encrypt/decrypt pool to its own file. * Fix the use of twisted adbapi with multiprocessing. Closes: #6757. | |||
2015-05-20 | [bug] fix log messages for secrets in storage | drebs | |