<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aports/main/sqlite, branch 3.9-stable</title>
<subtitle>Main aports tree
</subtitle>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/'/>
<entry>
<title>main/sqlite: security fix (CVE-2020-11655)</title>
<updated>2020-05-07T13:49:24+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2020-05-07T12:39:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=a31444c0192891f76398568d2752e94a7a371f2e'/>
<id>a31444c0192891f76398568d2752e94a7a371f2e</id>
<content type='text'>
ref #11508
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #11508
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: security fixes (CVE-2019-19242, CVE-2019-19244)</title>
<updated>2019-12-17T15:37:47+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2019-12-17T15:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=5857b8ca03ba97ebec6fb6f2a0dff609d11b6739'/>
<id>5857b8ca03ba97ebec6fb6f2a0dff609d11b6739</id>
<content type='text'>
ref #11015
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #11015
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: fix CVE-2019-16168</title>
<updated>2019-10-11T18:54:30+00:00</updated>
<author>
<name>Leo</name>
<email>thinkabit.ukim@gmail.com</email>
</author>
<published>2019-10-11T15:46:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=18528a54c8a02fb5f59a2e8fb70ec0b83486acc6'/>
<id>18528a54c8a02fb5f59a2e8fb70ec0b83486acc6</id>
<content type='text'>
ref #10868
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ref #10868
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: fix source url</title>
<updated>2019-06-05T18:02:43+00:00</updated>
<author>
<name>Natanael Copa</name>
<email>ncopa@alpinelinux.org</email>
</author>
<published>2019-06-05T18:02:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=f5aa6b0ea8cff93fe364e234532a08435c0cc07b'/>
<id>f5aa6b0ea8cff93fe364e234532a08435c0cc07b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: security upgrade to 3.28.0 CVE-2019-5018</title>
<updated>2019-06-05T16:01:56+00:00</updated>
<author>
<name>Andy Postnikov</name>
<email>apostnikov@gmail.com</email>
</author>
<published>2019-04-19T01:09:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=b6ffc8832e2cf40ef3bf7ab8428d43c1350fdbf9'/>
<id>b6ffc8832e2cf40ef3bf7ab8428d43c1350fdbf9</id>
<content type='text'>
fixes #10573

(cherry picked from commit 607e9fc9539e88afe11d42d6012d952ee178b2cf)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #10573

(cherry picked from commit 607e9fc9539e88afe11d42d6012d952ee178b2cf)
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: Enabled FTS3</title>
<updated>2018-12-31T11:19:26+00:00</updated>
<author>
<name>Marian Buschsieweke</name>
<email>marian.buschsieweke@ovgu.de</email>
</author>
<published>2018-12-28T08:00:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=856c64b1dc1f9b8176c60e28808482f8503c4e98'/>
<id>856c64b1dc1f9b8176c60e28808482f8503c4e98</id>
<content type='text'>
SQLITE_ENABLE_FTS3 is already defined via `-DSQLITE_ENABLE_FTS3` in
`CFLAGS`, however this approach does not work (compile source below to
verify). Adding `--enable-fts3` as parameter did the trick. FTS3 is required
e.g. by Firefox.

	#include &lt;stdio.h&gt;
	#include "sqlite3.h"

	int main(int argc, char **argv){
		if (sqlite3_compileoption_used("SQLITE_ENABLE_FTS3"))
			puts("yes");
		else
			puts("no");

		return 0;
	}
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SQLITE_ENABLE_FTS3 is already defined via `-DSQLITE_ENABLE_FTS3` in
`CFLAGS`, however this approach does not work (compile source below to
verify). Adding `--enable-fts3` as parameter did the trick. FTS3 is required
e.g. by Firefox.

	#include &lt;stdio.h&gt;
	#include "sqlite3.h"

	int main(int argc, char **argv){
		if (sqlite3_compileoption_used("SQLITE_ENABLE_FTS3"))
			puts("yes");
		else
			puts("no");

		return 0;
	}
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: add check() and enable GeoPoly module</title>
<updated>2018-12-31T07:56:27+00:00</updated>
<author>
<name>Andy Postnikov</name>
<email>apostnikov@gmail.com</email>
</author>
<published>2018-09-16T08:44:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=0d54ca29debcb927176f0b6045bee3169a4acf18'/>
<id>0d54ca29debcb927176f0b6045bee3169a4acf18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: build with SQLITE_ENABLE_FTS3</title>
<updated>2018-12-26T09:09:52+00:00</updated>
<author>
<name>Leonardo Arena</name>
<email>rnalrd@alpinelinux.org</email>
</author>
<published>2018-12-26T09:09:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=90b0a27c0cc8621d3a1d25750f57a4708842fb45'/>
<id>90b0a27c0cc8621d3a1d25750f57a4708842fb45</id>
<content type='text'>
Required by firefox-esr-52.9.0

configure: error: System SQLite library is not compiled with SQLITE_ENABLE_FTS3.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Required by firefox-esr-52.9.0

configure: error: System SQLite library is not compiled with SQLITE_ENABLE_FTS3.
</pre>
</div>
</content>
</entry>
<entry>
<title>main/sqlite: Update to 3.26.0</title>
<updated>2018-12-20T12:24:55+00:00</updated>
<author>
<name>Simon Frankenberger</name>
<email>simon@fraho.eu</email>
</author>
<published>2018-12-19T21:14:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=d931767d75b4f7ac952897f867142aab0f00ca41'/>
<id>d931767d75b4f7ac952897f867142aab0f00ca41</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>main: (Bulk change) Update source urls to https using HTTPS Everywhere</title>
<updated>2018-10-06T17:10:04+00:00</updated>
<author>
<name>J0WI</name>
<email>J0WI@users.noreply.github.com</email>
</author>
<published>2018-10-06T12:07:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git-old.alpinelinux.org/aports/commit/?id=d2bfb22c8e8f67ad7d8d02704f35ec4d2a19f9b9'/>
<id>d2bfb22c8e8f67ad7d8d02704f35ec4d2a19f9b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
