Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-17 | [refactor] move tests to root of repository | drebs | |
Tests entrypoint was in a testing/ subfolder in the root of the repository. This was made mainly because we had some common files for tests and we didn't want to ship them (files in testing/test_soledad, which is itself a python package. This sometimes causes errors when loading tests (it seems setuptools is confused with having one python package in a subdirectory of another). This commit moves the tests entrypoint to the root of the repository. Closes: #8952 | |||
2017-09-14 | [refactor] improve instructions and fix small typos | Victor Shyba | |
2017-09-14 | [test] add graph for sqlite blobs backend benchmark test | drebs | |
2017-09-14 | [test] move legacy-vs-blobs graphing to benchmark scripts dir | drebs | |
2017-09-08 | [test] improve legacy vs blobs image | drebs | |
2017-09-07 | fixup! [pkg] improve naming of directory of migration script | drebs | |
2017-09-07 | [pkg] allow newer versions of soledad for migrate script | drebs | |
2017-09-07 | [pkg] improve naming of directory of migration script | drebs | |
2017-09-07 | [pkg] remove .gitnore to avoid it ending up in the debian package | drebs | |
As we now copy the migration script into the debian package, the .gitignore file would also be copied. The simplest is to just remove it from the repo. | |||
2017-09-07 | [pkg] fix and improve migration script README file | drebs | |
2017-09-07 | [pkg] fix error logging in migration script | drebs | |
2017-09-07 | [pkg] adapt migration script to new get_config() | drebs | |
2017-09-05 | [test] add script and data to plot legacy-vs-blobs | drebs | |
2017-08-23 | [scripts] update deploy script to new paths | Kali Kaneko | |
2017-07-10 | [benchmarks] checkout script for bundled pysqlcipher | drebs | |
2017-07-08 | [benchmarks] properly pass environment variable to gitlab-runner | drebs | |
2017-07-08 | [benchmark] setup env for benchmark-all-commits conditionally | drebs | |
2017-07-07 | [pkg] workaround multiline bug in .gitlab-ci.yml | drebs | |
2017-07-07 | [benchmarks] move adbapi tuning script to benchmark scripts folder | drebs | |
2017-07-07 | [benchmarks] add README to benchmark-all-commits | drebs | |
2017-07-07 | [benchmarks] record start and end timestamp when benchmarking all commits | drebs | |
2017-07-07 | [benchmarks] stop benchmarking-all-commits when first commit is reached | drebs | |
2017-07-07 | [benchmarks] move benchmark-all-commits script to scripts dir | drebs | |
2017-06-26 | [pkg] rename soledad-create-userdb script in all the places | Kali Kaneko | |
2017-06-24 | [test] adapt tests to new python package | drebs | |
2017-04-19 | [test] remove docker scripts from this repo | drebs | |
Docker scripts are only used for CI and do not need to be in this repository. Beause of that, we decided to moved the docker scripts to a private repository where dockerfiles for other parts of leap also live. | |||
2017-04-05 | Use $DOCKER_BUILD_OPTIONS for building | varac | |
2017-04-05 | Use soledad master branch, install curl and git | varac | |
2017-02-15 | [pkg] restart service instead of starting it | Kali Kaneko | |
2017-02-13 | [pkg] add build-deb.sh script | drebs | |
2017-02-13 | [pkg] fail on errors | Kali Kaneko | |
2017-02-13 | [pkg] add script for deploying from git | Kali Kaneko | |
- Resolves: #8765 | |||
2017-02-09 | [bug] Fix import for load_configuration on migration script | Thais Siqueira | |
2017-02-09 | [pkg] improve migration script logging | drebs | |
2017-02-09 | [bug] Fix import for load_configuration on migration script | Thais Siqueira | |
Related with https://leap.se/code/issues/8742 | |||
2016-12-12 | [refactor] improve logging | Victor Shyba | |
Some exceptions were missing a proper description and client_side_db.py script wasn't capturing logs from Twisted. | |||
2016-12-12 | [test] fix test and remove leftovers defer_encryption | Victor Shyba | |
2016-11-22 | [refactor] separate server application into another file | drebs | |
Conflicts: server/src/leap/soledad/server/__init__.py testing/tests/conftest.py | |||
2016-11-09 | [pkg] use correct folder name for migrate script | drebs | |
2016-10-21 | [feature] adds libsqlite3-dev on docker image | Victor Shyba | |
This is necessary for keymanager and this image is shared, thus adding here with a comment explaining why. Also explained why using jessie-backports. | |||
2016-10-21 | [feature] use latest image | Victor Shyba | |
Instead of hardcoding a version. This should give us the flexibility of changing images without changing code. | |||
2016-10-21 | [bug] adds libsqlcipher to docker | Victor Shyba | |
Current docker image is broken due missing libsqlcipher. This commit adds it and jessie-backports due package needs. Resolves: #8508 | |||
2016-08-23 | [test] avoid failing on interrupted couch schema migrations | drebs | |
2016-08-23 | [pkg] improve logging of couch schema migration script | drebs | |
2016-08-23 | [pkg] log errors and continue with next db in couch schema migration script | drebs | |
2016-08-23 | [pkg] log any errors in couch schema migration script | drebs | |
2016-08-23 | [pkg] ignore existing correct gen docs in couch schema migrate script | drebs | |
2016-08-23 | [pkg] improve log message for skipped dbs on couch schema migration script | drebs | |
2016-08-23 | [pkg] fail gracefully for missing design doc on couch schema migration script | drebs | |
2016-08-23 | [pkg] move config doc as last action of couch schema migration script | drebs | |
If the moving of the config document is the last action of the couch schema migration script, then we can test for successful migration of a certain db by checking if the config document was already moved. This commit just changes the order of migration actions to enforce this situation. |