Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-04 | [style] pep8 cleanup | Kali Kaneko | |
2015-08-04 | [style] added pep8 excludes+ignores | Kali Kaneko | |
2015-08-03 | [feat] use wheels to install dependencies | Parménides GV | |
generate_wheels uses $WHEELHOUSE to generate and store the wheels for requirements.pip and requirements-testing.pip (if it exists). pip_install_requirements.sh installs requirements.pip from them if possible (if not, then it fetches them from pypi) or, if passed the --testing flag, it installs requirements-testing.pip. Related: #7327 | |||
2015-07-29 | [bug] specify develop branch when using -e | Victor Shyba | |
requirements-latest.pip will try to clone and install. Since it is meant to be latest, I added a small change to specify the branch 'develop'. | |||
2015-07-29 | [feat] Added requirements-latest pip file | Bruno Wagner | |
With this, you can setup soledad for using locally and running the tests with the latest head in a simpler way | |||
2015-07-28 | [tests] add pep8 to requirements-testing | Kali Kaneko | |
2015-07-27 | [pkg] add AUTHORS file + one-liner to generate it | Kali Kaneko | |
2015-07-27 | [pkg] add script to install base requirements | Kali Kaneko | |
- update pip - install base reqs, with insecure flags for dirspec and u1db | |||
2015-07-24 | [style] fixed pep8 warnings on the soledad server code | Bruno Wagner | |
2015-07-22 | [pkg] separate leap requirements | Kali Kaneko | |
this is part of a process to make the setup of the development mode less troublesome. from now on, setting up a virtualenv in pure development mode will be as easy as telling pip to just install the external dependencies:: pip install -r pkg/requirements.pip and traversing all the leap repos for the needed leap dependencies doing:: python setup.py develop - Related: #7288 | |||
2015-06-09 | [pkg] remove PyOpenSSL version pinning | drebs | |
Once upon a time we needed to pin the PyOpenSSL version to avoid unneeded crypto deps (see https://leap.se/code/issues/5368#note-5). Since then, jessie was released and PyOpenSSL 0.14 is now shipped with it. We have removed that pinning from the debian package, and it is not needed here. | |||
2015-06-01 | [pkg] fold in changes0.7.0 | drebs | |
2015-05-14 | [pkg] bump version of server dependency on common | drebs | |
soledad-common versions before 0.6.5 do not contain the fix for #6833 and thus will not work with most recent server. That is why we have to bump this soledad-server dependency on soledad.common. | |||
2015-04-09 | [fix] remove unneded params to CouchServerState | drebs | |
This commit removes some leftover code from a time when Soledad Server used to check for permissions on certain databases when starting (i.e. shared and tokens databases). This was later removed as correct permissions enforcement was relayed to tapicero. Closes: #6833. | |||
2015-03-19 | [fix] add explicit dependency on leap.common | drebs | |
In the past, we wanted dependency on leap.common to be optional, but now because of the explicit use of the config path prefix and signaling, we want to enforce dependency on leap.common. | |||
2015-03-19 | [fix] add/fix dependency on twisted | drebs | |
Add dependency on twisted for Soledad Client. Also remove minimum twisted version for Soledad Server because debian stable currently distributes 12.0.0 and pypi currently distributes 15.0.0. Closes: #6797 | |||
2015-03-19 | [feat] use monthly tokens database | drebs | |
Any solead release that includes this commit will be incompatible with LEAP Platform < 0.6.1 because only from that version on the platform implements the ephemeral monthly tokens databases. Closes: #6785. | |||
2015-03-09 | Fix soledad initscript uid and gid. | drebs | |
2014-12-16 | Fix server initscript location (#6557). | drebs | |
2014-12-03 | Use SSL negotiation. | Kali Kaneko | |
Although the API can be misleading, PROTOCOL_SSLv23 selects the highest protocol version that both the client and server support. Despite the name, this option can select “TLS” protocols as well as “SSL”. In this way, we can use TLSv1.2 (PROTOCOL_TLSv1 will *only* give us TLS v1.0) In the client side, we try to disable SSLv2 and SSLv3 options explicitely. The python version in wheezy does not offer PROTOCOL_TLSv1_2 nor OP_NO_SSLv2 or OP_NO_SSLv3 (It's new in 2.7.9) | |||
2014-11-28 | Enclose server initscript variables in curly brackets. | drebs | |
2014-11-28 | Run daemon as user soledad (#6436). | drebs | |
2014-11-28 | Enforce TLSv1 in soledad server (#6437). | drebs | |
2014-10-07 | Bump version of dep on soledad.common. | drebs | |
2014-07-18 | Fold in changes | Tomás Touceda | |
2014-07-10 | Pin PyOpenSSL dep to avoid uneeded deps (#5368). | drebs | |
2014-07-08 | Update target sync with sequential info (#5869). | drebs | |
2014-07-02 | Add changes files. | drebs | |
2014-07-02 | Split sync_exchange into many requests (#5517). | drebs | |
2014-06-06 | Fold in changes | Tomás Touceda | |
2014-06-05 | Make server auth time-insensitive. | drebs | |
2014-06-05 | Replace client sync state by a sync_id. | drebs | |
2014-05-28 | Fix stuff from kali's review. | drebs | |
2014-05-23 | Fix tests for new sync process. | drebs | |
2014-05-22 | Allow for interrupting and recovering sync (#5571). | drebs | |
2014-05-22 | Split sync in multiple POST requests in server (#5571). | drebs | |
2014-05-22 | Cleanup and pep8 fix. | drebs | |
2014-04-04 | Fold in changes | Tomás Touceda | |
2014-03-17 | Fix raising of auth token errors (#5191). | drebs | |
2014-03-12 | Do not ensure shared database upon Soledad Server start (#5302). | drebs | |
2014-01-25 | Improve unauthorized error messages. | drebs | |
2014-01-20 | Allow sync of large files (~100MB) (#4836). | drebs | |
2014-01-20 | Move lock resource to its own file. | drebs | |
2014-01-17 | Fix typo on tempfile.gettempdir() call. | drebs | |
2014-01-17 | Improve error reporting on couch backend design documents access failure ↵ | drebs | |
(#4994). | |||
2014-01-07 | Use temp dir for server side locks (#4918). | drebs | |
2014-01-06 | Add proper error reporting to shared db lock. | drebs | |
2013-12-19 | add http-encoding header, decode it too | Kali Kaneko | |
2013-12-18 | remove conditional gzip, fix import | Kali Kaneko | |
2013-12-17 | Use git.exe instead of git.cmd in windows since we use GitBash | Tomás Touceda | |