<feed xmlns='http://www.w3.org/2005/Atom'>
<title>soledad.git/server/pkg, branch debian/platform-0.7</title>
<subtitle>[soledad]
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/'/>
<entry>
<title>[pkg] bump version of server dependency on common</title>
<updated>2015-05-14T14:59:31+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-05-14T14:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=340b0dcfbc0a819738a28f9c803fdbf848754897'/>
<id>340b0dcfbc0a819738a28f9c803fdbf848754897</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] add explicit dependency on leap.common</title>
<updated>2015-03-19T14:58:12+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-03-19T13:57:54+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=74dec41c1d99ae8d4a4a79a7cb0d5c3c9f40cbae'/>
<id>74dec41c1d99ae8d4a4a79a7cb0d5c3c9f40cbae</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] add/fix dependency on twisted</title>
<updated>2015-03-19T14:52:44+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-03-19T12:54:38+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=4b78cf9da0874501fa123a02b53d7650e8dfcdf1'/>
<id>4b78cf9da0874501fa123a02b53d7650e8dfcdf1</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix soledad initscript uid and gid.</title>
<updated>2015-03-09T18:26:12+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-03-09T18:22:17+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=61a56f2ee301212d96c2d95a21d524bc06b3a677'/>
<id>61a56f2ee301212d96c2d95a21d524bc06b3a677</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix server initscript location (#6557).</title>
<updated>2014-12-16T16:47:21+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2014-12-16T16:47:21+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=e909a218efb0ad31f413c47c90303f44f6906158'/>
<id>e909a218efb0ad31f413c47c90303f44f6906158</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use SSL negotiation.</title>
<updated>2014-12-02T23:22:18+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2014-12-02T23:22:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=31eeafd715f407c61d8de4e6555241a1de33fba1'/>
<id>31eeafd715f407c61d8de4e6555241a1de33fba1</id>
<content type='text'>
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)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
<entry>
<title>Enclose server initscript variables in curly brackets.</title>
<updated>2014-11-28T11:40:43+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2014-11-28T11:39:41+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=2414b23ecdb8cfc8b8a5852243c22b6fbb89536f'/>
<id>2414b23ecdb8cfc8b8a5852243c22b6fbb89536f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run daemon as user soledad (#6436).</title>
<updated>2014-11-28T11:39:45+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2014-11-26T22:23:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=93bd3fb17670c0c8db5b50028ba2b3ce811dcf5d'/>
<id>93bd3fb17670c0c8db5b50028ba2b3ce811dcf5d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enforce TLSv1 in soledad server (#6437).</title>
<updated>2014-11-28T11:39:45+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2014-11-26T22:20:52+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=17682563bd30e780cf7d620624a856376d257e83'/>
<id>17682563bd30e780cf7d620624a856376d257e83</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump version of dep on soledad.common.</title>
<updated>2014-10-07T16:47:39+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2014-10-07T16:47:39+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/soledad.git/commit/?id=1d7e51aad9e3cd649d0921b533669fa24cbd7ab2'/>
<id>1d7e51aad9e3cd649d0921b533669fa24cbd7ab2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
