diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-01 22:11:18 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-01 22:27:42 +0200 |
commit | d857e13f7a8b3d5c938eaaeb005898b7a631233a (patch) | |
tree | 584adf2dd31d2151b8e9d1ee9957b4812f75260f | |
parent | 95a011b0d729d4a31dd20d81b409417ac671a6ce (diff) | |
download | alpine-mksite-d857e13f7a8b3d5c938eaaeb005898b7a631233a.tar.bz2 alpine-mksite-d857e13f7a8b3d5c938eaaeb005898b7a631233a.tar.xz |
initial import of news posts
58 files changed, 3179 insertions, 1 deletions
@@ -6,22 +6,31 @@ pages := $(patsubst %.md,$(out)/%.html, $(md_sources)) static_sources := $(shell find _static -type f) static_out := $(patsubst _static/%,$(out)/%,$(static_sources)) +LUA ?= lua +generate_page = $(LUA) _scripts/generate_page.lua +generate_index = $(LUA) _scripts/generate_index.lua + git_atom_url := http://git.alpinelinux.org/cgit/aports/atom all: $(pages) $(static_out) $(out)/index.html: release.yaml git-commits.yaml $(out)/downloads/index.html: latest-releases.yaml +$(out)/posts/index.html: posts/index.yaml $(out)/%.html: %.md _default.template.html mkdir -p $(dir $@) - lua _scripts/generate_page.lua $< $(filter %.yaml,$^) > $@.tmp + $(generate_page) $< $(filter %.yaml,$^) > $@.tmp mv $@.tmp $@ $(static_out): $(out)/%: _static/% mkdir -p $(dir $@) cp $< $@ +%/index.yaml: %/*.md + $(generate_index) $^ > $@.tmp + mv $@.tmp $@ + clean: rm -f $(pages) $(static_out) diff --git a/_scripts/generate_index.lua b/_scripts/generate_index.lua new file mode 100644 index 0000000..06c183f --- /dev/null +++ b/_scripts/generate_index.lua @@ -0,0 +1,35 @@ +#!/usr/bin/lua + +markdown = require('discount') +yaml = require('yaml') + +function read_meta(file) + local f = assert(io.open(file)) + local header, body = f:read("*a"):match("^(%-%-%-.-%-%-%-)(.*)$") + f:close() + local m = yaml.load(header) + m.pagename = file:gsub("%.md$", ""):gsub("^.*/", "") + m.md = file + m.html = m.pagename..".html" + return m +end + +function print_md(meta) + io.write(("|%s|%s|\n"):format(meta.date, meta.title)) +end + +a = {} +j=1 +for i=1, #arg do + local m = read_meta(arg[i]) + if m.date then + a[j] = m + j = j + 1 + end + +end +table.sort(a, function(a,b) + return a.date < b.date +end) +io.write(yaml.dump(a)) + diff --git a/posts/Alpine-2.1.4-released.md b/posts/Alpine-2.1.4-released.md new file mode 100644 index 0000000..9da9ce3 --- /dev/null +++ b/posts/Alpine-2.1.4-released.md @@ -0,0 +1,45 @@ +--- +title: 'Alpine 2.1.4 released' +date: 2011-05-06 +--- + +# Alpine 2.1.4 released +<p>We are pleased to announce the Alpine 2.1.4 release. +</p><p>This release includes an update to 2.6.35.10-based kernels. Hyper-V fixes have been applied to these kernels. +</p><p>Boot scripts have been updated so that if at least one network interface starts successfully, then services that depend on networking will be started. In previous releases (since Alpine 1.9.0) <i>all</i> network interfaces had to start successfully for this to happen. +</p><p>Also, Busybox contains a fix for a long-standing bug that caused crontab files to mysteriously disappear. +</p><p>Please consult the <a href="http://redmine.alpinelinux.org/versions/show/26" class="external text" rel="nofollow">bugtracker</a> and <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.1.4" class="external text" rel="nofollow">cgit</a> for more details. +</p> + +[collapse collapsed title="Package_changes_since_2.1.3"] +<pre> +Upgraded/downgraded packages (from version): +acf-alpine-conf-0.4.0-r2 (0.4.0-r1) +acf-freeswitch-vmail-0.0.10-r0 (0.0.9-r0) +alpine-base-2.1.4-r0 (2.1.3-r0) +alpine-conf-2.5.4-r1 (2.5.4-r0) +apk-tools-2.0.7-r2 (2.0.7-r0) +busybox-1.17.4-r1 (1.17.3-r3) +dahdi-linux-grsec-2.6.35.10-r0 (2.6.35.9-r2) +iscsitarget-grsec-2.6.35.10-r2 (2.6.35.9-r4) +kamailio-3.1.1-r0 (3.1.0-r1) +libmysqlclient-5.1.51-r2 (5.1.51-r1) +linux-firmware-2.6.35.10-r0 (2.6.35.9-r2) +linux-grsec-2.6.35.10-r0 (2.6.35.9-r2) +mkinitfs-2.1.2-r1 (2.1.2-r0) +openrc-0.6.1-r4 (0.6.1-r2) +xtables-addons-grsec-2.6.35.10-r1 (2.6.35.9-r3) +</pre> +[/collapse ] + +<h2> <span class="mw-headline" id="Important_notes_when_upgrading_from_v1.10"> Important notes when upgrading from v1.10 </span></h2> +<ul><li> The v2.0 series introduces an ABI-incompatible version of uClibc with NPTL threading support. This means that you cannot mix packages from older releases with v2.0. To upgrade you will need to make sure that you only have v2.0 repositories in your /etc/apk/repositories list and then do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk upgrade --update-cache --available</p> +</li></ul> + +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>There might be packages with same version number in v1.10 repositories so it is very important that the --available option is there to make sure that those gets replaced properly</div> +<ul><li> You must remove GNU wget before doing the upgrade and only use busybox wget. +</li></ul> +<p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk del wget</p> +<ul><li> All .so links moved to -dev package. It might be an idea to remove alpine-sdk and all *-dev packages before doing the upgrade. If you get problems due to a -dev package want overwrite a .so file owned by other package then you might want use the --force option. +</li></ul> +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>Uninstalling alpine-sdk might remove sudo. To make it stay you'll first have to do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk add sudo</p> </div>
\ No newline at end of file diff --git a/posts/Alpine-2.1.5-released.md b/posts/Alpine-2.1.5-released.md new file mode 100644 index 0000000..bb00bb1 --- /dev/null +++ b/posts/Alpine-2.1.5-released.md @@ -0,0 +1,76 @@ +--- +title: 'Alpine 2.1.5 released' +date: 2011-05-06 +--- + +# Alpine 2.1.5 released +<p>We are pleased to announce the Alpine 2.1.5 release. +</p><p>This release includes an update to use 2.6.35.11-based kernels. +</p><p>Various packages have bugfixes from upstream. Among these are: +</p> +<ul><li> kamailio-3.1.2 +</li><li> asterisk 1.8.3 +</li><li> freeswitch-1.0.7 +</li><li> samba-3.5.8 + +</li><li> dovecot-2.0.11 +</li><li> bind-9.7.3 +</li><li> pmacct-0.12.5 +</li><li> openssl-1.0.0d. +</li></ul> +<p>The package manager has fixes that solve issues when upgrading to edge. +</p><p>Please consult the <a href="http://redmine.alpinelinux.org/versions/show/27" class="external text" rel="nofollow">bugtracker</a> and <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.1.5" class="external text" rel="nofollow">cgit</a> for more details. + +</p> +<h2> <span class="mw-headline" id="Package_changes_since_2.1.4"> Package changes since 2.1.4 </span></h2> +<pre> +New packages: +acf-provisioning-0.0.5-r1 + + +Upgraded/downgraded packages (from version): +acf-core-0.12.0-r0 (0.11.0-r0) +acf-kamailio-0.3.1-r0 (0.2.0-r0) +acf-lib-0.2.0-r0 (0.1.3-r0) +alpine-base-2.1.5-r0 (2.1.4-r0) +alpine-conf-2.5.4-r2 (2.5.4-r1) +apk-tools-2.0.9-r0 (2.0.7-r2) +asterisk-1.8.3-r0 (1.8.1-r0) +asterisk-fax-1.8.3-r0 (1.8.1-r0) +asterisk-odbc-1.8.3-r0 (1.8.1-r0) +asterisk-pgsql-1.8.3-r0 (1.8.1-r0) +asterisk-sample-config-1.8.3-r0 (1.8.1-r0) +asterisk-sqlite-1.8.3-r0 (1.8.1-r0) +asterisk-tds-1.8.3-r0 (1.8.1-r0) +bind-9.7.3-r0 (9.7.2_p2-r0) +bind-libs-9.7.3-r0 (9.7.2_p2-r0) +bind-tools-9.7.3-r0 (9.7.2_p2-r0) +dahdi-linux-grsec-2.6.35.11-r1 (2.6.35.10-r0) +dovecot-2.0.11-r0 (2.0.6-r0) +freeswitch-1.0.7-r0 (1.0.6-r14) +heimdal-1.3.3-r1 (1.3.3-r0) +iscsitarget-grsec-2.6.35.11-r3 (2.6.35.10-r2) +kamailio-3.1.2-r0 (3.1.1-r0) +libcrypto1.0-1.0.0d-r0 (1.0.0c-r0) +libssl1.0-1.0.0d-r0 (1.0.0c-r0) +linux-firmware-2.6.35.11-r1 (2.6.35.10-r0) +linux-grsec-2.6.35.11-r1 (2.6.35.10-r0) +mkinitfs-2.1.2-r2 (2.1.2-r1) +openrc-0.6.1-r5 (0.6.1-r4) +openssl-1.0.0d-r0 (1.0.0c-r0) +samba-3.5.8-r0 (3.5.6-r0) +samba-common-3.5.8-r0 (3.5.6-r0) +samba-initscript-3.5.8-r0 (3.5.6-r0) +xtables-addons-grsec-2.6.35.11-r2 (2.6.35.10-r1) +</pre> +<h2> <span class="mw-headline" id="Important_notes_when_upgrading_from_v1.10"> Important notes when upgrading from v1.10 </span></h2> +<ul><li> The v2.0 series introduces an ABI-incompatible version of uClibc with NPTL threading support. This means that you cannot mix packages from older releases with v2.0. To upgrade you will need to make sure that you only have v2.0 repositories in your /etc/apk/repositories list and then do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk upgrade --update-cache --available</p> +</li></ul> + +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>There might be packages with same version number in v1.10 repositories so it is very important that the --available option is there to make sure that those gets replaced properly</div> +<ul><li> You must remove GNU wget before doing the upgrade and only use busybox wget. +</li></ul> +<p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk del wget</p> +<ul><li> All .so links moved to -dev package. It might be an idea to remove alpine-sdk and all *-dev packages before doing the upgrade. If you get problems due to a -dev package want overwrite a .so file owned by other package then you might want use the --force option. +</li></ul> +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>Uninstalling alpine-sdk might remove sudo. To make it stay you'll first have to do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk add sudo</p> </div> diff --git a/posts/Alpine-2.1.6-released.md b/posts/Alpine-2.1.6-released.md new file mode 100644 index 0000000..1de71c7 --- /dev/null +++ b/posts/Alpine-2.1.6-released.md @@ -0,0 +1,49 @@ +--- +title: 'Alpine 2.1.6 released' +date: 2011-05-06 +--- + +# Alpine 2.1.6 released +<p>We are pleased to announce the Alpine 2.1.6 release. +</p><p>This release includes a security fix for tmpfs installs. +</p><p>Various packages have bugfixes from upstream. Among these are: +</p> +<ul><li> asterisk 1.8.3.2 +</li><li> freeswitch-1.0.7_p20110323 +</li><li> quagga-0.99.18 +</li><li> ipsec-tools-0.8.0 + +</li></ul> +<p>Please consult the <a href="http://redmine.alpinelinux.org/versions/show/29" class="external text" rel="nofollow">bugtracker</a> and <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.1.6" class="external text" rel="nofollow">cgit</a> for more details. +</p> +<h2> <span class="mw-headline" id="Package_changes_since_2.1.5"> Package changes since 2.1.5 </span></h2> +<pre> +Upgraded/downgraded packages (from version): +acf-kamailio-0.3.2-r0 (0.3.1-r0) +alpine-base-2.1.6-r0 (2.1.5-r0) +asterisk-1.8.3.2-r0 (1.8.3-r0) +asterisk-fax-1.8.3.2-r0 (1.8.3-r0) +asterisk-odbc-1.8.3.2-r0 (1.8.3-r0) +asterisk-pgsql-1.8.3.2-r0 (1.8.3-r0) +asterisk-sample-config-1.8.3.2-r0 (1.8.3-r0) +asterisk-sqlite-1.8.3.2-r0 (1.8.3-r0) +asterisk-tds-1.8.3.2-r0 (1.8.3-r0) +freeswitch-1.0.7_p20110323-r0 (1.0.7-r0) +heimdal-1.3.3-r2 (1.3.3-r1) +ipsec-tools-0.8.0-r0 (0.8_alpha20101208-r0) +libpri-1.4.12_beta3-r0 (1.4.12_beta2-r0) +lua-5.1.4_p3-r0 (5.1.4-r6) +quagga-0.99.18-r0 (0.99.17-r0) +</pre> +<h2> <span class="mw-headline" id="Important_notes_when_upgrading_from_v1.10"> Important notes when upgrading from v1.10 </span></h2> + +<ul><li> The v2.0 series introduces an ABI-incompatible version of uClibc with NPTL threading support. This means that you cannot mix packages from older releases with v2.0. To upgrade you will need to make sure that you only have v2.0 repositories in your /etc/apk/repositories list and then do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk upgrade --update-cache --available</p> +</li></ul> +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>There might be packages with same version number in v1.10 repositories so it is very important that the --available option is there to make sure that those gets replaced properly</div> +<ul><li> You must remove GNU wget before doing the upgrade and only use busybox wget. +</li></ul> +<p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk del wget</p> +<ul><li> All .so links moved to -dev package. It might be an idea to remove alpine-sdk and all *-dev packages before doing the upgrade. If you get problems due to a -dev package want overwrite a .so file owned by other package then you might want use the --force option. +</li></ul> + +<div style="padding: 0.25em; margin: 0.50em 0; background-color: #DDDDFF; border: 2px solid #BBBBFF"><strong> Note: </strong>Uninstalling alpine-sdk might remove sudo. To make it stay you'll first have to do: <p style="background-color:#eeeeee; color:#111111; padding:.05em .5em; margin:.5em; border:1px solid #dddddd; border-left:2px solid #dddddd; white-space:pre; font-family:monospace; font-size:10pt;">apk add sudo</p> </div> diff --git a/posts/Alpine-2.2.0-released.md b/posts/Alpine-2.2.0-released.md new file mode 100644 index 0000000..0f55b3c --- /dev/null +++ b/posts/Alpine-2.2.0-released.md @@ -0,0 +1,411 @@ +--- +title: 'Alpine 2.2.0 released' +date: 2011-05-06 +--- + +# Alpine 2.2.0 released +The Alpine Linux project is pleased to announce immediate availability of version 2.2 of its Alpine Linux operating system. + +This release introduces several new features: + +<ul> +<li> A new Linux kernel branch based on 2.6.38 with all of the Alpine patches either rebased or included in upstream Linux sources. + +<li> New support for the x86_64 architecture. Alpine 2.2 is able to efficiently take advantage of modern x86 processors supporting all available general purpose registers + and providing native support for the full expanded 64-bit virtual address space of modern computer hardware. + +<li> SHA512 password hashing security. In Alpine 2.2, passwords in /etc/shadow are now hashed using SHA512 by default. This provides significantly stronger password hash strength, increasing the difficulty required to crack system passwords by several orders of magnitude. + +<li> Preliminary support for grsecurity Role Based Access Control. By installing the gradm package and enabling the grsec-rbac service, you can add additional hardening to your server or appliance's security configuration. + +<li> Enhanced disk partitioning and installation tool (setup-disk). This tool now supports configuration of LVM volumes, software RAID, data-only storage disks and uses the EXT4 filesystem by default. All of this is provided in a simple to use utility. + +<li> Improved package management tools (apk). New features include support for multiple architectures, an improved interactive mode and general UI enhancements. + +<li> Support for read-only boot filesystems. This support is automatically used on new installations involving removable storage as well as 'hybrid' setups where the system image is stored on disk and configuration is stored on a second partition. + +<li> Added GNOME desktop environment. This support is presently preliminary, but can be installed using the gnome-base metapackage. + +<li> XFCE was upgraded to 4.8. Alpine continues to provide excellent support for the XFCE desktop environment by shipping the latest version in Alpine 2.2. + +<li> Added Mozilla Firefox web browser and GNU Gnash. These additions enable Alpine to have a fully functional web browser on its desktop profile. + +<li> MySQL has been upgraded to version 5.5. This new version of MySQL brings several security and performance enhancements. + +<li> OpenRC has been upgraded to version 0.8.2. This new version of OpenRC brings several bugfixes and performance improvements. + +<li> Preliminary support for a Xen dom0 environment added. This will be enhanced upon in the next major version of Alpine, but provides significant memory savings over other Xen dom0 environments. Xen support is available only on the x86_64 port of Alpine. + +<li> Busybox has upgraded to version 1.18.4. The new enhancements in Busybox make Alpine easier to learn for those used to GNU/Linux environments. +</ul> + +<br> +<h2>Packages changed in Alpine 2.2 from 2.1.6</h2> + +This list only contains packages included on the main CD-ROM. There are thousands of packages available in our Internet-based repositories. + +[collapse collapsed title="Removed packages"] +<pre> +Removed packages: + +asterisk-addons-1.6.2.1-r1 +asterisk-addons-mp3-1.6.2.1-r1 +asterisk-addons-mysql-1.6.2.1-r1 +asterisk-addons-ooh323-1.6.2.1-r1 +asterisk-addons-saycountpl-1.6.2.1-r1 +libmysqlclient-5.1.51-r2 +libusb-compat-0.1.3-r0 +ncurses-5.7-r3 +zonenotify-0.1-r1 +</pre> +[/collapse] + +[collapse collapsed title="New packages"] +<pre> +New packages: + +alpine-mirrors-2.1.0_git20110122-r0 +daq-0.5-r0 +dhcrelay-4.2.1_p1-r0 +fprobe-1.1-r5 +libice-1.0.7-r1 +libjpeg-8-r4 +libsm-1.2.0-r1 +libx11-1.4.3-r0 +libxau-1.0.6-r1 +libxcb-1.7-r1 +libxdmcp-1.1.0-r1 +libxt-1.1.1-r0 +lua-posixtz-0.3-r0 +mysql-common-5.5.11-r0 +mysql-libs-5.5.11-r0 +ncurses-base-5.9-r0 +ncurses-libs-5.9-r0 +ncurses-widec-libs-5.9-r0 +nrpe-2.12-r8 +samba-client-3.5.8-r0 +talloc-2.0.5-r2 +tzdata-2011e-r2 +xcb-proto-1.6-r1 +</pre> +[/collapse] + +[collapse collapsed title="Upgraded/downgraded packages"] +<p> +<pre> +Upgraded/downgraded packages (from version): +acct-6.5.5-r0 (6.5.3-r1) +acf-alpine-baselayout-0.8.2-r0 (0.7.3-r0) +acf-alpine-conf-0.4.0-r4 (0.4.0-r2) +acf-amavisd-new-0.1.0-r2 (0.1.0-r0) +acf-apk-tools-0.5.0-r3 (0.5.0-r1) +acf-asterisk-0.3.0-r0 (0.2.3-r0) +acf-chrony-0.3.0-r0 (0.2.2-r1) +acf-clamav-0.3.0-r0 (0.2.4-r0) +acf-clamsmtp-0.2.1-r2 (0.2.1-r0) +acf-core-0.13.0-r0 (0.12.0-r0) +acf-dansguardian-0.4.0-r0 (0.3.3-r0) +acf-dhcp-0.5.0-r0 (0.4.3-r0) +acf-dnscache-0.3.0-r0 (0.2.2-r1) +acf-dnsmasq-0.3.0-r0 (0.2.2-r0) +acf-dovecot-0.2.1-r2 (0.2.1-r0) +acf-fetchmail-0.5.0-r0 (0.4.2-r0) +acf-freeswitch-0.2.0-r0 (0.1.1-r0) +acf-freeswitch-vmail-0.0.10-r1 (0.0.10-r0) +acf-gross-0.2.1-r2 (0.2.1-r0) +acf-heimdal-0.2.0-r2 (0.2.0-r0) +acf-iproute2-qos-0.1.2-r2 (0.1.2-r0) +acf-ipsec-tools-0.7.1-r0 (0.6.1-r0) +acf-iptables-0.3.1-r2 (0.3.1-r0) +acf-jquery-0.2.0-r0 (0.1.0-r1) +acf-kamailio-0.4.0-r0 (0.3.2-r0) +acf-lib-0.2.1-r0 (0.2.0-r0) +acf-lvm2-0.3.0-r0 (0.2.1-r0) +acf-mdadm-0.2.1-r2 (0.2.1-r0) +acf-opennhrp-0.6.1-r2 (0.6.1-r0) +acf-openntpd-0.5.0-r0 (0.4.1-r0) +acf-openssh-0.5.0-r0 (0.4.2-r0) +acf-openssl-0.3.1-r2 (0.3.1-r0) +acf-openvpn-0.6.0-r2 (0.6.0-r0) +acf-pingu-0.2.1-r2 (0.2.1-r0) +acf-postfix-0.4.0-r0 (0.3.2-r0) +acf-postgresql-0.4.0-r0 (0.3.2-r0) +acf-ppp-0.2.0-r2 (0.2.0-r0) +acf-provisioning-0.0.7-r1 (0.0.5-r1) +acf-quagga-0.5.0-r2 (0.5.0-r0) +acf-samba-0.5.0-r0 (0.4.0-r0) +acf-shorewall-0.7.0-r0 (0.6.2-r0) +acf-skins-0.4.0-r0 (0.3.0-r0) +acf-snort-0.5.1-r2 (0.5.1-r0) +acf-squid-0.7.0-r0 (0.6.0-r0) +acf-tcpproxy-0.2.0-r2 (0.2.0-r0) +acf-tinydns-0.7.0-r0 (0.6.0-r0) +acf-weblog-0.5.9-r2 (0.5.9-r0) +alpine-base-2.2.0-r0 (2.1.6-r0) +alpine-baselayout-2.1.1-r0 (2.0_rc1-r1) +alpine-conf-2.8.0-r1 (2.5.4-r2) +alsa-lib-1.0.24.1-r0 (1.0.23-r2) +amavisd-new-2.6.4-r3 (2.6.4-r2) +apk-tools-2.1.0_rc1-r2 (2.0.9-r0) +arpon-2.1-r0 (1.90-r2) +arpwatch-2.1a15-r3 (2.1a15-r2) +asterisk-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-audio-konf-0_git101026-r1 (0_git101026-r0) +asterisk-fax-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-odbc-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-pgsql-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-sample-config-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-sqlite-1.8.3.3-r0 (1.8.3.2-r0) +asterisk-tds-1.8.3.3-r0 (1.8.3.2-r0) +bash-4.2.008-r0 (4.1.009-r0) +bbsuid-0.6-r0 (0.4-r0) +bind-9.8.0-r0 (9.7.3-r0) +bind-libs-9.8.0-r0 (9.7.3-r0) +bind-tools-9.8.0-r0 (9.7.3-r0) +bkeymaps-1.13-r1 (1.13-r0) +bridge-utils-1.4-r2 (1.4-r1) +busybox-1.18.4-r2 (1.17.4-r1) +busybox-initscripts-2.2-r1 (2.0-r13) +bwm-ng-0.6-r2 (0.6-r1) +c-ares-1.7.4-r1 (1.7.3-r0) +chrony-1.23-r8 (1.23-r6) +cksfv-1.3.14-r2 (1.3.14-r1) +clamav-0.97-r0 (0.96.4-r0) +clamsmtp-1.10-r8 (1.10-r7) +confuse-2.7-r1 (2.7-r0) +conntrack-tools-0.9.13-r3 (0.9.13-r2) +cryptsetup-1.2.0-r0 (1.1.3-r0) +curl-7.21.6-r0 (7.21.2-r0) +cutter-1.03-r3 (1.03-r2) +cyrus-sasl-2.1.23-r7 (2.1.23-r6) +dahdi-linux-2.4.1.2-r0 (2.4.0-r0) +dahdi-linux-grsec-2.6.38.2-r5 (2.6.35.11-r1) +dahdi-tools-2.4.1-r0 (2.4.0-r0) +dansguardian-2.10.1.1-r7 (2.10.1.1-r6) +db-5.1.25-r0 (4.8.26-r3) +device-mapper-2.02.84-r0 (2.02.75-r0) +dhcp-4.2.1_p1-r0 (4.2.0_p1-r0) +dhcpcd-5.2.12-r0 (5.2.8-r0) +djbdns-common-1.05-r38 (1.05-r37) +dnscache-1.05-r38 (1.05-r37) +dnsmasq-2.57-r0 (2.55-r0) +dosfstools-3.0.11-r0 (3.0.10-r0) +dovecot-2.0.12-r2 (2.0.11-r0) +e2fsprogs-1.41.14-r0 (1.41.12-r0) +email-3.1.3-r1 (3.1.2-r2) +espeak-1.44.05-r1 (1.44.05-r0) +ethtool-6-r2 (6-r1) +expat-2.0.1-r4 (2.0.1-r3) +fetchmail-6.3.19-r1 (6.3.18-r0) +file-5.06-r0 (5.04-r2) +fping-2.4_beta2-r3 (2.4_beta2-r2) +freeswitch-1.0.7_p20110323-r1 (1.0.7_p20110323-r0) +freetds-0.82-r8 (0.82-r5) +freetype-2.4.4-r2 (2.4.3-r0) +gettext-0.18.1.1-r3 (0.18.1.1-r0) +glib-2.28.0-r0 (2.26.0-r2) +groff-1.21-r0 (1.20.1-r2) +gross-1.0.2-r2 (1.0.2-r1) +haserl-0.9.27-r1 (0.9.27-r0) +heimdal-1.4-r7 (1.3.3-r2) +htop-0.8.3-r2 (0.8.3-r1) +igmpproxy-0.1-r2 (0.1-r1) +ip6tables-1.4.10-r1 (1.4.10-r0) +iproute2-2.6.37-r0 (2.6.35-r2) +iproute2-qos-0.4-r2 (0.4-r1) +ipsec-tools-0.8.0-r2 (0.8.0-r0) +iptables-1.4.10-r1 (1.4.10-r0) +iptraf-3.0.0-r4 (3.0.0-r3) +iputils-20100214-r3 (20100214-r2) +irssi-0.8.15-r6 (0.8.15-r1) +iscsitarget-1.4.20.2-r1 (1.4.20.2-r0) +iscsitarget-grsec-2.6.38.2-r3 (2.6.35.11-r3) +kamailio-3.1.3-r1 (3.1.2-r0) +lftp-4.2.2-r0 (4.0.10-r0) +libart-lgpl-2.3.21-r4 (2.3.21-r3) +libblkid-2.18-r2 (2.18-r0) +libbz2-1.0.6-r1 (1.0.6-r0) +libc0.9.32-0.9.32_rc3-r11 (0.9.32_alpha0_git1012071015-r0) +libcap-2.20-r0 (2.19-r2) +libcom_err-1.41.14-r0 (1.41.12-r0) +libdnet-1.12-r4 (1.12-r3) +libevent-2.0.10-r0 (1.4.14b-r0) +libgcc-4.5.2-r7 (4.5.1-r7) +libgcrypt-1.4.6-r1 (1.4.6-r0) +libgomp-4.5.2-r7 (4.5.1-r7) +libgpg-error-1.9-r1 (1.9-r0) +libiconv-1.12-r5 (1.12-r4) +libldap-2.4.25-r0 (2.4.23-r1) +libltdl-2.4-r1 (2.4-r0) +libnet-1.1.5-r1 (1.1.4-r3) +libnetfilter_conntrack-0.9.1-r0 (0.0.102-r0) +libnfnetlink-1.0.0-r4 (1.0.0-r3) +libpcap-1.1.1-r3 (1.1.1-r2) +libpng-1.4.5-r1 (1.4.4-r0) +libpq-9.0.4-r0 (9.0.1-r0) +libsasl-2.1.23-r7 (2.1.23-r6) +libspeex-1.2_rc1-r1 (1.2_rc1-r0) +libstdc++-4.5.2-r7 (4.5.1-r7) +libusb-1.0.8-r2 (1.0.8-r1) +libuuid-2.18-r2 (2.18-r0) +libxml2-2.7.8-r1 (2.7.7-r3) +links-2.2-r4 (2.2-r3) +linux-firmware-20110311-r0 (2.6.35.11-r1) +linux-grsec-2.6.38.2-r3 (2.6.35.11-r1) +lm_sensors-3.3.0-r0 (3.2.0-r0) +lm_sensors-detect-3.3.0-r0 (3.2.0-r0) +logrotate-3.7.9-r2 (3.7.9-r0) +lsof-4.84-r1 (4.84-r0) +lua-5.1.4_p3-r1 (5.1.4_p3-r0) +lua-alt-getopt-0.7.0-r1 (0.7.0-r0) +lua-bitlib-26-r2 (26-r1) +lua-discount-1.2.10.1-r2 (1.2.10.1-r1) +lua-dns-20080404-r1 (20080404-r0) +lua-expat-1.1-r2 (1.1-r1) +lua-iconv-6-r2 (6-r1) +lua-json4-0.9.20-r1 (0.9.20-r0) +lua-md5-1.1.2-r2 (1.1.2-r1) +lua-openrc-0.1-r3 (0.1-r1) +lua-pc-1.0.0-r3 (1.0.0-r2) +lua-posix-5.1.7-r1 (5.1.7-r0) +lua-socket-2.0.2-r2 (2.0.2-r1) +lua-sql-mysql-2.1.1-r3 (2.1.1-r1) +lua-sql-postgres-2.1.1-r3 (2.1.1-r2) +lua-sql-sqlite3-2.1.1-r3 (2.1.1-r2) +lua-stdlib-13-r1 (13-r0) +lua-uuid-2010.11-r0 (5.1-r1) +lua-zlib-0.4-r2 (0.4-r1) +lvm2-2.02.84-r0 (2.02.75-r0) +lzo-2.03-r4 (2.03-r3) +man-1.6f-r3 (1.6f-r2) +mdadm-3.2.1-r0 (3.1.4-r0) +mini_httpd-1.19-r6 (1.19-r5) +miniperl-5.12.3-r0 (5.12.2-r0) +mkinitfs-2.3.4-r1 (2.1.2-r2) +mpg123-1.13.3-r0 (1.12.3-r0) +mtools-4.0.16-r0 (4.0.14-r0) +nano-2.2.6-r1 (2.2.5-r0) +ncurses-terminfo-5.9-r0 (5.7-r3) +net-snmp-5.6.1-r0 (5.5-r3) +net-snmp-tools-5.6.1-r0 (5.5-r3) +newt-0.52.11-r1 (0.52.11-r0) +nmap-5.51-r0 (5.21-r2) +opennhrp-0.12.1-r1 (0.12-r1) +openntpd-3.9_p1-r9 (3.9_p1-r8) +openrc-0.8.2-r2 (0.6.1-r5) +openssh-5.8_p2-r0 (5.6_p1-r1) +openssh-client-5.8_p2-r0 (5.6_p1-r1) +openvpn-2.1.4-r1 (2.1.3-r0) +p7zip-9.20.1-r0 (9.13-r0) +parted-2.3-r1 (2.3-r0) +pax-utils-0.2.1-r1 (0.2.1-r0) +paxctl-0.5-r2 (0.5-r1) +pciutils-3.1.7-r2 (3.1.7-r1) +pcre-8.12-r0 (8.10-r3) +perl-5.12.3-r0 (5.12.2-r0) +perl-archive-zip-1.30-r1 (1.30-r0) +perl-convert-binhex-1.119-r1 (1.119-r0) +perl-convert-tnef-0.17-r1 (0.17-r0) +perl-convert-uulib-1.12-r2 (1.12-r1) +perl-crypt-openssl-random-0.04-r3 (0.04-r2) +perl-crypt-openssl-rsa-0.26-r3 (0.26-r2) +perl-db-0.43-r0 (0.41-r1) +perl-io-stringy-2.110-r1 (2.110-r0) +perl-mail-dkim-0.38-r1 (0.38-r0) +perl-mail-tools-2.07-r1 (2.04-r0) +perl-mime-tools-5.428-r0 (5.427-r0) +perl-net-dns-0.66-r4 (0.66-r2) +perl-net-ip-1.25-r1 (1.25-r0) +perl-net-server-0.99-r0 (0.97-r0) +perl-test-pod-1.44-r1 (1.44-r0) +perl-time-date-1.20-r1 (1.16-r0) +perl-unix-syslog-1.1-r2 (1.1-r1) +pingu-0.5-r2 (0.5-r1) +pkgconfig-0.23-r2 (0.23-r1) +popt-1.16-r2 (1.16-r1) +postfix-2.8.2-r1 (2.7.1-r0) +postgresql-9.0.4-r0 (9.0.1-r0) +postgresql-client-9.0.4-r0 (9.0.1-r0) +ppp-2.4.5-r6 (2.4.5-r4) +readline-6.2.001-r0 (6.1.002-r2) +rrdtool-1.2.30-r6 (1.2.30-r5) +rsync-3.0.8-r0 (3.0.7-r1) +screen-4.0.3-r3 (4.0.3-r2) +sed-4.2.1-r2 (4.2.1-r1) +sfdisk-2.18-r2 (2.18-r0) +shorewall-4.2.10-r1 (4.2.10-r0) +shorewall-common-4.2.10-r1 (4.2.10-r0) +shorewall-common-doc-4.2.10-r1 (4.2.10-r0) +shorewall-lite-4.2.10-r1 (4.2.10-r0) +shorewall-perl-4.2.10.5-r1 (4.2.10.5-r0) +shorewall-shell-4.2.10-r2 (4.2.10-r1) +slang-2.2.3-r0 (2.2.1-r2) +snort-2.9.0.4-r0 (2.8.6.1-r0) +sntpc-0.9-r3 (0.9-r2) +spandsp-0.0.6_pre17-r4 (0.0.6_pre17-r2) +sqlite-3.7.6.2-r0 (3.7.3-r0) +squid-2.7.9-r3 (2.7.9-r1) +squid-errors-armenian-2.7.9-r3 (2.7.9-r1) +squid-errors-azerbaijani-2.7.9-r3 (2.7.9-r1) +squid-errors-bulgarian-2.7.9-r3 (2.7.9-r1) +squid-errors-catalan-2.7.9-r3 (2.7.9-r1) +squid-errors-czech-2.7.9-r3 (2.7.9-r1) +squid-errors-danish-2.7.9-r3 (2.7.9-r1) +squid-errors-dutch-2.7.9-r3 (2.7.9-r1) +squid-errors-english-2.7.9-r3 (2.7.9-r1) +squid-errors-estonian-2.7.9-r3 (2.7.9-r1) +squid-errors-finnish-2.7.9-r3 (2.7.9-r1) +squid-errors-french-2.7.9-r3 (2.7.9-r1) +squid-errors-german-2.7.9-r3 (2.7.9-r1) +squid-errors-greek-2.7.9-r3 (2.7.9-r1) +squid-errors-hebrew-2.7.9-r3 (2.7.9-r1) +squid-errors-hungarian-2.7.9-r3 (2.7.9-r1) +squid-errors-italian-2.7.9-r3 (2.7.9-r1) +squid-errors-japanese-2.7.9-r3 (2.7.9-r1) +squid-errors-korean-2.7.9-r3 (2.7.9-r1) +squid-errors-lithuanian-2.7.9-r3 (2.7.9-r1) +squid-errors-polish-2.7.9-r3 (2.7.9-r1) +squid-errors-portuguese-2.7.9-r3 (2.7.9-r1) +squid-errors-romanian-2.7.9-r3 (2.7.9-r1) +squid-errors-russian-1251-2.7.9-r3 (2.7.9-r1) +squid-errors-russian-koi8-r-2.7.9-r3 (2.7.9-r1) +squid-errors-serbian-2.7.9-r3 (2.7.9-r1) +squid-errors-simplify_chinese-2.7.9-r3 (2.7.9-r1) +squid-errors-slovak-2.7.9-r3 (2.7.9-r1) +squid-errors-spanish-2.7.9-r3 (2.7.9-r1) +squid-errors-swedish-2.7.9-r3 (2.7.9-r1) +squid-errors-traditional_chinese-2.7.9-r3 (2.7.9-r1) +squid-errors-turkish-2.7.9-r3 (2.7.9-r1) +squid-errors-ukrainian-1251-2.7.9-r3 (2.7.9-r1) +squid-errors-ukrainian-koi8-u-2.7.9-r3 (2.7.9-r1) +squid-errors-ukrainian-utf8-2.7.9-r3 (2.7.9-r1) +ssmtp-2.64-r4 (2.64-r3) +strace-4.6-r0 (4.5.20-r0) +sudo-1.8.1p1-r0 (1.7.4_p4-r0) +sysfsutils-2.1.0-r6 (2.1.0-r5) +sysklogd-1.5-r12 (1.5-r11) +syslinux-4.04-r0 (4.03-r0) +tcpdump-4.1.1-r2 (4.1.1-r1) +tcpproxy-2.0.0_beta15-r2 (2.0.0_beta15-r1) +tiff-3.9.5-r0 (3.8.2-r3) +tinydns-1.05-r38 (1.05-r37) +tinyproxy-1.6.5-r6 (1.6.5-r5) +transmission-cli-2.22-r0 (2.11-r0) +uclibc-utils-0.9.32_rc3-r11 (0.9.32_alpha0_git1012071015-r0) +unfs3-0.9.22-r2 (0.9.22-r1) +unixodbc-2.3.0-r2 (2.3.0-r1) +unrar-4.0.7-r0 (3.9.10-r1) +usbutils-002-r0 (0.91-r0) +util-linux-ng-2.18-r2 (2.18-r0) +v86d-0.1.10-r0 (0.1.9-r1) +vim-7.3.154-r0 (7.3.003-r0) +vsftpd-2.3.4-r0 (2.3.1-r1) +wget-1.12-r3 (1.12-r2) +xe-guest-utilities-5.5.0.458-r1 (5.5.0.458-r0) +xfsprogs-3.1.5-r0 (3.1.3-r0) +xtables-addons-1.33-r0 (1.30-r0) +xtables-addons-grsec-2.6.38.2-r3 (2.6.35.11-r2) +zlib-1.2.5-r2 (1.2.5-r1) +</pre> +</p> +[/collapse]
\ No newline at end of file diff --git a/posts/Alpine-2.2.1-released.md b/posts/Alpine-2.2.1-released.md new file mode 100644 index 0000000..8ab9a7d --- /dev/null +++ b/posts/Alpine-2.2.1-released.md @@ -0,0 +1,59 @@ +--- +title: 'Alpine 2.2.1 released' +date: 2011-06-06 +--- + +# Alpine 2.2.1 released +The Alpine Linux project is pleased to announce immediate availability of version 2.2.1 of its Alpine Linux operating system. + +This release fixes the following issues: + +<ul> +<li>Fix issue with screen going blank at boot on some hardware (issue <a href="http://bugs.alpinelinux.org/issues/622">#622</a>) +<li>Add the missing zonenotify package (issue <a href="http://bugs.alpinelinux.org/issues/623">#623</a>) +<li>Enabling legacy CPU support (issue <a href="http://bugs.alpinelinux.org/issues/628">#628</a>) +<li>Increasing apk-tools support for read-only boot removable media (issues <a href="http://bugs.alpinelinux.org/issues/662">#662</a> and <a href="http://bugs.alpinelinux.org/issues/663">#663</a>) +<li>Added a mkinitfs trigger to remove unused initramfs images (issue <a href="http://bugs.alpinelinux.org/issues/660">#660</a>) +</ul> +<br> + +A list of bugfixes can be found in the <a href="http://bugs.alpinelinux.org/projects/alpine/versions/31">bugtracker</a> while a full list of changes is available in the <a href="http://git.alpinelinux.org/cgit/aports.git/log/?h=v2.2.1">git log</a>. + +<br> +<h2>Packages changed in Alpine 2.2.1 from 2.2.0</h2> +<pre> +Removed packages: + + +New packages: +socat-1.7.1.3-r0 +zonenotify-0.1-r2 + + +Upgraded/downgraded packages (from version): +acf-core-0.13.1-r0 (0.13.0-r0) +acf-freeswitch-vmail-0.0.12-r0 (0.0.10-r1) +acf-skins-0.4.1-r0 (0.4.0-r0) +alpine-base-2.2.1-r0 (2.2.0-r0) +alpine-conf-2.8.1-r0 (2.8.0-r1) +apk-tools-2.1.0-r1 (2.1.0_rc1-r2) +asterisk-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-fax-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-odbc-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-pgsql-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-sample-config-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-sqlite-1.8.4.2-r0 (1.8.3.3-r0) +asterisk-tds-1.8.4.2-r0 (1.8.3.3-r0) +busybox-initscripts-2.2-r2 (2.2-r1) +dahdi-linux-grsec-2.6.38.7-r2 (2.6.38.2-r5) +iscsitarget-grsec-2.6.38.7-r0 (2.6.38.2-r3) +libc0.9.32-0.9.32_rc3-r12 (0.9.32_rc3-r11) +linux-grsec-2.6.38.7-r0 (2.6.38.2-r3) +mdadm-3.2.1-r1 (3.2.1-r0) +mkinitfs-2.3.4-r2 (2.3.4-r1) +perl-net-dns-0.66-r6 (0.66-r4) +tzdata-2011g-r0 (2011e-r2) +uclibc-utils-0.9.32_rc3-r12 (0.9.32_rc3-r11) +xtables-addons-grsec-2.6.38.7-r0 (2.6.38.2-r3) + +</pre> diff --git a/posts/Alpine-2.2.2-released.md b/posts/Alpine-2.2.2-released.md new file mode 100644 index 0000000..412037d --- /dev/null +++ b/posts/Alpine-2.2.2-released.md @@ -0,0 +1,31 @@ +--- +title: 'Alpine 2.2.2 released' +date: 2011-06-07 +--- + +# Alpine 2.2.2 released +The Alpine Linux project is pleased to announce immediate availability of version 2.2.2 of its Alpine Linux operating system. + +This bugfix release fixes the following issues: + +* Resolve circular dependency that was causing an upgrade issue (issue <a href="http://redmine.alpinelinux.org/issues/675">#675</a>) +* Fix mkfs in setup-disk on non-LVM disk (issue <a href="http://redmine.alpinelinux.org/issues/678">#678</a>) + +For a full list of changes please see the <a href="http://git.alpinelinux.org/cgit/aports.git/log/?h=v2.2.2">git log</a> or <a href="http://bugs.alpinelinux.org/versions/show/32">bugtracker</a>. + +<h2>Packages changed in Alpine 2.2.2 from 2.2.1</h2> +<pre> +Removed packages: + +New packages: + +Upgraded/downgraded packages (from version): +alpine-base-2.2.2-r0 (2.2.1-r0) +alpine-conf-2.8.1-r1 (2.8.1-r0) +bind-9.8.0_p2-r0 (9.8.0-r0) +bind-libs-9.8.0_p2-r0 (9.8.0-r0) +bind-tools-9.8.0_p2-r0 (9.8.0-r0) +libc0.9.32-0.9.32_rc3-r14 (0.9.32_rc3-r12) +postfix-2.8.3-r0 (2.8.2-r1) +uclibc-utils-0.9.32_rc3-r14 (0.9.32_rc3-r12) +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.2.3-released.md b/posts/Alpine-2.2.3-released.md new file mode 100644 index 0000000..c1c0ca9 --- /dev/null +++ b/posts/Alpine-2.2.3-released.md @@ -0,0 +1,15 @@ +--- +title: 'Alpine 2.2.3 released' +date: 2011-08-25 +--- + +# Alpine 2.2.3 released +The Alpine Linux project is pleased to announce immediate availability of version 2.2.3 of its Alpine Linux operating system. + +This bugfix release includes various security updates for packages, reintroduces UDEREF protection in kernel and fixes issues with apk cache and lbu commit on USB sticks. + +For a full list of changes please see the <a href="http://git.alpinelinux.org/cgit/aports.git/log/?h=v2.2.3">git log</a> or <a href="http://bugs.alpinelinux.org/versions/show/33">bugtracker</a>. + +<h2>Packages changed in Alpine 2.2.3 from 2.2.2</h2> +<pre> +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.3.0-released.md b/posts/Alpine-2.3.0-released.md new file mode 100644 index 0000000..c43ab95 --- /dev/null +++ b/posts/Alpine-2.3.0-released.md @@ -0,0 +1,36 @@ +--- +title: 'Alpine 2.3.0 released' +date: 2011-11-01 +--- + +# Alpine 2.3.0 released +The Alpine Linux project is pleased to announce immediate availablity of +version 2.3 of its Alpine Linux operating system. + +This release introduces several new features: + +<ul> +<li>A new Linux kernel based on 3.0.</li> + +<li>GCC 4.6.</li> + +<li>Improved setup scripts with tools for helping configure local config backup location and package manager cache.</li> + +<li>Preliminary support for booting from encrypted LVM partitions.</li> + +<li>Busybox has been upgraded to version 1.19.2 with shell history search (with ctrl-r).</li> + +<li>Unbound DNS resolver with DNSSEC support.</li> + +<li>setup-bootable now uses UUID by default.</li> + +<li>Better multi-ISP support in pingu with support for ppp and dhcp using.</li> + +<li>PostgreSQL has been upgraded to 9.1.</li> + +<li>Kamailio has been upgraded to 3.2.</li> + +<li>"apk search" now does wildcard search by default.</li> + +<li>New ISO image for iSCSI targets: alpine-scst.</li> +</ul>
\ No newline at end of file diff --git a/posts/Alpine-2.3.1-released.md b/posts/Alpine-2.3.1-released.md new file mode 100644 index 0000000..2057395 --- /dev/null +++ b/posts/Alpine-2.3.1-released.md @@ -0,0 +1,11 @@ +--- +title: 'Alpine 2.3.1 released' +date: 2011-11-12 +--- + +# Alpine 2.3.1 released +The Alpine Linux project is pleased to announce immediate availability of version 2.3.1 of its Alpine Linux operating system. + +This bugfix release includes security updates for multiple packages, setup script fixes for booting from HP (cciss) RAID devices, vserver kernel update to 3.0.8, and some performance improvement patches for the grsec kernel. + +A full list of changes can be found on our <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.3.1">git log</a> or <a href="http://bugs.alpinelinux.org/projects/alpine/versions/37">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.3.2-released.md b/posts/Alpine-2.3.2-released.md new file mode 100644 index 0000000..c5fc5ba --- /dev/null +++ b/posts/Alpine-2.3.2-released.md @@ -0,0 +1,11 @@ +--- +title: 'Alpine 2.3.2 released' +date: 2011-11-22 +--- + +# Alpine 2.3.2 released +The Alpine Linux project is pleased to announce immediate availability of version 2.3.2 of its Alpine Linux operating system. + +This bugfix release includes several security patches from upstream package sources, iptables compatibility fixes for Shorewall, kernel upgrade to 3.0.10, and multi-core CPU kernel enhancements. + +Full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.3.2">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/38">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.3.3-released.md b/posts/Alpine-2.3.3-released.md new file mode 100644 index 0000000..7aae31e --- /dev/null +++ b/posts/Alpine-2.3.3-released.md @@ -0,0 +1,20 @@ +--- +title: 'Alpine 2.3.3 released' +date: 2012-01-04 +--- + +# Alpine 2.3.3 released +The Alpine Linux project is pleased to announce immediate availability of version 2.3.3 of its Alpine Linux operating system. + +Some of the higlights in this bugfix release are: +<ul> +<li>kernel updated to 3.0.14</li> +<li>kernel patch for issues with MTU and OpenNHRP</li> +<li>opennhrp updated to 0.13 - better supports multi-ISP configurations with pingu</li> +<li>shorewall fix for multi-ISP configurations with pingu - no more need to restart pingu everytime shorewall is restarted.</li> +<li>unbound DNS resolver now updates the root server from a periodic script</li> +</ul> + +This release also includes several security patches from upstream package sources. + +Full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.3.3">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/39">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.3.4-and-2.3.5-released.md b/posts/Alpine-2.3.4-and-2.3.5-released.md new file mode 100644 index 0000000..c362791 --- /dev/null +++ b/posts/Alpine-2.3.4-and-2.3.5-released.md @@ -0,0 +1,19 @@ +--- +title: 'Alpine 2.3.4 and 2.3.5 released' +date: 2012-01-26 +--- + +# Alpine 2.3.4 and 2.3.5 released +The Alpine Linux project is pleased to announce immediate availability of version 2.3.4 and 2.3.5 of its Alpine Linux operating system. + +Some of the higlights in the 2.3.4 bugfix release are: +<ul> +<li>Fix broken /etc/apk/repositories when booting from USB</li> +<li>Fix broken tinydns on x86_64</li> +</ul> + +This release also includes several security patches from upstream package sources. + +Full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.3.4">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/40">bug tracker</a>. + +The only thing updated for 2.3.5 release was the 3.0.17 kernels. diff --git a/posts/Alpine-2.3.6-released.md b/posts/Alpine-2.3.6-released.md new file mode 100644 index 0000000..fabe3ac --- /dev/null +++ b/posts/Alpine-2.3.6-released.md @@ -0,0 +1,12 @@ +--- +title: 'Alpine 2.3.6 released' +date: 2012-02-03 +--- + +# Alpine 2.3.6 released +The Alpine Linux project is pleased to announce immediate availability of 2.3.6 of its Alpine Linux operating system. + +This is a bugfix release only and contains various critical security updates including a kernel upgrade to 3.0.18. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.3.6">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/42">bug tracker</a>. + diff --git a/posts/Alpine-2.4.0-released.md b/posts/Alpine-2.4.0-released.md new file mode 100644 index 0000000..7cf44ba --- /dev/null +++ b/posts/Alpine-2.4.0-released.md @@ -0,0 +1,20 @@ +--- +title: 'Alpine 2.4.0 released' +date: 2012-05-03 +--- + +# Alpine 2.4.0 released +The Alpine Linux project is pleased to announce immediate availablity of +version 2.4 of its Alpine Linux operating system. + +This release introduces some new features: + +<ul> +<li>A new kernel based on Linux 3.3.</li> + +<li>Improved support for configuring vlans, bonding and bridges.</li> + +<li>Preliminary support for "provides" in apk-tools</li> + +<li>New experimental ISO image for Xen dom0: alpine-xen.</li> +</ul>
\ No newline at end of file diff --git a/posts/Alpine-2.4.1-released.md b/posts/Alpine-2.4.1-released.md new file mode 100644 index 0000000..1afb6c2 --- /dev/null +++ b/posts/Alpine-2.4.1-released.md @@ -0,0 +1,13 @@ +--- +title: 'Alpine 2.4.1 released' +date: 2012-05-07 +--- + +# Alpine 2.4.1 released +The Alpine Linux project is pleased to announce immediate availablity of +version 2.4.1 of its Alpine Linux operating system. + +This is a bugfix release. In addition to a few security fixes it includes an updated linux firmware that solves issues with network drivers for various HP servers. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.1">git log</a> +and <a href="http://bugs.alpinelinux.org/versions/show/44">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.10-released.md b/posts/Alpine-2.4.10-released.md new file mode 100644 index 0000000..cb607c5 --- /dev/null +++ b/posts/Alpine-2.4.10-released.md @@ -0,0 +1,44 @@ +--- +title: 'Alpine 2.4.10 released' +date: 2013-03-01 +--- + +# Alpine 2.4.10 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.10 of its Alpine Linux operating system. + +This is a bugfix release which contains kernels based on linux 3.4.34. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.10">git log</a> and <a href="http://bugs.alpinelinux.org/versions/60">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Natanael Copa (22): + main/pam-pgsql: backport + main/openssl: fix regression + main/openssl: upgrade to 1.0.1e + main/pidgin: security upgrade to 2.10.7 (CVE-2013-0271,CVE-2013-0272,CVE- +2013-0273,CVE-2013-0274) + main/linux-grsec: net: fix infinite loop in __skb_recv_datagram() + main/dahdi-linux-grsec: rebuild against kernel 3.4.29-r2 + main/open-vm-tools-grsec: rebuild against kernel 3.4.29-r2 + main/xtables-addons-grsec: rebuild against kernel 3.4.29-r2 + main/linux-grsec: upgrade to 3.4.33 + main/dahdi-linux-grsec: rebuild against kernel 3.4.33-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.4.33-r0 + main/xtables-addons-grsec: rebuild against kernel 3.4.33-r0 + main/linux-grsec: actually update the kernel + main/linux-grsec: upgrade to 3.4.34 + main/dahdi-linux-grsec: rebuild against kernel 3.4.34-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.4.34-r0 + main/xtables-addons-grsec: rebuild against kernel 3.4.34-r0 + main/linux-vserver: upgrade to 3.4.34 + main/dahdi-linux-vserver: rebuild against kernel 3.4.34-r0 + main/open-vm-tools-vserver: rebuild against kernel 3.4.34-r0 + main/alpine-conf: fix setup-interfaces vlan-raw-device + ==== release 2.4.10 ==== + +Ted Trask (1): + main/acf-kamailio: upgrade to 0.4.5 +</pre> + diff --git a/posts/Alpine-2.4.11-released.md b/posts/Alpine-2.4.11-released.md new file mode 100644 index 0000000..414ab37 --- /dev/null +++ b/posts/Alpine-2.4.11-released.md @@ -0,0 +1,88 @@ +--- +title: 'Alpine 2.4.11 released' +date: 2013-05-21 +--- + +# Alpine 2.4.11 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.11 of its Alpine Linux operating system. + +This is a security bugfix release which contains kernels based on linux 3.4.46. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.11">git log</a> and <a href="http://bugs.alpinelinux.org/versions/61">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Leonardo Arena (4): + security fix (CVE-2012-6075). Fixes #1633 + security upgrade to 3.0.21 (CVE-2013-2503). Fixes #1647 + main/gnutls: security upgrade to 3.0.29 (CVE-2013-1619). Fixes #1655 + main/libxml2: fix (CVE-2013-0338) + +Natanael Copa (61): + main/linux-grsec: upgrade to 3.4.35 kernel + main/dahdi-linux-grsec: rebuild against kernel 3.4.35-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.4.35-r0 + main/xtables-addons-grsec: rebuild against kernel 3.4.35-r0 + main/mysql: security upgrade to 5.5.30 (CVE-2012-5611) + main/perl: security upgrade to 5.14.3 (CVE-2012-5195) + main/wireshark: security upgrade to 1.6.14 (CVE-2013-2478,CVE-2013-2480,CVE-2013-2481,CVE-2013-2483,CVE-2013-2484,CVE-2013-2488) + main/squid: security upgrade to 3.2.9 (CVE-2013-1839) + main/sudo: security upgrade to 1.8.6_p7 (CVE-2013-1775) + main/postgresql: security upgrade to 9.1.8 (CVE-2013-0255) + main/sircbot: upgrade to 0.3 + main/libssh: security upgrade to 0.5.4 (CVE-2013-0176) + main/postgresql: security upgrade to 9.1.9 (CVE-2013-1899,CVE-2013-1900,CVE-2013-1901) + main/libxslt: security upgrade to 1.1.28 (CVE-2012-6139) + main/bind: security upgrade to 9.9.2_p2 (CVE-2013-2266) + main/php: security upgrade to 5.3.23 (CVE-2013-1635,CVE-2013-1643) + main/dhcp: security upgrade to 4.2.5_p1 (CVE-2013-2266) + main/apache2: security upgrade to 2.2.24 (CVE-2012-3499,CVE-2012-4558) + main/nrpe: security upgrade to 2.14 (CVE-2013-1362) + main/samba: security upgrade to 3.6.13 (CVE-2013-0213,CVE-2013-0214) + main/ruby-activerecord: security upgrade to 2.3.17 (CVE-2013-0276) + main/nagios: security fix (CVE-2012-6096) + main/freetype: security upgrade to 2.4.11 (CVE-2012-5668,CVE-2012-5669) + main/smokeping: security upgrade to 2.6.9 (CVE-2012-0790) + main/smokeping: yet another XSS fix + main/ruby-rails: security upgrade to 2.3.18 (CVE-2013-1855,CVE-2013-1857) + main/ruby-activerecord: security upgrade to 2.3.18 (CVE-2013-1854) + main/automake: security upgrade to 1.11.6 (CVE-2012-3386) + main/curl: security fix (CVE-2013-1944) + main/poppler: security fix (CVE-2013-1788,CVE-2013-1790) + main/libarchive: security fix (CVE-2013-0211) + main/tinc: security upgrade to 1.0.21 (CVE-2013-1428) + main/xorg-server: security fix (CVE-2013-1940) + main/roundcubemail: security upgrade to 0.7.4 + main/clamav: don't ship and package with old database + main/clamav: security upgrade to 0.97.8 (fixes #1769) + main/openjdk: security upgrade to icedtea 1.11.11 + main/subversion: upgrade to 1.7.7 (cherry picked from commit 24794fd52d46a1d56ae3d95d324bd5570a5eaa85) + main/subversion: security upgrade to 1.7.9 (CVE-2013-1845,CVE-2013-1846,CVE-2013-1847,CVE-2013-1849) + main/linux-grsec: security upgrade to 3.4.45 + main/dahdi-linux-grsec: rebuild against kernel 3.4.45-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.4.45-r0 + main/xtables-addons-grsec: rebuild against kernel 3.4.45-r0 + main/linux-vserver: security upgrade to 3.4.45 (CVE-2013-2094) + main/dahdi-linux-vserver: rebuild against kernel 3.4.45-r0 + main/open-vm-tools-vserver: rebuild against kernel 3.4.45-r0 + main/openvpn: security fix (CVE-2013-2061) + main/mesa: security upgrade to 8.0.5 (CVE-2012-5129) + main/mysql: security upgrade to 5.5.31 (CVE-2013-1502...) + main/openswan: remove execute permisions from /etc/ipsec.conf (cherry picked from commit fee7a639655080bccd7eb7e990e24a790919bd3c) + main/openswan: securiy fix remote buffer overflow in atodn() (CVE-2013-2053) + main/xen: security fix (CVE-2013-2072) + main/linux-grsec: upgrade to 3.4.46 + main/dahdi-linux-grsec: rebuild against kernel 3.4.46-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.4.46-r0 + main/xtables-addons-grsec: rebuild against kernel 3.4.46-r0 + main/linux-vserver: upgrade to 3.4.46 + main/dahdi-linux-vserver: rebuild against kernel 3.4.46-r0 + main/open-vm-tools-vserver: rebuild against kernel 3.4.46-r0 + main/util-linux: security fix (CVE-2013-0157) + ==== release 2.4.11 ==== + +Ted Trask (1): + main/acf-weblog: upgrade to 0.6.4 +</pre> + diff --git a/posts/Alpine-2.4.2-released.md b/posts/Alpine-2.4.2-released.md new file mode 100644 index 0000000..6fbec6e --- /dev/null +++ b/posts/Alpine-2.4.2-released.md @@ -0,0 +1,19 @@ +--- +title: 'Alpine 2.4.2 released' +date: 2012-05-18 +--- + +# Alpine 2.4.2 released +The Alpine Linux project is pleased to announce immediate availablity of +version 2.4.2 of its Alpine Linux operating system. + +This is a bugfix release. Some of the news are: +<ul> +<li>Kernels upgraded to 3.3.6</li> +<li>Fix for live USB upgrades (<a href="http://bugs.alpinelinux.org/issues/1171">#1171</a>)</li> +<li>Fix for installing packages via ACF (<a href="http://bugs.alpinelinux.org/issues/1131">#1131</a>)</li> +<li>Fix for ifup/ifdown to support metric keyword (<a href=""></a>)</li> +<li>OpenSSL security fix (<a href="http://bugs.alpinelinux.org/issues/1151">CVE-2012-2333</a>)</li> +</ul> +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.2">git log</a> +and <a href="http://bugs.alpinelinux.org/versions/show/46">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.3-released.md b/posts/Alpine-2.4.3-released.md new file mode 100644 index 0000000..a1de3a0 --- /dev/null +++ b/posts/Alpine-2.4.3-released.md @@ -0,0 +1,16 @@ +--- +title: 'Alpine 2.4.3 released' +date: 2012-05-30 +--- + +# Alpine 2.4.3 released +The Alpine Linux project is pleased to announce immediate availablity of +version 2.4.3 of its Alpine Linux operating system. + +This is a bugfix release. Some of the news are: +<ul> +<li>Kernels upgraded to 3.3.7</li> +<li>Fix issue in 2.4.2 that pulled in packageses from edge. This fixes nfsd segfaulting and dahdi kernel modules not loading.</li> +</ul> +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.3">git log</a> +and <a href="http://bugs.alpinelinux.org/versions/show/47">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.4-released.md b/posts/Alpine-2.4.4-released.md new file mode 100644 index 0000000..9802191 --- /dev/null +++ b/posts/Alpine-2.4.4-released.md @@ -0,0 +1,19 @@ +--- +title: 'Alpine 2.4.4 released' +date: 2012-07-03 +--- + +# Alpine 2.4.4 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.4 of its Alpine Linux operating system. + +In addition to various security fixes, the following issues were addressed: +<ul> +<li>Kernels upgraded to 3.3.8</li> +<li>Fixed 3rd party kernel modules (dahdli-linux, xtables addons etc).</li> +<li>Xen LiveCD now uses setup-alpine instead of shipping an apkovl</li> +<li>Various Xen related fixes for setup-alpine</li> +<li>Fixed shorewall-shell to not mess with the default gateway on restart/stop</li> +</ul> +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.4">git log</a> +and <a href="http://bugs.alpinelinux.org/versions/show/48">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.5-released.md b/posts/Alpine-2.4.5-released.md new file mode 100644 index 0000000..d792726 --- /dev/null +++ b/posts/Alpine-2.4.5-released.md @@ -0,0 +1,18 @@ +--- +title: 'Alpine 2.4.5 released' +date: 2012-07-17 +--- + +# Alpine 2.4.5 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.5 of its Alpine Linux operating system. + +This is a bugfix release. + +<ul> +<li>Fixes MSS clamping in kernel for proper path MTU discovery.</li> +<li>Fixes creating apkovl archives with large number of files. (issue <a href="http://bugs.alpinelinux.org/issues/1240">1240</a>)</li> +<li>Fixes include empty dirs in apkovl archives. (issue <a href="http://bugs.alpinelinux.org/issues/1241">1241</a>)</li> +</ul> + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.5">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/49">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.6-released.md b/posts/Alpine-2.4.6-released.md new file mode 100644 index 0000000..c1be0e0 --- /dev/null +++ b/posts/Alpine-2.4.6-released.md @@ -0,0 +1,12 @@ +--- +title: 'Alpine 2.4.6 released' +date: 2012-10-16 +--- + +# Alpine 2.4.6 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.6 of its Alpine Linux operating system. + +This is a bugfix release which contains kernels based on linux 3.4.13. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.6">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/50">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.7-released.md b/posts/Alpine-2.4.7-released.md new file mode 100644 index 0000000..b9c778b --- /dev/null +++ b/posts/Alpine-2.4.7-released.md @@ -0,0 +1,12 @@ +--- +title: 'Alpine 2.4.7 released' +date: 2012-12-21 +--- + +# Alpine 2.4.7 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.7 of its Alpine Linux operating system. + +This is a bugfix release which contains kernels based on linux 3.4.24. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.7">git log</a> and <a href="http://bugs.alpinelinux.org/versions/51">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.4.9-released.md b/posts/Alpine-2.4.9-released.md new file mode 100644 index 0000000..f12ffc2 --- /dev/null +++ b/posts/Alpine-2.4.9-released.md @@ -0,0 +1,12 @@ +--- +title: 'Alpine 2.4.9 released' +date: 2013-02-07 +--- + +# Alpine 2.4.9 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.4.9 of its Alpine Linux operating system. + +This is a bugfix release which contains kernels based on linux 3.4.29. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.4.9">git log</a> and <a href="http://bugs.alpinelinux.org/versions/58">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.5.0-released.md b/posts/Alpine-2.5.0-released.md new file mode 100644 index 0000000..25b54a9 --- /dev/null +++ b/posts/Alpine-2.5.0-released.md @@ -0,0 +1,27 @@ +--- +title: 'Alpine 2.5.0 released' +date: 2012-11-07 +--- + +# Alpine 2.5.0 released +We are pleased to announce Alpine Linux v2.5! + +Since v2.4, among the various bugfixes, several packages have been upgraded: + +- Kernel upgraded to 3.6.6 with grsecurity patch +- Asterisk v.11.0.1 +- Xen 4.2 Dom0 Support +- Freeswitch 1.2.0 +- PostgreSQL 9.2.1 +- Ruby 1.9.3 +- Libvirt 1.0 + +Some of the updated pacakges available from http repositories are: +- Xorg 1.13 +- Mesa 9 + +...and much more. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.5.0">git log</a> and <a href="http://bugs.alpinelinux.org/versions/show/45">bug tracker</a>. + +Update (11/11/2012): Release notes for acf-core 0.15 are available from <a href="http://wiki.alpinelinux.org/wiki/Acf-core-0.15_Release_Notes">the Alpine Linux wiki</a> and are applicable mainly for Alpine Configuration Framework (ACF) developers.
\ No newline at end of file diff --git a/posts/Alpine-2.5.1-released.md b/posts/Alpine-2.5.1-released.md new file mode 100644 index 0000000..3c92e38 --- /dev/null +++ b/posts/Alpine-2.5.1-released.md @@ -0,0 +1,12 @@ +--- +title: 'Alpine 2.5.1 released' +date: 2012-12-28 +--- + +# Alpine 2.5.1 released +The Alpine Linux project is pleased to announce the immediate availablity of +version 2.5.1of its Alpine Linux operating system. + +This is a bugfix release which contains kernels based on linux 3.6.13 + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.5.1">git log</a> and <a href="http://bugs.alpinelinux.org/versions/54">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.5.2-released.md b/posts/Alpine-2.5.2-released.md new file mode 100644 index 0000000..f961c78 --- /dev/null +++ b/posts/Alpine-2.5.2-released.md @@ -0,0 +1,11 @@ +--- +title: 'Alpine 2.5.2 released' +date: 2013-01-21 +--- + +# Alpine 2.5.2 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.5.2 of its Alpine Linux operating system. + +This is a bugfix release which contains various security fixes, fixes for the r8169 NIC driver and fixes for squid. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.5.2">git log</a> and <a href="http://bugs.alpinelinux.org/versions/56">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.5.3-released.md b/posts/Alpine-2.5.3-released.md new file mode 100644 index 0000000..1c4871f --- /dev/null +++ b/posts/Alpine-2.5.3-released.md @@ -0,0 +1,15 @@ +--- +title: 'Alpine 2.5.3 released' +date: 2013-02-08 +--- + +# Alpine 2.5.3 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.5.3 of its Alpine Linux operating system. +Some of the higlights: +<ul> +<li>Various security fixes, including openssl-1.0.1d with regression fix.</li> +<li>Stable kernel fixes all up to 3.4.29 kernel was ported to our 3.6 kernel.</li> +<li>Fixes ipsec-tools (racoon) regression.</li> +</ul> + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.5.3">git log</a> and <a href="http://bugs.alpinelinux.org/versions/57">bug tracker</a>.
\ No newline at end of file diff --git a/posts/Alpine-2.5.4-released.md b/posts/Alpine-2.5.4-released.md new file mode 100644 index 0000000..cfea091 --- /dev/null +++ b/posts/Alpine-2.5.4-released.md @@ -0,0 +1,59 @@ +--- +title: 'Alpine 2.5.4 released' +date: 2013-03-01 +--- + +# Alpine 2.5.4 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.5.4 of its Alpine Linux operating system. + +This is a kernel security bugfix release that brings in all stable kernel fixes up to 3.4.34 in to our 3.6 kernel. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.5.4">git log</a> and <a href="http://bugs.alpinelinux.org/versions/59">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartomiej Piotrowski (1): + main/varnish: upgrade to 3.0.3 (cherry picked from commit 9ebf4c59cc8e931bbb13b2504d96c648f95c703f) + +Jeff Bilyk (2): + testing/apache-mod-auth-radius: new aport + main/apache-mod-auth-radius: moved from testing + +Leonardo Arena (4): + main/perl-config-inifiles: backported from edge + main/snmptt: fix dependecies. Add init script (cherry picked from commit 5bb40e41350ef7bb5522ab6a71e5c9fcf8b406d8) + main/zabbix: upgrade to 2.0.5 (cherry picked from commit 5c6146440c6134de92e82962018bb384687c24b0) + main/snmptt: add logrotate support. Create user (cherry picked from commit 4dc7a9fe46de3a6345035ea8239007bea91f423e) + +Natanael Copa (27): + main/ngircd: allow usernames with chars: +-@._ + main/openssl: upgrade to 1.0.1e + main/pidgin: security upgrade to 2.10.7 (CVE-2013-0271,CVE-2013-0272,CVE-2013-0273,CVE-2013-0274) + main/postfixadmin: upgrade to 2.3.6 + main/postfix: upgrade to 2.9.6 + main/linux-grsec: fix sock_diag out of bounds and CVE-2013-0290 + main/dahdi-linux-grsec: rebuild against kernel 3.6.11-r13 + main/open-vm-tools-grsec: rebuild against kernel 3.6.11-r13 + main/xtables-addons-grsec: rebuild against kernel 3.6.11-r13 + main/spl-grsec: rebuild against kernel 3.6.11-r13 + main/virtualbox-additions-grsec: rebuild against kernel 3.6.11-r13 + main/wanpipe-grsec: rebuild against kernel 3.6.11-r13 + main/zfs-grsec: rebuild against kernel 3.6.11-r13 + main/alpine-conf: fix setup-interfaces vlan-raw-device + main/linux-grsec: port stable fixes up to 3.4.34 (cherry picked from commit b9cbd017e432ec37dc412188593393a3edc8032c) + main/dahdi-linux-grsec: rebuild against kernel 3.6.11-r14 + main/open-vm-tools-grsec: rebuild against kernel 3.6.11-r14 + main/xtables-addons-grsec: rebuild against kernel 3.6.11-r14 + main/spl-grsec: rebuild against kernel 3.6.11-r14 + main/virtualbox-additions-grsec: rebuild against kernel 3.6.11-r14 + main/wanpipe-grsec: rebuild against kernel 3.6.11-r14 + main/zfs-grsec: rebuild against kernel 3.6.11-r14 + main/linux-vserver: remove unused patch (cherry picked from commit f8d601173f767d7e2edef21d85d9ff20ea49e7ab) + main/linux-vserver: upgrade to 3.6.11-al4 patch + main/dahdi-linux-vserver: rebuild against kernel 3.6.11-r3 + main/open-vm-tools-vserver: rebuild against kernel 3.6.11-r3 + ==== release 2.5.4 ==== + +Timo Teräs (1): + main/squid: upgrade to 3.2.7 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.0-released.md b/posts/Alpine-2.6.0-released.md new file mode 100644 index 0000000..9023802 --- /dev/null +++ b/posts/Alpine-2.6.0-released.md @@ -0,0 +1,30 @@ +--- +title: 'Alpine 2.6.0 released' +date: 2013-05-17 +--- + +# Alpine 2.6.0 released +We are pleased to announce Alpine Linux v2.6! + +Since v2.6, among the various bugfixes, several packages have been upgraded: + +- Kernel upgraded to 3.9.2 with grsecurity patch +- ruby 2.0 +- php 5.4 +- kamailio-4.0 +- qemu-1.4 +- squid-3.3 + +Other things that might be worth noting: +- LXC support +- Support for NFS with Kerberos +- The initramfs script has initial support for PXE +- vserver kernel got reverted to the 3.4.y LTS and slimmed down config. +- quagga got multipath support + +...and much more. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.0">git log</a> and <a href="http://bugs.alpinelinux.org/versions/52">bug tracker</a>. + +Known issues: +- dmvpn does not work (issue <a href="http://bugs.alpinelinux.org/issues/1782">#1782</a>) diff --git a/posts/Alpine-2.6.1-released.md b/posts/Alpine-2.6.1-released.md new file mode 100644 index 0000000..e039cf3 --- /dev/null +++ b/posts/Alpine-2.6.1-released.md @@ -0,0 +1,109 @@ +--- +title: 'Alpine 2.6.1 released' +date: 2013-06-04 +--- + +# Alpine 2.6.1 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.6.1 of its Alpine Linux operating system. + +This is a bugfix release. Some of the highlights are: +- DMVPN works again (issue <a href="http://bugs.alpinelinux.org/issues/1782">#1782</a>) +- default kernel based on 3.9.4 +- vserver kernel based on 3.4.47 +- xen 4.2.2 + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.1">git log</a> and <a href="http://bugs.alpinelinux.org/versions/64">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartłomiej Piotrowski (3): + main/samba: upgrade to 3.6.15 + main/python: upgrade to 2.7.5 + main/gmp5: upgrade to 5.1.2 + +Kaarle Ritvanen (1): + main/apk-tools: strip static binary before signing (cherry picked from commit f991d7fbc3150e92c9528c5b0dc8e69e9d809671) + +Leonardo Arena (2): + main/roundcubemail: upgrade to 0.9.1 + main/open-iscsi: don't report error when no targets are configured. Fixes #1526 + +Natanael Copa (59): + main/xen: security fix (CVE-2013-2072) + main/php: link gd extension to libiconv + main/llvm: fix linking on x86_64 + main/wireshark: security upgrade to 1.8.7 (CVE-2013-3555,CVE-2013-3556,CVE-2013-3557,CVE-2013-3558,CVE-2013-3559,CVE-2013-3560,CVE-2013-3561,CVE-2013-3562) + main/krb5: security fix (CVE-2002-2443) + main/libxcb: security fix (CVE-2013-2064) + main/libx11: security fix (CVE-2013-1981,CVE-2013-1997,CVE-2013-2004) + main/libxfixes: fix for CVE-2013-1983 + main/libxrender: fix CVE-2013-1987 + main/libxcursor: fix CVE-2013-2003 + main/util-macros: upgrade to 1.17 (cherry picked from commit c3c243cd3795568ab5dd6fb7648f225ef2dbf593) + main/libxext: fix CVE-2013-1982 + main/libxi: fix CVE-2013-1984,CVE-2013-1995,CVE-2013-1998 + main/libxinerama: fix CVE-2013-1985 + main/libxp: fix CVE-2013-2062 + main/libxp: build fix for 64bit (cherry picked from commit 062d5f16167921bd66297d12b2cd85d79fb0943e) + main/libxrandr: fix CVE-2013-1986 + main/libxres: fix CVE-2013-1988 + main/libxv: fix CVE-2013-1989,CVE-2013-2066 + main/libxvmc: fix CVE-2013-1990,CVE-2013-1999 + main/libxxf86vm: fix CVE-2013-2001 + main/libxxf86dga: fix CVE-2013-1991,CVE-2013-2000 + main/libxt: fix CVE-2013-2002,CVE-2013-2005 + main/libxtst: fix CVE-2013-2063 + main/socat: security upgrade to 1.7.2.2 (CVE-2013-3571) + main/cgit: security upgrade to 0.9.2 (CVE-2013-2117) + main/xf86-video-openchrome: security upgrade to 0.3.3 (CVE-2013-1994) + main/abuild: upgrade to 2.14.3 (cherry picked from commit 453635e2122d4c367db3da152a6a752a496fb3f6) + main/freeswitch: set stacksize to 240 + main/libtirpc: fix CVE-2013-1950 + main/linux-grsec: upgprade to 3.9.3 and update flush arp cache patch + main/linux-grsec: fix gre+xfrm+gso crashes + main/linux-grsec: fix for fragmentation issue on tunnel devices + main/linux-grsec: upgrade to 3.9.4 and use reworked arp and frag patches + main/linux-grsec: upgrade to grsecurity-2.9.1-3.9.4-201306011536 + main/crystalhd-git-grsec: rebuild against kernel 3.9.4-r1 + main/dahdi-linux-grsec: rebuild against kernel 3.9.4-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.9.4-r1 + main/xtables-addons-grsec: rebuild against kernel 3.9.4-r1 + testing/ipt-netflow-grsec: rebuild against kernel 3.9.4-r1 + testing/spl-grsec: rebuild against kernel 3.9.4-r1 + testing/virtualbox-additions-grsec: rebuild against kernel 3.9.4-r1 + testing/wanpipe-grsec: rebuild against kernel 3.9.4-r1 + testing/zfs-grsec: rebuild against kernel 3.9.4-r1 + main/znc: fix NULL pointer dereference in webadmin (CVE-2013-2130) + main/apk-tools: sign the apk.static + main/qemu: security upgrade to 1.4.2 (CVE-2013-2007) + main/xen: security fixes (CVE-2013-2076,CVE-2013-2077,CVE-2013-2078) + main/python: fix ctypes.util.find_library() and set CFLAGS + testing/qpdf: upgrade to 4.1.0 (cherry picked from commit 853db1733745e1ca8f15740ac577f8d7fbb1af0a) + main/qpdf: we need perl for fix-qpdf (cherry picked from commit 4bf37051cd16b058abbf468276fa9dcc352b5a4c) + main/qpdf: moved from testing + testing/cups-filters: upgrade to 1.0.34 (cherry picked from commit ad2d0bcdbeda6e0ab7ea8d9218c18a946fa1ef97) + main/cups-filters: textonly is a bash script so depend on bash (cherry picked from commit 94a0e96e265e87612cab007914c7ea3887525965) + main/cups-filters: moved from testing + main/cups: banners and testprint is shipped with cups-filters + main/apk-tools: upgrade to 2.3.5 + main/linux-vserver: upgrade to 3.4.47 + ==== release 2.6.1 ==== + +Ted Trask (3): + main/acf-lib: upgrade to 0.5.1 (cherry picked from commit 9724265d718fc111c813fe10d2b0700a88438c4c) + main/acf-freeswitch-vmail: upgrade to 0.2.1 + main/acf-weblog: upgrade to 0.8.3 + +Timo Teräs (1): + main/asterisk: upgrade to 11.4.0 + +William Pitcock (8): + main/libc0.9.32: avoid libgcc unwind functions in nptl + main/xen: upgrade to 4.2.2 (cherry picked from commit f43d4be65d60aff92ecb0352209c4037ccc38d33) + main/xen: remove obsolete XSA patches. (cherry picked from commit d3978bf9dc42f00c8d05d8eac255f93ef154b503) + main/xen: unset LANG/LC_ALL (cherry picked from commit 5b97248f06efe1114dc3545585b3b92eb1cf4490) + main/xen: fix pod2man choking (cherry picked from commit c664d6766c3aef2a323bf49feb1bb2f542f60800) + main/xen: fix more pod2man breakage (cherry picked from commit 36bfee190e2e5cafe5bf04546f291831d72073a7) + main/xen: more pod2man fixes (cherry picked from commit 6e8d8f7559a5bcde7f49af5c9944fa642ad77fa2) + main/xen: rebase pod2man patch properly (cherry picked from commit 6267268090d5c23664a5b13dfe02eb3594d5e5db) +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.2-released.md b/posts/Alpine-2.6.2-released.md new file mode 100644 index 0000000..50c3630 --- /dev/null +++ b/posts/Alpine-2.6.2-released.md @@ -0,0 +1,74 @@ +--- +title: 'Alpine 2.6.2 released' +date: 2013-07-02 +--- + +# Alpine 2.6.2 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.6.1 of its Alpine Linux operating system. + +This is a bugfix release that fixes various securiy issues in kernel and Xen. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.2">git log</a> and <a href="http://bugs.alpinelinux.org/versions/66">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartłomiej Piotrowski (1): + main/phpmyadmin: upgrade to 4.0.3 + +Carlo Landmeter (1): + main/vte: allow alt combination in termimal + +Leonardo Arena (2): + main/owncloud: upgrade to 5.0.7 + main/roundcubemail: upgrade to 0.9.2 + +Natanael Copa (35): + main/bind: security upgrade to 9.9.3_p1 (CVE-2013-3919) + main/php: upgrade to 5.4.16 + main/linux-grsec: upgrade to 3.9.5 (cherry picked from commit 26c4e189e825d62d0249fb5f499bcb545d40e1ab) + main/linux-grsec: upgrade to grsecurity-2.9.1-3.9.5-201306111850 (cherry picked from commit 08e5c47fa30c60652b2a3c71 + main/linux-grsec: upgrade to 3.9.6 and fix CVE-2013-2851 + main/crystalhd-git-grsec: rebuild against kernel 3.9.6-r0 + main/dahdi-linux-grsec: rebuild against kernel 3.9.6-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.9.6-r0 + main/xtables-addons-grsec: rebuild against kernel 3.9.6-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.9.6-r0 + testing/spl-grsec: rebuild against kernel 3.9.6-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.9.6-r0 + testing/wanpipe-grsec: rebuild against kernel 3.9.6-r0 + testing/zfs-grsec: rebuild against kernel 3.9.6-r0 + main/apache2: fix deps for apache2-ldap + main/haproxy: security upgrade to 1.4.24 (CVE-2013-2175) + main/acf-provisioning: fix checksum + main/tmux: add ncurses-terminfo as a dependency + main/xen: security fix (CVE-2013-2194,CVE-2013-2195,CVE-2013-2196) + main/xen: fix xsa57 (CVE-2013-2211) + testing/py-simplejson: claim maintainership (cherry picked from commit a748a630913adef55a37beb61a913a956e7c5801) + main/py-simplejson: moved from testing (cherry picked from commit d86463d08937def2ecc240b90648e018701ddcdb) + main/atheme-iris: moved from testing (cherry picked from commit e7604ea2ccc65d83e89be57314112c2c4662d9bd) + main/xen: fix xsa45 and xsa58 (CVE-2013-1918,CVE-2013-1432) + main/openldap: create pid dir before checking config + main/linux-vserver: upgrade to 3.4.51 + main/linux-grsec: upgrade to 3.9.7 (cherry picked from commit 3574145af419d12d7c72d8f699fdefbe2c956ad7) + main/linux-grsec: upgrade to 3.9.8 kernel (cherry picked from commit 880edc4d94f2c63f6f002a6392bf7a2b7316eca2) + main/linux-grsec: upgrade to grsecurity-2.9.1-3.9.8-201306302052 (cherry picked from commit 99142aeaac41d3fa49f8af96 + crystalhd-git-grsec/crystalhd-git-grsec: rebuild against kernel 3.9.8-r1 + dahdi-linux-grsec/dahdi-linux-grsec: rebuild against kernel 3.9.8-r1 + open-vm-tools-grsec/open-vm-tools-grsec: rebuild against kernel 3.9.8-r1 + xtables-addons-grsec/xtables-addons-grsec: rebuild against kernel 3.9.8-r1 + main/haserl: upgrade to 0.9.30 + ==== release 2.6.2 ==== + +Ted Trask (3): + main/acf-provisioning: upgrade to 0.3.1 + main/acf-kamailio: upgrade to 0.6.3 + main/acf-provisioning: upgrade to 0.3.2 + +Timo Teräs (1): + main/openjdk6: fix ipv6 related startup crash + +prymeroot (3): + main/sudo: upgrade to 1.8.7 + main/fail2ban: upgrade to 0.8.10 + main/varnish: upgrade to 3.0.4 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.3-released.md b/posts/Alpine-2.6.3-released.md new file mode 100644 index 0000000..9c5e56d --- /dev/null +++ b/posts/Alpine-2.6.3-released.md @@ -0,0 +1,71 @@ +--- +title: 'Alpine 2.6.3 released' +date: 2013-08-07 +--- + +# Alpine 2.6.3 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.6.3 of its Alpine Linux operating system. + +This is a bugfix release that fixes various security issues. + +The kernel was upgraded to 3.10.5 since the 3.10.y is announced to be longterm. This means that you should test this release before upgrading your production systems. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.3">git log</a> and <a href="http://bugs.alpinelinux.org/versions/67">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartłomiej Piotrowski (2): + main/php: upgrade to 5.4.17 + main/phpmyadmin: upgrade to 4.0.4.1 + +Carlo Landmeter (2): + main/bacula: add lzo support + main/busybox-initscripts: add kvm to mdev.conf (cherry picked from commit 31a9c92f9374f56ef31d7875d47661f3ce502251) + +Leonardo Arena (1): + main/zabbix: upgrade to 2.0.7 + +Natanael Copa (42): + main/squid: upgrade to 3.3.5 + main/squid: upgrade to 3.3.6 + main/busybox: upgrade to 1.21.1 + main/ruby: upgrade to 2.0.0_p247 + main/xorg-server: upgrade to 1.14.2 + main/acf-core: create /etc/acf/skins directory + main/opennhrp: reset NAT after broken routing + main/acf-core: fix source url + main/spice: security upgrade to 0.12.4 (CVE-2013-4130) + main/linux-grsec: upgrade to 3.9.9 kernel (cherry picked from commit 53ab941d1b6bf6cfa5230338c818272e01fde51a) + main/linux-grsec: upgrade to 3.9.11 (cherry picked from commit 95f495fda4c834d82394d4db5c2425adcf684dd2) + main/linux-grsec: various security fixes (CVE-2013-4125, CVE-2013-4127) + crystalhd-git-grsec/crystalhd-git-grsec: rebuild against kernel 3.9.11-r1 + dahdi-linux-grsec/dahdi-linux-grsec: rebuild against kernel 3.9.11-r1 + open-vm-tools-grsec/open-vm-tools-grsec: rebuild against kernel 3.9.11-r1 + xtables-addons-grsec/xtables-addons-grsec: rebuild against kernel 3.9.11-r1 + main/bind: security upgrade to 9.9.3_p2 (CVE-2013-4854) + main/abuild: backport ldpath fix + main/wireshark: security upgrade to 1.8.9 (CVE-2013-4927,CVE-2013-4929,CVE-2013-4930,CVE-2013-4931,CVE-2013-4932,CVE-2013-4933,CVE-2013-4934,CVE-2013-4935) + main/phpmyadmin: security upgrade to 4.0.4.2 (CVE-2013-4995,CVE-2013-4996,CVE-2013-4997,CVE-2013-4998,CVE-2013-4999,CVE-2013-5000,CVE-2013-5001,CVE-2013-5002,CVE-2013-5003) + main/libgcrypt: security upgrade to 1.5.3 (CVE-2013-4242) + main/alpine-mirrors: add hs-esslingen.de and remove RELEASES.txt + main/apache2: upgrade to 2.4.6 (cherry picked from commit c10937c2643456f93e9cba291d6cf897f7c9015b) + main/apache2: create pid dir at startup. ignore missing conf.d/*.conf + main/quagga: upgrade to 0.99.22.3 + main/linux-grsec: merge in stable fixes from 3.10.4 and 3.4.55 + main/linux-grsec: upgrade to 3.10.4 (cherry picked from commit 46a1495797a89ae9d3f767848f334ae0b2c633ce) + main/linux-grsec: upgrade to 3.10.5 (cherry picked from commit 2f916b4a5031fccc91681f906ac28f8b7e12c639) + main/linux-grsec: fix regression in ip_gre (cherry picked from commit 21994d76b445fff32c844f1b904e3c5c1e3dd330) + main/open-vm-tools-grsec: build against 3.10.5-r1 kernel + main/dahdi-linux-grsec: upgrade to 2.7.0 and build for kernel 3.10.5-r1 + main/dahdi-linux: upgrade to 2.7.0 + main/crystalhd-git-grsec: rebuild against kernel 3.10.5-r1 + main/xtables-addons-grsec: upgrade to 2.3, build against kernel 3.10.5-r1 + main/xtables-addons: upgrade to 2.3 + main/linux-vserver: upgrade to 3.4.56 + main/busybox-initscripts: use pidfile + main/busybox-initscripts: fix module autoloading + main/mkinitfs: upgrade to 2.5.0 + main/tiff: sec fixes (CVE-2012-4447,CVE-2012-4564,CVE-2013-1960,CVE-2013-1961) + main/subversion: security upgrade to 1.7.11 (CVE-2013-4131) + ======== release 2.6.3 ======== +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.4-released.md b/posts/Alpine-2.6.4-released.md new file mode 100644 index 0000000..5dcfe06 --- /dev/null +++ b/posts/Alpine-2.6.4-released.md @@ -0,0 +1,49 @@ +--- +title: 'Alpine 2.6.4 released' +date: 2013-09-03 +--- + +# Alpine 2.6.4 released +The Alpine Linux project is pleased to announce the immediate availablity of version 2.6.4 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.10 kernel. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.4">git log</a> and <a href="http://bugs.alpinelinux.org/versions/68">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Kaarle Ritvanen (1): + main/awall: upgrade to 0.3.2 + +Leonardo Arena (3): + main/freeswitch: upgrade to 1.2.12 + main/roundcubemail: upgrade to 0.9.3 + main/zabbix: upgrade to 2.0.8 + +Natanael Copa (18): + main/php-memcache: backport + main/acf-*: update download url + main/bonding: set link status to down + main/lxc: backport alpine template from git + main/lxc: fix /dev/zero on container create + main/lcms: fix CVE-2013-4276 + main/lcms: acutally apply the patch in prev commit + main/cacti: security upgrade to 0.8.8b (CVE-2013-1434,CVE-2013-1435) + main/php: security upgrade to 5.4.19 (CVE-2013-4113,CVE-2013-4248) + main/cacti: update checksum + main/linux-vserver: upgrade to 3.4.60 + main/xen: create /var/run/xen + main/linux-grsec: upgrade to grsecurity-2.9.1-3.10.10-201309011630 + main/crystalhd-git-grsec: rebuild against kernel 3.10.10-r1 + main/dahdi-linux-grsec: rebuild against kernel 3.10.10-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.10.10-r1 + main/xtables-addons-grsec: rebuild against kernel 3.10.10-r1 + ======== release 2.6.4 ======== + +Ted Trask (1): + main/acf-provisioning: upgrade to 0.3.3 + +Timo Teräs (2): + main/asterisk: security upgrade to 11.5.1 + main/asterisk: remove incompatible packaging changes +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.5-released.md b/posts/Alpine-2.6.5-released.md new file mode 100644 index 0000000..237a0a3 --- /dev/null +++ b/posts/Alpine-2.6.5-released.md @@ -0,0 +1,102 @@ +--- +title: 'Alpine 2.6.5 released' +date: 2013-10-02 +--- + +# Alpine 2.6.5 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.6.5 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.13 kernel. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.5">git log</a> and <a href="http://bugs.alpinelinux.org/versions/69">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartłomiej Piotrowski (5): + main/phpmyadmin: upgrade to 4.0.6 + main/roundcubemail: upgrade to 0.9.4 + main/subversion: upgrade to 1.7.13 + main/mysql: upgrade to 5.5.34 + main/phpmyadmin: upgrade to 4.0.7 + +Carlo Landmeter (34): + main/ruby-redmine-actionmailer: new aport + main/ruby-redmine-actionpack: new aport + main/ruby-redmine-activemodel: new aport + main/ruby-redmine-activerecord: new aport + main/ruby-redmine-activesupport: new aport + main/ruby-redmine-jquery-rails: new aport + main/ruby-redmine-rails: new aport + main/ruby-redmine-railties: new aport + main/ruby-redmine-activeresource: new aport + main/ruby-redmine-rdoc: new aport + main/ruby-redmine-builder: new aport + main/ruby-redmine-activemodel: change dep to ruby-redmine-builder + main/ruby-redmine-sprockets: new aport + main/ruby-redmine-actionpack: change to ruby-redmine-sprockets + main/ruby-redmine-activerecord: change to ruby-redmine-tzinfo + main/ruby-redmine-actionpack: switch to ruby-redmine-builder + main/ruby-redmine-railties: switch to ruby-redmine-rdoc + main/ruby-redmine-arel: new aport + main/ruby-redmine-activerecord: change to ruby-redmine-arel + main/ruby-rmagick: rebuild against new imagemagick + main/redmine: upgrade to 2.3.2 + main/redmine: change to ruby-redmine-rdoc + main/ruby: spec location updated + main/ruby-redmine-tzinfo: new aport + main/ruby-redmine-rack: new aport + main/ruby-redmine-rack-cache: new aport + main/ruby-redmine-rack-openid: new aport + main/ruby-redmine-rack-ssl: new aport + main/ruby-redmine-rack-test: new aport + main/ruby-redmine-sprockets: switch to ruby-redmine-rack + main/ruby-redmine-actionpack: switch to ruby-redmine-rack ruby-redmine-rack-cache ruby-redmine-rack-test + main/ruby-redmine-railties: switch to ruby-redmine-rack-ssl + main/redmine: switch to ruby-redmine-rack ruby-redmine-rack-openid + main/ruby-redmine-unicorn: new aport + +Fabian Affolter (2): + main/ruby-mail: upgrade to 2.5.4 + main/ruby-i18n: upgrade to 0.6.5 + +Jeff Bilyk (1): + main/kamailio: package bump to 4.0.2 and add bakslash patch + +Kaarle Ritvanen (2): + main/awall: upgrade to 0.3.3 + main/awall: upgrade to 0.3.4 + +Natanael Copa (26): + main/kamailio: fix sca to not stop prematurely script execution under certain conditions + main/kamailio: upgrade to 4.0.3 + main/lua-curl: upgrade to 0.2.3 + main/postgresql: auto restore db by default + main/linux-grsec: upgrade to 3.10.11 + main/linux-grsec: upgrade to 3.10.12 + main/linux-grsec: upgrade to 3.10.13 + main/crystalhd-git-grsec: rebuild against kernel 3.10.13-r0 + main/dahdi-linux-grsec: rebuild against kernel 3.10.13-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.13-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.13-r0 + main/redmine: upgrade to 2.3.3 + main/linux-vserver: ugprade to 3.4.63 + main/apk-tools: upgrade to 2.4.0 + main/alpine-conf: fix running syslinux trigger from setup-disk + main/alpine-conf: bump pkgrel + main/linux-vserver: fix memory map on PIE executables + main/linux-grsec: fix memory map for PIE applications (when randmmap is disabled) + main/crystalhd-git-grsec: rebuild against kernel 3.10.13-r1 + main/dahdi-linux-grsec: rebuild against kernel 3.10.13-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.10.13-r1 + main/xtables-addons-grsec: rebuild against kernel 3.10.13-r1 + main/ca-certificates: upgrade to 20130610 + main/apk-tools: allow using cached packages with --no-network + main/ca-certificates: upgrade to 20130906 + ======== release 2.6.5 ======== + +Ted Trask (1): + main/acf-provisioning: upgrade to 0.3.4 + +Timo Teräs (1): + main/asterisk: cherry-pick fix for ASTERISK-21859 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.6.6-released.md b/posts/Alpine-2.6.6-released.md new file mode 100644 index 0000000..502c62d --- /dev/null +++ b/posts/Alpine-2.6.6-released.md @@ -0,0 +1,58 @@ +--- +title: 'Alpine 2.6.6 released' +date: 2013-10-24 +--- + +# Alpine 2.6.6 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.6.6 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.17 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.6.6">git log</a> and <a href="http://bugs.alpinelinux.org/versions/70">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Bartłomiej Piotrowski (5): + main/gnupg: upgrade to 2.0.22 + main/ffmpeg: upgrade to 1.2.4 + main/php: upgrade to 5.4.21 + main/roundcubemail: upgrade to 0.9.5 + main/nginx: upgrade to 1.4.3 + +Natanael Copa (27): + main/unbound: upgrade to 1.4.21 + main/unbound: migrate: skip .apk-new files + main/zeromq: upgrade to 3.2.4 + main/openssl: replace c_rehash perl script with shell script + main/pidgin: fix sasl underlinking in libirc and enable avahi + main/zabbix: security fix (CVE-2013-5743) + main/busybox-initscripts: httpd does not generate pid file + main/lua-json4: upgrade to 0.9.50 + main/openjdk6: use util-linux instead of util-linux-ng + main/kamailio: fix sca to not stop prematurely script execution under cert + main/openjdk6: temporary disable + main/openjdk6: enable again + main/linux-grsec: upgrade to 3.10.14 and fix pie patch + main/linux-grsec: upgrade to 3.10.15 and fix CVE-2013-4387 + main/linux-grsec: upgrade to 3.10.16 + main/linux-gsrec: upgrade to 3.10.17 + main/linux-grsec: fix x86_64 copy_user_generic + main/crystalhd-git-grsec: rebuild against kernel 3.10.17-r1 + main/dahdi-linux-grsec: rebuild against kernel 3.10.17-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.10.17-r1 + main/xtables-addons-grsec: rebuild against kernel 3.10.17-r1 + main/linux-vserver: upgrade to 3.4.66 + main/lxc: start service after networking and firewall + main/lxc: update download url + main/lxc: add various fixes for alpine template and improve init.d message + main/alpine-conf: setup-disk: add swap to fstab + ======== release 2.6.6 ======== + +Nathan Angelacos (1): + main/kamailio: upgrade to 4.0.4 + +Timo Teräs (3): + main/openssl: fix openssl tools default CApath + main/openjdk6: upgrade to icedtea 1.11.13 + main/asterisk: upgrade to 11.6.0 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.0-released.md b/posts/Alpine-2.7.0-released.md new file mode 100644 index 0000000..0610bca --- /dev/null +++ b/posts/Alpine-2.7.0-released.md @@ -0,0 +1,56 @@ +--- +title: 'Alpine 2.7.0 released' +date: 2013-11-08 +--- + +# Alpine 2.7.0 released +We are pleased to announce Alpine Linux 2.7.0, the first release in v2.7 stable series. + +Since v2.6, among the various bugfixes, several packages have been upgraded: +- kernel is based on 3.10.18 +- php 5.5.5 +- qemu 1.6.1 +- xen 4.3.1 +- postgresql 9.3.1 +- samba 4.1.0 +- nsd 4.0.0 +- asterisk-11.6.0 +- bluez 5.7 +- openssh 6.4p1 +- lua 5.2.2 + +Some of the desktop applications that got upgraded and are available for v2.7: +- abiword 3.0.0 +- firefox 25.0 +- gnumeric 1.12.8 +- evince 3.10 +- virt-manager 0.10.0 + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.0">git log</a> and <a href="http://bugs.alpinelinux.org/versions/63">bug tracker</a>. + +Commit statistics: +<pre> + 348 Bartłomiej Piotrowski + 2 Borys Zhukov + 125 Carlo Landmeter + 27 Dubiousjim + 586 Fabian Affolter + 84 Francesco Colista + 3 IT Offshore + 4 Jeff Bilyk + 7 Kaarle Ritvanen + 64 Leonardo Arena + 5 Leslie P. Polzer + 1 Marcin Mankiewicz + 2 Mika Havela + 1951 Natanael Copa + 3 Nathan Angelacos + 1 Pablo Castorino + 3 Paul Kilar + 4 Sam Dodrill + 58 Ted Trask + 319 Timo Teräs + 2 Vitaliy Tokarev + 54 William Pitcock + 24 prymeroot +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.1-released.md b/posts/Alpine-2.7.1-released.md new file mode 100644 index 0000000..848fdae --- /dev/null +++ b/posts/Alpine-2.7.1-released.md @@ -0,0 +1,63 @@ +--- +title: 'Alpine 2.7.1 released' +date: 2013-11-20 +--- + +# Alpine 2.7.1 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.1 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.19 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.1">git log</a> and <a href="http://bugs.alpinelinux.org/versions/73">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Leonardo Arena (2): + main/owncloud: upgrade to 5.0.13 + main/freeradius: upgrade to 2.2.2 + +Natanael Copa (28): + update release + main/xen: security fix for XSA-75 + main/linux-grsec: fix CVE-2013-4348 + main/linux-grsec: upgrade to 3.10.19 + main/dahdi-linux-grsec: fix zaphfc, upgrade to 2.7.0.1 and kernel 3.10.19-r0 + main/flashcache-grsec: rebuild against kernel 3.10.19-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.19-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.19-r0 + main/samba: security upgrade to 4.1.1 (CVE-2013-4475,CVE-2013-4476) + main/linux-vserver: upgrade to 3.10.19 and fix CVE-2013-4348 + main/tdb: tdb-libs replaces tdb + main/gnome-bluetooth: set replaces in -libs subpackage + main/lighttpd: various sec fixes (CVE-2013-4508,CVE-2013-4559,CVE-2013-4560) + main/claws-mail: rebuild against db-5.3.28 + main/cyrus-sasl: rebuild against db-5.3.28 + main/libetpan: rebuild against db-5.3.28 + main/perl-db_file: rebuild against db-5.3.28 + main/pidgin-sipe: rebuild against db-5.3.28 + main/postfix: rebuild against db-5.3.28 + main/serf: rebuild against db-5.3.28 + main/vim: fix install of vimdiff symlink + main/vim: remove unused patch + main/alpine-baselayout: create group shadow for read access to /etc/shadow + main/alpine-baselayout: fix permissions of /etc/shadow + main/mkinitfs: add missing dependency for cryptsetup + main/alpine-baselayout: hide error message for missing /etc/group + main/nginx: security upgrade to 1.4.4 (CVE-2013-4547) + ==== release 2.7.1 ==== + +Ted Trask (4): + main/acf-awall: upgrade to 0.3.1 + main/acf-kamailio: upgrade to 0.7.1 + main/acf-apk-tools: upgrade to 0.9.1 + main/acf-freeswitch-vmail: upgrade to 0.3.1 + +Timo Teräs (4): + main/varnish: add plugin to do maxmind geoip lookups + main/varnish: make maxminddb plugin always set X-GeoIP-* + main/libmaxminddb: new aport + main/varnish: fix maxminddb vcl sub + +William Pitcock (1): + main/perl-db: upgrade to 0.54 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.2-released.md b/posts/Alpine-2.7.2-released.md new file mode 100644 index 0000000..a262ca3 --- /dev/null +++ b/posts/Alpine-2.7.2-released.md @@ -0,0 +1,65 @@ +--- +title: 'Alpine 2.7.2 released' +date: 2013-12-10 +--- + +# Alpine 2.7.2 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.2 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.23 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.2">git log</a> and <a href="http://bugs.alpinelinux.org/versions/74">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Leonardo Arena (8): + main/freeradius: fix depends + main/owncloud: fix upgrade on postgres. Fixes #2436 + main/zabbix: upgrade to 2.0.9 + main/nss: security upgrade to 3.15.3 (CVE-2013-1741). Fixes #2402 + main/nspr: security upgrade to 4.10.2 (CVE-2013-5607) + main/perl-http-body: security fix CVE-2013-4407. Fixes #2460 + main/zabbix: security upgrade to 2.0.10 (CVE-2013-6824) + main/nsd: add group nsd + +Natanael Copa (29): + main/mosquitto: backport + main/openldap: upgrade to 2.4.38 + main/libjpeg-turbo: security fix (CVE-2013-6629,CVE-2013-6630) + main/py-django: security upgrade to 1.5.5 (CVE-2013-1443) + main/ctags: fix install location + main/mkinitfs: add missing libpthread dep for cryptsetup + main/memcached: security workaround for CVE-2011-4971 + main/ruby: security upgrade to 2.0.0_p353 (CVE-2013-4164) + main/polkit: security fix for CVE-2013-4288 + main/git: upgrade to 1.8.4.3 + main/git: set HOME for git daemon + main/git: default home dir is /var/git + main/mosquitto: upgrade to 1.2.3 + main/mqtt-exec: moved from testing + main/mqtt-exec: backport -v support + main/linux-grsec: upgrade to 3.10.23 + main/dahdi-linux-grsec: rebuild against kernel 3.10.23-r0 + main/flashcache-grsec: rebuild against kernel 3.10.23-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.23-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.23-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.23-r0 + testing/spl-grsec: rebuild against kernel 3.10.23-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.23-r0 + testing/zfs-grsec: rebuild against kernel 3.10.23-r0 + main/spice-gtk: security upgrade to 0.21 (CVE-2013-4324) + main/quagga: remove quagga-0.99.11-del-routes + main/samba: security upgrade to 4.1.3 (CVE-2013-4408,CVE-2012-6150) + main/linux-vserver: upgrade to 3.10.23 + ==== release 2.7.2 ==== + +Ted Trask (5): + main/acf-lib: upgrade to 0.6.1 + main/acf-core: upgrade to 0.17.1 + main/acf-freeswitch-vmail: upgrade to 0.3.2 + main/acf-skins: upgrade to 0.5.1 + main/acf-weblog: upgrade to 0.9.1 + +Timo Teräs (1): + main/openjdk6: upgrade to icedtea6 1.12.7 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.3-released.md b/posts/Alpine-2.7.3-released.md new file mode 100644 index 0000000..20f587a --- /dev/null +++ b/posts/Alpine-2.7.3-released.md @@ -0,0 +1,53 @@ +--- +title: 'Alpine 2.7.3 released' +date: 2014-01-07 +--- + +# Alpine 2.7.3 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.3 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.25 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.3">git log</a> and <a href="http://bugs.alpinelinux.org/versions/75">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Eivind Uggedal (1): + main/curl: add ca-certificates as dep + +Leonardo Arena (5): + main/linux-virt-grsec: upgrade to 3.10.19 + main/linux-virt-grsec: upgrade to 3.10.20 + main/linux-virt-grsec: upgrade to 3.10.23 + main/owncloud: upgrade to 5.0.14a + main/linux-virt-grsec: upgrade to 3.10.25 + +Natanael Copa (20): + main/varnish: security upgrade to 3.0.5 (CVE-2013-4484) + main/gimp: upgrade to 2.8.10 + main/php: security upgrade to 5.5.7 (CVE-2013-6420) + main/mysql: upgrade to 5.5.35 + main/linux-grsec: backport fix for GRE + GRO/GSO + main/linux-grsec: backport ip gre fix + main/linux-grsec: upgrade to 3.10.25 + main/dahdi-linux-grsec: rebuild against kernel 3.10.25-r0 + main/flashcache-grsec: rebuild against kernel 3.10.25-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.25-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.25-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.25-r0 + testing/spl-grsec: rebuild against kernel 3.10.25-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.25-r0 + testing/zfs-grsec: rebuild against kernel 3.10.25-r0 + main/quagga: fix zebra failing to start due to missing rundir + main/apk-tools: backport --print-arch + main/mkinitfs: upgrade to 2.5.3 + main/pixman: security fix for CVE-2013-6425 + main/xorg-server: security fix for CVE-2013-6424 + +Timo Teräs (5): + main/asterisk: security upgrade to 11.6.1 (fixes #2507) + main/openssl: don't use rdrand engine as default (fixes #2512) + main/apk-tools: upstream commit: flush stdout after log message + main/openssl: rewrite c_rehash in C for speed + main/openssl: security upgrade to 1.0.1f +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.4-released.md b/posts/Alpine-2.7.4-released.md new file mode 100644 index 0000000..ee5cbc4 --- /dev/null +++ b/posts/Alpine-2.7.4-released.md @@ -0,0 +1,78 @@ +--- +title: 'Alpine 2.7.4 released' +date: 2014-02-05 +--- + +# Alpine 2.7.4 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.4 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.28 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.4">git log</a> and <a href="http://bugs.alpinelinux.org/versions/76">bug tracker</a>. + +<h3>Shortlog</h3> +<pre> +Leonardo Arena (2): + main/libvirt: security fix (CVE-2013-6458 CVE-2014-1447) + main/rt4: upgrade to 4.0.18 + +Natanael Copa (49): + main/libxfont: security upgrade to 1.4.7 (CVE-2013-6462) + main/wireshark: security upgrade to 1.10.4 (CVE-2013-7112,CVE-2013-7114) + main/spice: security fix for CVE-2013-4282 + main/bind: security upgrade to 9.9.4_p2 (CVE-2014-0591) + main/linux-grsec: upgrade to 3.10.27 + main/dahdi-linux-grsec: rebuild against kernel 3.10.27-r0 + main/flashcache-grsec: rebuild against kernel 3.10.27-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.27-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.27-r0 + main/ipt-netflow-grsec: rebuild against kernel 3.10.27-r0 + main/spl-grsec: rebuild against kernel 3.10.27-r0 + main/virtualbox-additions-grsec: rebuild against kernel 3.10.27-r0 + main/zfs-grsec: rebuild against kernel 3.10.27-r0 + main/wanpipe-grsec: rebuild against kernel 3.10.27-r0 + main/linux-grsec: upgrade to 3.10.28 + main/dahdi-linux-grsec: rebuild against kernel 3.10.28-r0 + main/flashcache-grsec: rebuild against kernel 3.10.28-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.28-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.28-r0 + main/ipt-netflow-grsec: rebuild against kernel 3.10.28-r0 + main/spl-grsec: rebuild against kernel 3.10.28-r0 + main/virtualbox-additions-grsec: rebuild against kernel 3.10.28-r0 + main/zfs-grsec: rebuild against kernel 3.10.28-r0 + main/wanpipe-grsec: rebuild against kernel 3.10.28-r0 + main/freeradius: rebuild to fix libssl version mismatch. + main/curl: fix CVE-2014-0015 + main/nss: security upgrade to 3.15.3.1 + main/ruby-i18n: security upgrade to 0.6.6 (CVE-2013-4492) + main/arpwatch: fix install dir for arwpatch-ethercodes + main/xe-guest-utilities: fix symlinks + main/graphviz: security fixes for CVE-2014-0978, CVE-2014-1235, CVE-2014-1 + main/nagis: security fix for CVE-2013-7108, CVE-2013-7205 + main/memcached: security upgrade to 1.4.17 (CVE-2013-0179,CVE-2013-7239,CV + main/openjdk6: security upgrade to 1.12.8 icedtea + main/nss: security upgrade to 3.15.4 (CVE-2013-1740) + main/php: security upgrade to 5.5.8 (CVE-2013-6712) + main/cups: security upgrade to 1.7.1 (CVE-2013-6891) + main/augeas: security fix for CVE-2013-6412 + testing/strongswan: build fix for musl. use system headers + main/strongswan: moved from testing + testing/aports-build: new aports + testing/aports-build: send msg to irc on failure + main/aports-build: moved from testing + main/aports-build: fix deps + main/aports-build: push mqtt notifications for rsync + main/aports-build: allow setting custom builrepo opts + main/aports-build: include the arch in the published rsync messages + main/aports-build: fix checksum + ==== release 2.7.4 ==== + +Ted Trask (1): + main/acf-provisioning: upgrade to 0.4.2 + +Timo Teräs (3): + main/asterisk: upgrade to 11.7.0 + main/asterisk: use menuselect and enable app_meetme + testing/strongswan: upgrade to 5.1.1 + +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.5-released.md b/posts/Alpine-2.7.5-released.md new file mode 100644 index 0000000..e960a48 --- /dev/null +++ b/posts/Alpine-2.7.5-released.md @@ -0,0 +1,114 @@ +--- +title: 'Alpine 2.7.5 released' +date: 2014-03-07 +--- + +# Alpine 2.7.5 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.5 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.33 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.5">git log</a> and <a href="http://bugs.alpinelinux.org/versions/77">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Bartłomiej Piotrowski (2): + main/p11-kit: upgrade to 0.20.2 + main/alpine-mirrors: add mirror.bpiotrowski.pl + +Eivind Uggedal (1): + main/ca-certificates: split manpage into -doc subpackage + +Kaarle Ritvanen (1): + main/awall: upgrade to 0.3.5 + +Leonardo Arena (12): + main/linux-virt-grsec: upgrade to 3.10.28 + main/freeradius: upgrade to 2.2.3 + main/freeradius: add sqlite support + main/freeradius: use default user/group radius + main/freeradius: remove mysql configuration directives from default config + main/freeradius: make sure krb5 is not enabled. Enable parrallel building + main/freeradius: fix initd checkpath + main/zabbix: security upgrade to 2.0.11 (CVE-2014-1685, CVE-2014-1682, CVE + main/freeradius: security fix (CVE-2014-2015). Fixes #2718 + main/kamailio: make sure /var/run/kamailio exists before starting up + main/kamailio: fix checksum + main/awall: upgrade to 1.0.0 + +Natanael Copa (65): + main/linux-grsec: upgrade to 3.10.30 + main/dahdi-linux-grsec: rebuild against kernel 3.10.30-r0 + main/flashcache-grsec: rebuild against kernel 3.10.30-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.30-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.30-r0 + main/ipt-netflow-grsec: rebuild against kernel 3.10.30-r0 + main/spl-grsec: rebuild against kernel 3.10.30-r0 + main/virtualbox-additions-grsec: rebuild against kernel 3.10.30-r0 + main/zfs-grsec: rebuild against kernel 3.10.30-r0 + main/wanpipe-grsec: rebuild against kernel 3.10.30-r0 + main/python: security fix for CVE-2014-1912 + main/linux-grsec: upgrade to 3.10.32 + main/dahdi-linux-grsec: rebuild against kernel 3.10.32-r0 + main/flashcache-grsec: rebuild against kernel 3.10.32-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.32-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.32-r0 + main/ipt-netflow-grsec: rebuild against kernel 3.10.32-r0 + main/spl-grsec: rebuild against kernel 3.10.32-r0 + main/virtualbox-additions-grsec: rebuild against kernel 3.10.32-r0 + main/zfs-grsec: rebuild against kernel 3.10.32-r0 + main/wanpipe-grsec: rebuild against kernel 3.10.32-r0 + main/libpng: security upgrade to 1.6.9 (CVE-2013-6954) + main/file: security upgrade to 5.17 (CVE-2014-1943) + main/pidgin: security upgrade to 2.10.9 (various CVEs) + main/dbus: create use as system user + main/ca-certificates: exclude autogenerated ca-certificates.crt from overl + main/attr: make sure installed files are owned by root + main/coreutils: rebuild with fixed fakeroot + main/shorewall: rebuild with fixed fakeroot + main/shorewall6: rebuild with fixed fakeroot to fix file ownership + main/gnutls: security upgrade to 3.2.12 (CVE-2014-0092,CVE-2014-1959) + main/gnutls: upgrade to 3.2.12.1 + main/postgresql: security upgrade to 9.3.3 + main/linux-grsec: cherry-pick opennhrp related kernel fix + main/dahdi-linux-grsec: rebuild against kernel 3.10.32-r1 + main/flashcache-grsec: rebuild against kernel 3.10.32-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.10.32-r1 + main/xtables-addons-grsec: rebuild against kernel 3.10.32-r1 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.32-r1 + testing/spl-grsec: rebuild against kernel 3.10.32-r1 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.32-r1 + testing/zfs-grsec: rebuild against kernel 3.10.32-r1 + main/docbook-xsl: add assembly, epub, epub3, xhtml-1_1 and xhtml5 + main/docbook-xsl: make sure VERSION is installed + main/alpine-mirrors: switch to yaml format + main/alpine-mirrors: fix typo + main/lxc: fix /dev/shm in alpine template + main/python: upgrade to 2.7.6 + main/ruby: rebuild with fixed coreutils + main/xfsprogs: make sure installed files are owned by root + main/ffmpeg: upgrade to 2.1.4 + main/libreswan: upgrade to 3.8 and moved from testing + main/phpmyadmin: security fix for CVE-2014-1879 + main/subversion: security upgrade to 1.8.8 (CVE-2013-4505,CVE-2013-4558,CV + main/linux-grsec: upgrade to 3.10.33 + main/dahdi-linux-grsec: rebuild against kernel 3.10.33-r0 + main/flashcache-grsec: rebuild against kernel 3.10.33-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.33-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.33-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.33-r0 + testing/spl-grsec: rebuild against kernel 3.10.33-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.33-r0 + testing/zfs-grsec: rebuild against kernel 3.10.33-r0 + main/libc0.9.32: backport posix_spawn fix + ==== release 2.7.5 ==== + +Timo Teräs (6): + main/alpine-keys: add musl build signing keys + main/alpine-keys: fix checksums + main/asterisk: upgrade to 11.8.0 + main/fakeroot: build with acl support + main/fakeroot: hide unharmful dlsym errors + main/ipsec-tools: upgrade to 0.8.2 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.6-released.md b/posts/Alpine-2.7.6-released.md new file mode 100644 index 0000000..5cb256f --- /dev/null +++ b/posts/Alpine-2.7.6-released.md @@ -0,0 +1,156 @@ +--- +title: 'Alpine 2.7.6 released' +date: 2014-04-21 +--- + +# Alpine 2.7.6 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.6 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.37 kernel which contains various security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.6">git log</a> and <a href="http://bugs.alpinelinux.org/versions/78">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Bartłomiej Piotrowski (22): + main/libssh: security fix for CVE-2014-0017 + testing/parallel: new aport + main/udisks: security fix for CVE-2014-0004 + main/udisks2: security fix for CVE-2014-0004 + main/jansson: security upgrade to 2.6 (CVE-2013-6401) + main/samba: security fix for CVE-2013-4496 and CVE-2013-6442 + main/libmodplug: secutity upgrade to 0.8.8.5 (CVE-2013-4233, CVE-2013-4234 + main/freetype: security fixes for CVE-2014-2240 and CVE-2014-2241 + main/freetype: correct the patchlevel + main/cups-filters: security fixes for CVE-2013-6473, CVE-2013-6476, CVE-20 + main/net-snmp: security upgrade to 5.7.2.1 (CVE-2014-2285, CVE-2014-2284) + backports/hplip: new aport + Revert "main/net-snmp: security upgrade to 5.7.2.1 (CVE-2014-2285, CVE-201 + main/net-snmp: security fixes for CVE-2014-2285 and CVE-2014-2284 + main/net-snmp: fix build + Temporarily revert net-snmp related changes to unblock builders. + main/clamav: add missing patch + backports/hplip: add py-dbus to dependencies + main/linux-grsec: enable zram module + main/nginx: upgrade to 1.4.7 + backports/zram-init: new aport from edge + main/openssh: security fix for CVE-2014-2532 + +Carlo Landmeter (1): + backports/lxc: backport lxc 1.0.3 + +Jeff Bilyk (1): + main/slony1: moved from testing + +Kaarle Ritvanen (2): + main/awall: upgrade to 1.1.0 + main/awall: upgrade to 1.1.1 + +Leonardo Arena (10): + main/owncloud: security upgrade to 5.0.15 + main/owncloud-mozilla_sync: new aport + backports/zabbix: 2.2 from edge + main/linux-virt-grsec: upgrade to 3.10.33 + main/clamav: fix endless timeout upon daemon startup + main/clamav: check for main.cvd/cld presence at startup + main/freeradius: rebuild against new openssl. Fixes #2835 + main/smstools: silent pre-install + main/racktables: backport from edge + main/linux-virt-grsec: upgrade to 3.10.36 + +Natanael Copa (73): + main/lxc: fix error handling when lxc.utsname is unset + main/postgresql: fix pre-upgrade script + testing/parallel: upgrade to 20131222 + main/parallel: moved fom testing + main/lighttpd: security upgrade to 1.4.35 (CVE-2014-2323,CVE-2014-2324) + main/wireshark: security upgrade to 1.10.6 (CVE-2013-7112,CVE-2013-7114) + main/libuv: backported + main/nodejs: backported + main/clamav: upgrade to 0.98.1 + main/aports-build: depend on network + main/dahdi-linux-grsec: rebuild against kernel 3.10.33-r1 + main/flashcache-grsec: rebuild against kernel 3.10.33-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.10.33-r1 + main/xtables-addons-grsec: rebuild against kernel 3.10.33-r1 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.33-r1 + testing/spl-grsec: rebuild against kernel 3.10.33-r1 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.33-r1 + testing/zfs-grsec: rebuild against kernel 3.10.33-r1 + unmaintained/wanpipe-grsec: rebuild against kernel 3.10.33-r1 + main/lua-penlight: upgrade to 1.3.1 + main/lua-penlight: add support for Lua 5.2 + main/uwsgi: moved from testing + main/libvdpau: work around libX11 underlinking + main/freeradius: upgrade to 2.2.4 + main/linux-grsec: upgrade to 3.10.36 + main/dahdi-linux-grsec: rebuild against kernel 3.10.36-r0 + main/flashcache-grsec: rebuild against kernel 3.10.36-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.36-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.36-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.36-r0 + testing/spl-grsec: rebuild against kernel 3.10.36-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.36-r0 + testing/zfs-grsec: rebuild against kernel 3.10.36-r0 + main/linux-grsec: upgrade to 3.10.37 + main/dahdi-linux-grsec: rebuild against kernel 3.10.37-r0 + main/flashcache-grsec: rebuild against kernel 3.10.37-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.37-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.37-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.37-r0 + testing/spl-grsec: rebuild against kernel 3.10.37-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.37-r0 + testing/zfs-grsec: rebuild against kernel 3.10.37-r0 + main/gross: create directory for pidfile in init.d script + main/nsd: upgrade to 4.0.3 + main/nsd: create nsd user on upgrade + main/postfixadmin: security upgrade to 2.3.7 (CVE-2014-2655) + main/php: security upgrade to 5.5.11 (CVE-2013-7327) + main/apache2: security upgrade to 2.4.9 (CVE-2013-6438,CVE-2014-0098) + main/x264: disable aggresive loop optimizations + main/a2ps: security fix for CVE-2001-1593 and CVE-2014-0466 + main/a2ps: fix previous commit + main/json-c: security upgrade to 0.12 (CVE-2013-6371,CVE-2013-6370) + main/openssh: security fix for CVE-2014-2653 + main/ruby-actionmailer: security upgrade to 4.0.4 (CVE-2013-6414,CVE-2013- + main/ruby-actionpack: upgrade to 4.0.4 + main/ruby-activerecord: upgrade to 4.0.4 + main/ruby-activesupport: upgrade to 4.0.4 + main/ruby-railties: upgrade to 4.0.4 + main/ruby-activemodel: upgrade to 4.0.4 + main/ruby-arel: upgrade to 4.0.2 + main/ruby-rails: upgrade to 4.0.4 + main/ruby-redmine-actionmailer: upgrade to 3.2.17 + main/ruby-redmine-actionpack: upgrade to 3.2.17 + main/ruby-redmine-activemodel: upgrade to 3.2.17 + main/ruby-redmine-activerecord: upgrade to 3.2.17 + main/ruby-redmine-activeresource: upgrade to 3.2.17 + main/ruby-redmine-activesupport: upgrade to 3.2.17 + main/ruby-redmine-rails: upgrade to 3.2.17 + main/ruby-redmine-railties: upgrade to 3.2.17 + main/ruby-redmine-arel: upgrade to 3.0.2 + main/freeswitch: add configurable grammar, recordings and storage paths + main/awall: upgrade to 1.2.1 + ==== release 2.7.6 ==== + +Timo Teräs (18): + main/asterisk: security upgrade to 11.8.1 + main/apk-tools: upgrade to 2.4.1 + main/busybox-initscripts: support 'peer-dns' in udhcpc hook + main/awall: cherry-pick boolean variable fix from git + main/lua-ossl: new aport backported from edge + main/openssl: upgrade to 1.0.1g + main/apk-tools: upgrade to 2.4.3 + main/strongswan: security upgrade to 5.1.3 + main/strongswan: fix unintentional cherry-pick merge + main/nss: security upgrade to 3.16 (CVE-2014-1492) + main/openswan: security upgrade to 2.6.41 (CVE-2013-6466) + main/mutt: security upgrade to 1.5.23 (CVE-2014-0467) + main/curl: security upgrade to 7.36.0 (CVE-2014-0138 CVE-2014-0139) + main/redmine: upgrade to 2.3.4 + main/redmine: fix download url + main/opennhrp: fix routing-table check with shortcut destination interface + main/opennhrp: additional routing-table fix + main/opennhrp: fix apkbuild +</pre> diff --git a/posts/Alpine-2.7.7-released.md b/posts/Alpine-2.7.7-released.md new file mode 100644 index 0000000..440227e --- /dev/null +++ b/posts/Alpine-2.7.7-released.md @@ -0,0 +1,59 @@ +--- +title: 'Alpine 2.7.7 released' +date: 2014-05-06 +--- + +# Alpine 2.7.7 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.7 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.38 kernel. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.7">git log</a> and <a href="http://bugs.alpinelinux.org/versions/79">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Carlo Landmeter (1): + main/btrfs-progs: upgrade to 3.14.1 + +Eivind Uggedal (2): + main/py-django: security upgrade to 1.5.6 (CVE-2014-0472,CVE-2014-0473,CVE + main/py-django: bugfix upgrade for security fix + +Kaarle Ritvanen (1): + main/lua-cjson: fix pkgname to create the metapackage + +Leonardo Arena (2): + main/linux-virt-grsec: upgrade to 3.10.37 + main/owncloud: upgrade to 5.0.16 + +Natanael Copa (20): + backports/zabbix: ship zabbix_proxy.conf + main/asterisk: upgrade to 11.9.0 + main/squid: allow more than 16384 filedescriptors + main/squid: security upgrade to 3.3.12 (CVE-2014-0128) + main/busybox-initscripts: add support for broadcast from dhcp + main/apr: upgrade to 1.5.1 + main/apr-util: upgrade to 1.5.3 + main/apache2: rebuild against apr-1.5 for MPM event + main/linux-grsec: upgrade to 3.10.38 + main/dahdi-linux-grsec: rebuild against kernel 3.10.38-r0 + main/flashcache-grsec: rebuild against kernel 3.10.38-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.38-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.38-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.38-r0 + testing/spl-grsec: rebuild against kernel 3.10.38-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.38-r0 + testing/zfs-grsec: rebuild against kernel 3.10.38-r0 + main/ca-certificates: upgrade to 20140325 + backports/zabbix: fix default zabbix_proxy.conf + ==== release 2.7.7 ==== + +Timo Teräs (6): + main/awall: fix dependencies + main/quagga: apply patch to implement bgp next-hop-self all + main/quagga: cherry-pick upstream commits + main/busybox-initscripts: support 'peer-dns' in udhcpc hook + main/ca-certificates: rewrite update-ca-certificates in lua + main/ca-certificates: fix few minor issues in lua version +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.8-released.md b/posts/Alpine-2.7.8-released.md new file mode 100644 index 0000000..6fc97a9 --- /dev/null +++ b/posts/Alpine-2.7.8-released.md @@ -0,0 +1,62 @@ +--- +title: 'Alpine 2.7.8 released' +date: 2014-05-21 +--- + +# Alpine 2.7.8 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.8 of its Alpine Linux operating system. + +This is a bugfix release which is based on the 3.10.40 kernel which has some critical security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.8">git log</a> and <a href="http://bugs.alpinelinux.org/versions/80">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Eivind Uggedal (1): + main/py-django: security upgrade to 1.5.8 (CVE-2014-1418,CVE-2014-3730) + +Leonardo Arena (2): + main/linux-virt-grsec: upgrade to 3.10.40 + backports/perl-mail-tools: backport new version for rt4 + +Linux User (1): + backports: add rt 4.2 and all the needed dependencies + +Natanael Copa (22): + main/lua-pc: fix lua5.1/lua conflict + main/lua-zlib: fix lua/lua5.1 conflict + mian/linux-grsec: upgrade to 3.14.4 + main/dahdi-linux-grsec: rebuild against kernel 3.10.40-r0 + main/flashcache-grsec: rebuild against kernel 3.10.40-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.40-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.40-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.40-r0 + testing/spl-grsec: rebuild against kernel 3.10.40-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.40-r0 + testing/zfs-grsec: rebuild against kernel 3.10.40-r0 + main/libxfont: security fixes for CVE-2014-0209, CVE-2014-0210, CVE-2014-021 + main/coreutils: fix man-pages + main/alpine-conf: backport HP array (cciss) paritioning fix + main/mqtt-exec: upgrade to 0.2 and add an init.d script + main/apk-tools: upgrade to 2.4.4 + main/alpine-conf: backport ERASE_DISKS support for setup-disk + main/qemu: upgrade to 1.6.2 and security fix CVE-2014-0150 + main/dpkg: security upgrade to 1.16.14 (CVE-2014-0471) + main/libmms: security upgrade to 0.6.4 (CVE-2014-2892) + main/mysql: security upgrade to 5.5.37 + ==== release 2.7.8 ==== + +Timo Teräs (11): + main/rt4: upgrade to 4.0.19 (and fix displayed RT version) + main/luajit: backport from edge + main/nginx-lua: backported from edge + main/lua-pc: build for lua5.1 and lua5.2 + main/lua-pc: fix install prefix, and subpkg dependencies + main/lua-pc: fix lua5.2 build + main/lua-pc: fix checksum + main/lua-pc: rebuild to recover from previous build failure + main/lua-lpc: fix flags + main/lua-zlib: upgrade to 0.4.1 and build for lua 5.1 and 5.2 + main/openssl: fix for CVE-2010-5298 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-2.7.9-released.md b/posts/Alpine-2.7.9-released.md new file mode 100644 index 0000000..8c2a1ee --- /dev/null +++ b/posts/Alpine-2.7.9-released.md @@ -0,0 +1,109 @@ +--- +title: 'Alpine 2.7.9 released' +date: 2014-06-25 +--- + +# Alpine 2.7.9 released +The Alpine Linux project is pleased to announce the immediate availability of version 2.7.9 of its Alpine Linux operating system. + +This is a bugfix release of the old uClibc based v2.7 branch. This release is based on the 3.10.44 kernel which has some critical security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v2.7.9">git log</a> and <a href="http://bugs.alpinelinux.org/versions/81">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Bartłomiej Piotrowski (1): + main/ruby: upgrade to 2.0.0_p481 + +Eivind Uggedal (1): + main/py-jinja2: security upgrade to 2.7.3 (CVE-2014-0012) + +Jeff Bilyk (2): + main/libmaxminddb: bump pkgrel + main/varnish: pkgrel bump + +Leonardo Arena (10): + backports/perl-ldap: new aport + backports/perl-rt-authen-externalauth: new aport + backports/perl-rt-extension-commandbymail: new aport + main/zabbix: upgrade to 2.0.12 + main/libvirt: security fix (CVE-2013-6456, CVE-2014-0179). Fixes #2955 + main/net-snmp: update initd, adding reload function + testing/aaudit: move to main + main/linux-virt-grsec: upgrade to 3.10.43 + Security fix (CVE-2013-3215). Fixes #3030 + main/nagios: security fix (CVE-2014-1878). Fixes #2947 + +Natanael Copa (58): + main/rxvt-unicode: security upgrade to 9.20 (CVE-2014-3121) + main/ldns: security fix for CVE-2014-3209 + main/libxml2: security fix for CVE-2014-0191 + main/net-snmp: upgrade to 5.7.2.1 + main/php: security upgrade to 5.5.12 (CVE-2014-0185) + main/cups: security upgrade tp 1.7.3 (CVE-2014-2856) + main/linux-grsec: upgrade to 3.10.41 + main/dahdi-linux-grsec: rebuild against kernel 3.10.41-r0 + main/flashcache-grsec: rebuild against kernel 3.10.41-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.41-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.41-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.41-r0 + testing/spl-grsec: rebuild against kernel 3.10.41-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.41-r0 + testing/zfs-grsec: rebuild against kernel 3.10.41-r0 + main/fping: enable fping6 + main/freeradius: rebuild due to openssl upgrade + main/dovecot: security upgrade to 2.2.13 (CVE-2014-3430) + main/libtasn1: security upgrade to 3.6 (CVE-2014-3467,CVE-2014-3468,CVE-20 + main/php: security upgrade to 5.5.13 (CVE-2014-0237,CVE-2014-0238) + main/busybox: fix adduser without options + main/linux-grsec: security upgrade to 3.10.43 + main/dahdi-linux-grsec: rebuild against kernel 3.10.43-r0 + main/flashcache-grsec: rebuild against kernel 3.10.43-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.43-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.43-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.43-r0 + testing/spl-grsec: rebuild against kernel 3.10.43-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.43-r0 + testing/zfs-grsec: rebuild against kernel 3.10.43-r0 + main/gitolite: use rm instead of unlink + main/wireshark: security upgrade to 1.10.8 (CVE-2014-4020) + main/bash: fix setuid bug + main/fping: fix fping6 for non-root users + main/xinit: initialize xauth properly + main/php: fix php-fpm script + main/php: fix CVE-2014-4049 + main/nspr: security upgrade to 4.10.6 (CVE-2014-1545) + main/tiff: security fixes for CVE-2013-4243 and CVE-2013-4244 + main/linux-grsec: upgrade to 3.10.44 + main/dahdi-linux-grsec: rebuild against kernel 3.10.44-r0 + main/flashcache-grsec: rebuild against kernel 3.10.44-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.10.44-r0 + main/xtables-addons-grsec: rebuild against kernel 3.10.44-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.10.44-r0 + testing/spl-grsec: rebuild against kernel 3.10.44-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.10.44-r0 + testing/zfs-grsec: rebuild against kernel 3.10.44-r0 + main/samba: security upgrade to 4.1.9 (CVE-2014-0178,CVE-2014-0244,CVE-201 + main/ruby-actionmailer: upgrade to 4.0.5 + main/ruby-activemodel: upgrade to 4.0.5 + main/ruby-activerecord: upgrade to 4.0.5 + main/ruby-actionpack: upgrade to 4.0.5 + main/ruby-activesupport: upgrade to 4.0.5 + main/ruby-rails: upgrade to 4.0.5 + main/ruby-railties: upgrade to 4.0.5 + main/linux-virt-grsec: upgrade to 3.10.44 + ==== release 2.7.9 ==== + +Ted Trask (1): + main/acf-core: upgrade to 0.17.2 + +Timo Teräs (7): + main/openssl: security fix to CVE-2014-0198 + main/asterisk: upgrade to 11.10.0 + main/gnutls: security upgrade to 3.2.15 (CVE-2014-3466) + main/openssl: security upgrade to 1.0.1h (multiple CVE) + main/asterisk: security upgrade to 11.10.1 + main/asterisk: security upgrade to 11.10.2 + main/freeradius: fix openssl version check +</pre>
\ No newline at end of file diff --git a/posts/Alpine-3.0.0-released.md b/posts/Alpine-3.0.0-released.md new file mode 100644 index 0000000..6ec38ad --- /dev/null +++ b/posts/Alpine-3.0.0-released.md @@ -0,0 +1,91 @@ +--- +title: 'Alpine 3.0.0 released' +date: 2014-06-04 +--- + +# Alpine 3.0.0 released +We are pleased to announce Alpine Linux 3.0.0, the first release in v3.0 stable series. + +This is the first release with musl libc instead of uClibc and is not ABI compatible with earlier versions, +so special care needs to be taken when upgrading. See http://alpinelinux.org/edge-musl on how to upgrade. + +Since v2.7, among the various bugfixes, several packages have been upgraded: +- kernel is based on 3.14.5 +- lxc 1.0.3 +- qemu 2.0.0 +- asterisk 12.3.0 +- openssh 6.6p1 +- openjdk7 +- varnish 4.0.0 + +and many more... + +Some of the desktop applications that got upgraded and are available for v3.0: +- xorg-server-1.15.1 +- firefox 29.0.1 +- gnumeric 1.12.8 +- evince 3.12 +- virt-manager 1.0.1 +- claws-mail 3.10.0 +- hexchat 2.9.6.1 +- vlc 2.1.4 +- inkscape 0.48.4 +- gimp 2.8.10 + +A port for ARM has been created, but is still experimental and not included in release builds. + +Various long standing bugs that have been difficult (or impossible) to fix have been resolved. +There are also better support for utf8, all timezones, full RELRO build. + +Since this is the first release with a brand new libc, it should be considered as beta quality. +Most things will work good or better than previous releases but there are likely cornercase bugs +lurking. So be sure to test it before rolling out for production. We are also planning to +shorten the support period for v3.0 to 1 year instead of the traditional 2 year period. + +Some things that are known to not work yet are: +- NFS +- xen +- freeswitch (does not build yet) + +Musl has limited support for debugging so valgrind does not work and gdb might have incomplete backtraces. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v3.0.0">git log</a> +and <a href="http://bugs.alpinelinux.org/versions/71">bug tracker</a>. + +Commit statistics: +<pre> + 1553 Natanael Copa <ncopa@alpinelinux.org> + 338 Fabian Affolter <fabian@affolter-engineering.ch> + 300 Timo Teräs <timo.teras@iki.fi> + 291 Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> + 140 Eivind Uggedal <eivind@uggedal.com> + 129 Leonardo Arena <rnalrd@alpinelinux.org> + 120 Carlo Landmeter <clandmeter@gmail.com> + 70 Bartłomiej Piotrowski <b@bpiotrowski.pl> + 63 Ted Trask <ttrask01@yahoo.com> + 59 William Pitcock <nenolod@dereferenced.org> + 35 Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> + 31 Francesco Colista <francesco.colista@gmail.com> + 11 Stuart Cardall <developer@it-offshore.co.uk> + 10 IT Offshore <developer@it-offshore.co.uk> + 10 Francesco Colista <fcolista@alpinelinux.org> + 7 Alan Messias Cordeiro <alancordeiro@gmail.com> + 5 Nathan Angelacos <nangel@alpinelinux.org> + 4 Andrew Manison <andrew.manison@oracle.com> + 3 Jeff Bilyk <jbilyk@alpinelinux.org> + 3 crow <crow@linux.org.ba> + 3 Andrew Manison <amanison@anselsystems.com> + 3 Kozak Ivan <kozak-iv@yandex.ru> + 2 Pablo Castorino <pcastorino@mendoza-conicet.gob.ar> + 2 Mika Havela <mika.havela@gmail.com> + 1 Lionel Voirol <lionel@sinux.ch> + 1 Leslie P. Polzer <polzer@port-zero.com> + 1 Paul Kilar <pkilar@gmail.com> + 1 Jeff Bilyk <jbilyk@gmail.com> + 1 Jeff Pohlmeyer <yetanothergeek@gmail.com> + 1 Robert Boisvert <rdboisvert@gmail.com> + 1 Seung Soo Mun <hamletmun@gmail.com> + 1 Sam Dodrill <shadowh511@gmail.com> + 1 Yves Schumann <yves@eisfair.org> + 1 stef <l0ls0fo2i@ctrlc.hu> +</pre>
\ No newline at end of file diff --git a/posts/Alpine-3.0.1-released.md b/posts/Alpine-3.0.1-released.md new file mode 100644 index 0000000..899cf02 --- /dev/null +++ b/posts/Alpine-3.0.1-released.md @@ -0,0 +1,110 @@ +--- +title: 'Alpine 3.0.1 released' +date: 2014-06-26 +--- + +# Alpine 3.0.1 released +The Alpine Linux project is pleased to announce the immediate availability of version 3.0.1 of its Alpine Linux operating system. + +This is a bugfix release of the v3.0 musl based branch. This release is based on the 3.14.8 kernel which has some critical security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v3.0.1">git log</a> and <a href="http://bugs.alpinelinux.org/versions/82">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Bartłomiej Piotrowski (1): + main/ruby: upgrade to 2.0.0_p481 + +Carlo Landmeter (1): + main/freeswitch: enable and upgrade to 1.4.6 + +Eivind Uggedal (1): + main/py-jinja2: security upgrade to 2.7.3 (CVE-2014-0012) + +Igmar Palsenberg (1): + main/xl2tpd: build fix for musl + +Leonardo Arena (3): + Security fix (CVE-2013-3215). Fixes #3031 + main/linux-virt-grsec: upgrade to 3.14.6 + main/linux-virt-grsec: upgrade to 3.14.8 + +Natanael Copa (57): + main/freeradius: rebuild due to openssl upgrade + main/libtasn1: security upgrade to 3.6 (CVE-2014-3467,CVE-2014-3468,CVE-20 + main/linux-grsec: upgrade to 3.14.6 + main/dahdi-linux-grsec: rebuild against kernel 3.14.6-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.6-r0 + main/ipfw-grsec: rebuild against kernel 3.14.6-r0 + main/open-vm-tools-grsec: rebuild against kernel 3.14.6-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.6-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.6-r0 + testing/spl-grsec: rebuild against kernel 3.14.6-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.6-r0 + testing/zfs-grsec: rebuild against kernel 3.14.6-r0 + main/bind: security upgrade to 9.10.0_p2 (CVE-2014-3859) + main/gitolite: use rm instead of unlink + main/wireshark: security upgrade to 1.10.8 (CVE-2014-4020) + main/bash: fix setuid bug + main/php: fix php-fpm script + main/fping: fix fping6 for non-root users + main/vsftpd: post-install: dont exit with error if user exists + main/clamav: upgrade to 0.98.4 + main/bind: remove duplicate depend function + main/nspr: security upgrade to 4.10.6 (CVE-2014-1545) + main/bash: upgrade to 4.3.018 and update the suid patch + main/sysklogd: update init.d script + main/php: fix CVE-2014-4049 + main/alpine-conf: upgrade to 3.0.3 + main/linux-grsec: tune config + main/linux-grsec: fix null pointer deref + main/linux-grsec: upgrade to 3.14.8 + main/linux-grsec: upgrade to grsecurity-3.0-3.14.8-201406222110 + main/dahdi-linux-grsec: rebuild against kernel 3.14.8-r1 + main/enhanceio-grsec: rebuild against kernel 3.14.8-r1 + main/ipfw-grsec: rebuild against kernel 3.14.8-r1 + main/open-vm-tools-grsec: rebuild against kernel 3.14.8-r1 + main/xtables-addons-grsec: rebuild against kernel 3.14.8-r1 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.8-r1 + testing/spl-grsec: rebuild against kernel 3.14.8-r1 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.8-r1 + testing/zfs-grsec: rebuild against kernel 3.14.8-r1 + main/linux-vanilla: enable armhf build + main/linux-vanilla: upgrade to 3.14.6 + main/linux-vanilla: enable Elantec PS/2 mouse and SECCOMP + main/linux-vanilla: syncronize config with grsec kernel + main/linux-vanilla: upgrade to 3.14.8 + main/linux-vanilla: enable CONFIG_PROC_PAGE_MONITOR + main/tiff: security fixes for CVE-2013-4243 and CVE-2013-4244 + main/musl: add -dbg subpackage + main/syslinux: fix update-extlinux to handle vanilla kernel + main/samba: security upgrade to 4.1.9 (CVE-2014-0244,CVE-2014-3493) + main/php: enable -dbg + main/freeradius: upgrade to 2.2.5 + main/busybox-initscripts: fix ownership for /dev/snd/* + main/phpmyadmin: security upgrade to 4.2.4 (CVE-2014-4348,CVE-2014-4349) + main/xen: make sure /var/run/xen exists + main/util-linux: enable chsh + main/linux-virt-grsec: upgrade to grsecurity-3.0-3.14.8-201406222110 + ==== release 3.0.1 ==== + +Timo Teräs (17): + main/openssl: security upgrade to 1.0.1h (multiple CVE) + main/musl: upgrade to git snapshot of 2014-06-05 + main/musl: upgrade to 1.1.2 + main/asterisk: security upgrade to 12.3.1 + main/asterisk: security upgrade to 12.3.2 + main/freeradius: fix openssl version check + main/vsftpd: fix to work with musl, and clean ups + main/collectd: limit stack usage to reasonable amount + main/musl: cherry-pick bug fixes from git + main/musl: cherry-pick fix for syslog.h aliasing violation + main/sysklogd: rebuild against fixed musl-dev + main/clamav: force large stacks on musl + main/php: fix php_crypt implementation + main/quagga: upgrade to 0.99.23 + main/musl: upgrade to 1.1.3 + main/nspr: fix musl build to have ipv6 and large-file support + main/cvs: downgrade to newest stable release 1.11.23 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-3.0.2-released.md b/posts/Alpine-3.0.2-released.md new file mode 100644 index 0000000..7baa982 --- /dev/null +++ b/posts/Alpine-3.0.2-released.md @@ -0,0 +1,188 @@ +--- +title: 'Alpine 3.0.2 released' +date: 2014-07-30 +--- + +# Alpine 3.0.2 released +The Alpine Linux project is pleased to announce the immediate availability of version 3.0.2 of its Alpine Linux operating system. + +This is a bugfix release of the v3.0 musl based branch. This release is based on the 3.14.14 kernel which has some critical security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v3.0.2">git log</a> and <a href="http://bugs.alpinelinux.org/versions/85">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Carlo Landmeter (1): + main/busybox-initscripts: fix typo mdev.conf + +Eivind Uggedal (1): + main/ansible: security upgrade to 1.6.5 + +Isaac Dunham (2): + main/cups: fix typo, lpd backend + main/ghostscript: cups driver needed for printing + +Kaarle Ritvanen (1): + main/openrc: execute sysctl init script in lxc environments + +Leonardo Arena (19): + main/lm_sensors: build sensord package and put into a separate subpkg, sin + main/linux-virt-grsec: upgrade to 3.14.11 + main/linux-virt-grsec: upgrade to 3.14.12 + main/zabbix: upgrade to 2.2.4 + testing/freeradius3: backport from edge + main/rt4: upgrade to 4.2.5 + Revert "main/perl-cgi: new aport" + Revert "main/perl-module-pluggable: new aport" + Revert "main/perl-test-number-delta: new aport" + Revert "main/perl-convert-color: upgrade to 0.11" + Revert "main/rt4: remove dependency to testing (perl-graphviz)" + Revert "main/rt4: upgrade to 4.2.6" + Revert "main/rt4: upgrade to 4.2.5" + main/perl-digest-sha1: add SHA checksums + main/perl-email-address-list: upgrade to 0.05 + main/rt4: upgrade to 4.2.6 + main/owncloud: upgrade to 6.0.4 + main/linux-virt-grsec: upgrade to 3.14.13 + main/linux-virt-grsec: upgrade to 3.14.14 + +Natanael Copa (107): + main/acf-freeswitch: enable again + main/alpine-conf: add support for url args to setup-apkrepos + main/kamailio: fix trailing whitspace in kamdbctl.base + main/kamailio: fix backslash patch + main/quagga: add -dbg sub package + main/cacti: security fix for various CVEs + main/linux-grsec: upgrade to 3.14.10 (CVE-2014-0206,CVE-2014-4508,CVE-2014 + main/linux-grsec: upgrade to grsecurity-3.0-3.14.10-201407052031 + main/dahdi-linux-grsec: rebuild against kernel 3.14.10-r2 + main/enhanceio-grsec: rebuild against kernel 3.14.10-r2 + main/ipfw-grsec: rebuild against kernel 3.14.10-r2 + main/open-vm-tools-grsec: rebuild against kernel 3.14.10-r2 + main/xtables-addons-grsec: rebuild against kernel 3.14.10-r2 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.10-r2 + testing/spl-grsec: rebuild against kernel 3.14.10-r2 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.10-r2 + testing/zfs-grsec: rebuild against kernel 3.14.10-r2 + main/dbus: security upgrade to 1.8.6 (CVE-2014-3532,CVE-2014-3533) + main/linux-grsec: upgrade to 3.14.11 + main/open-vm-tools-grsec: remove as it does not build + testing/zfs-grsec: remove as it does not build + main/dahdi-linux-grsec: rebuild against kernel 3.14.11-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.11-r0 + main/ipfw-grsec: rebuild against kernel 3.14.11-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.11-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.11-r0 + testing/spl-grsec: rebuild against kernel 3.14.11-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.11-r0 + main/mtr: moved from testing + main/rsync: upgrade to 3.1.1 + main/linux-grsec: upgrade to 3.14.12 + main/dahdi-linux-grsec: rebuild against kernel 3.14.12-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.12-r0 + main/ipfw-grsec: rebuild against kernel 3.14.12-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.12-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.12-r0 + testing/spl-grsec: rebuild against kernel 3.14.12-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.12-r0 + main/linux-vanilla: upgrade to 3.14.12 + main/perl-io-compress: exclude zipdetails + main/busybox-initscripts: klogd should not provide logger + main/openrc: hide error when migrating /var/run to /run + main/ansible: security upgrade to 1.6.6 (CVE-2014-4678) + main/ffmpeg: security upgrade to 2.2.5 (CVE-2014-4609,CVE-2014-4610) + main/php: security upgrade to 5.5.14 (CVE-2014-4721) + main/transmission: security upgrade to 2.84 (CVE-2014-4909) + main/syslinux: update-extlinux use 'vanilla' as label in menu + main/perl-compress-raw-zlib: upgrade to 2.065 + main/perl-email-address: security upgrade to 1.905 (CVE-2014-0477,CVE-2014 + main/mysql: security upgrade to 5.5.38 (CVE-2014-4258,CVE-2014-4260) + main/perl-db: update url and rebuild + main/file: security upgrade to 5.19 (CVE-2014-3538) + main/apache2: security upgrade to 2.4.10 (CVE-2014-0117,CVE-2014-0118,CVE- + main/krb5: security fix for CVE-2014-4341,CVE-2014-4342 + main/phpmyadmin: security upgrade to 4.2.6 (CVE-2014-4987,CVE-2014-4986,CV + main/gnupg1: security upgrade to 1.4.17 (CVE-2014-4617) + main/libvirt: help libvirt to find path to dnsmasq + main/nfdump: rebuild against fixed musl-dev + main/linux-grsec: upgrade to 3.14.13 + main/dahdi-linux-grsec: rebuild against kernel 3.14.13-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.13-r0 + main/ipfw-grsec: rebuild against kernel 3.14.13-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.13-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.13-r0 + testing/spl-grsec: rebuild against kernel 3.14.13-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.13-r0 + main/nagios-plugins: security upgrade to 2.0.3 (CVE-2014-4701,CVE-2014-470 + main/php: security upgrade to 5.5.15 (CVE-2014-4670) + main/lzo: security upgrade to 2.08 (CVE-2014-4607) + main/util-linux: suppress warning with --quiet + main/linux-vanilla: upgrade to 3.14.13 + main/alpine-conf: upgrade to 3.0.4 + + main/ruby-redmine-actionmailer: security upgrade to 3.2.19 (CVE-2014-3482) + main/ruby-redmine-actionpack: security upgrade to 3.2.19 (CVE-2014-3482) + main/ruby-redmine-activemodel: security upgrade to 3.2.19 (CVE-2014-3482) + main/ruby-redmine-activerecord: security upgrade to 3.2.19 (CVE-2014-3482) + main/ruby-redmine-activeresource: security upgrade to 3.2.19 (CVE-2014-348 + main/ruby-redmine-activesupport: security upgrade to 3.2.19 (CVE-2014-3482 + main/ruby-redmine-rails: security upgrade to 3.2.19 (CVE-2014-3482) + main/ruby-redmine-railties: security upgrade to 3.2.19 (CVE-2014-3482) + main/redmine: upgrade to 2.4.6 + main/ruby-actionmailer: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-actionpack: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-activemodel: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-activerecord: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-activesupport: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-rails: security upgrade to 4.0.7 (CVE-2014-3483) + main/ruby-railties: security upgrade to 4.0.7 (CVE-2014-3483) + main/ansible: security upgrade to 1.6.7 (CVE-2014-4966,CVE-2014-4967) + main/cups: security upgrade to 1.7.4 (CVE-2014-5029/5030/5031) + main/busybox-initscripts: mdev: fix default config to work with newer kern + main/dahdi-linux-grsec: rebuild against kernel 3.14.14-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.14-r0 + main/ipfw-grsec: rebuild against kernel 3.14.14-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.14-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.14-r0 + testing/spl-grsec: rebuild against kernel 3.14.14-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.14-r0 + main/linux-grsec: upgrade to 3.14.14 + main/cacti: security fix for CVE-2014-5025,CVE-2014-5026 + main/flashcache-grsec: move back from unmaintained and upgrade to 3.1.2 + main/linux-vanilla: upgrade to 3.14.14 + main/busybox: enable seamless xz + main/busybox: support to all unicode chars + main/busybox: fix top + main/awall: fix activation + ==== release 3.0.2 ==== + +Ted Trask (6): + main/acf-freeswitch: rebuild with working freeswitch + main/acf-freeswitch-vmail: rebuild with working freeswitch + main/acf-freeswitch-vmail: enable again + main/acf-kamailio: upgrade to 0.8.1 + main/acf-lib: upgrade to 0.6.3 + main/acf-weblog: upgrade to 0.10.2 + +Timo Teräs (19): + main/quagga: cherry-pick bgp fixes from 0.99.23-stable branch + main/gdnsd: upgrade to 1.11.3 + main/rsync: force IPv6 support on + main/asterisk: upgrade to 12.4.0 + main/asterisk: fix as-needed introduced underlinking + main/rt4: upgrade to 4.2.6 + main/rt4: remove dependency to testing (perl-graphviz) + main/perl-convert-color: upgrade to 0.11 + main/perl-test-number-delta: new aport + main/perl-module-pluggable: new aport + main/perl-cgi: new aport + main/aaudit: backport from edge/main + main/quagga: fix msghdr initializers + main/quagga: fix linux-ipv6 detection + main/musl: cherry-pick linker error reporting fix + main/musl: cherry-pick fixes from upstream git + main/musl: cherry-pick fixes, update alpine specific patches + main/musl: fix typo in ns_msg_getflag from previous commit + main/musl: fix getconf to print single values +</pre>
\ No newline at end of file diff --git a/posts/Alpine-3.0.3-released.md b/posts/Alpine-3.0.3-released.md new file mode 100644 index 0000000..a227be7 --- /dev/null +++ b/posts/Alpine-3.0.3-released.md @@ -0,0 +1,65 @@ +--- +title: 'Alpine 3.0.3 released' +date: 2014-08-11 +--- + +# Alpine 3.0.3 released +The Alpine Linux project is pleased to announce the immediate availability of version 3.0.3 of its Alpine Linux operating system. + +This is a bugfix release of the v3.0 musl based branch. This release is based on the 3.14.16 kernel which has some critical security fixes. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v3.0.3">git log</a> and <a href="http://bugs.alpinelinux.org/versions/86">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Bartłomiej Piotrowski (1): + main/nginx: upgrade to 1.6.1 + +Carlo Landmeter (1): + main/btrfs-progs: mdev compat + +Jeff Bilyk (1): + main/nss-pam-ldapd: moved from testing + +Leonardo Arena (3): + main/freeradius3: install dictionaries in subpkg-lib + main/zabbix: upgrade to 2.2.5 + main/linux-virt-grsec: upgrade to 3.14.16 + +Natanael Copa (20): + main/mkinitfs: fix typo for gfs2 and ocfs2 modules + main/asterisk: enable -dbg subpackage + main/ngircd: enable ipv6 + main/syslinux: upgrade to 6.03_pre19 + main/busybox: increase udhcpc's default discover retries + main/pcsc-lite: fix user creation script + main/openipmi: backport + main/zabbix: enable IPMI support + main/zabbix: enable odbc support + main/linux-grsec: upgrade to 3.14.16 + main/dahdi-linux-grsec: rebuild against kernel 3.14.16-r0 + main/enhanceio-grsec: rebuild against kernel 3.14.16-r0 + main/flashcache-grsec: rebuild against kernel 3.14.16-r0 + main/ipfw-grsec: rebuild against kernel 3.14.16-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.16-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.16-r0 + testing/spl-grsec: rebuild against kernel 3.14.16-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.16-r0 + main/linux-vanilla: upgrade to 3.14.16 + ==== release 3.0.3 ==== + +Timo Teräs (9): + main/fprobe-ulog: fix setre[ug]id usage + main/gdnsd: fix bug parsing corrupted djbdns files + main/gdnsd: upgrade to 1.11.4 + main/asterisk: do not use mutex initializers + main/asterisk: fix pbx_lua symbol exports + main/musl: fix ldconfig return value + main/asterisk: rebuild with fixed ldconfig + main/openssl: security ugprade to 1.0.1i (multiple CVE) + main/nfs-utils: upgrade to 1.3.1-rc3 and refresh musl patches + +stef (1): + main/pcsc-lite: fix segfault because too small musl stack +</pre>
\ No newline at end of file diff --git a/posts/Alpine-3.0.4-released.md b/posts/Alpine-3.0.4-released.md new file mode 100644 index 0000000..4e42c15 --- /dev/null +++ b/posts/Alpine-3.0.4-released.md @@ -0,0 +1,67 @@ +--- +title: 'Alpine 3.0.4 released' +date: 2014-08-26 +--- + +# Alpine 3.0.4 released +The Alpine Linux project is pleased to announce the immediate availability of version 3.0.4 of its Alpine Linux operating system. + +This is a bugfix release of the v3.0 musl based branch. This release is based on the 3.14.17 kernel which has some critical security fixes. + +The alpine-xen image is fixed and should now have a working hvmloader again. + +The full lists of changes can be found in the <a href="http://git.alpinelinux.org/cgit/aports/log/?h=v3.0.4">git log</a> and <a href="http://bugs.alpinelinux.org/versions/87">bug tracker</a>. + +<h3>Shortlog</h3> + +<pre> +Alan Messias Cordeiro de Lacerda (1): + main/postgresql fix unix_socket_directories get_config parameter + +Alex Dowad (1): + main/busybox-initscripts: avoid misleading error message from udhcp default.script + +Carlo Landmeter (1): + main/asterisk: enable mp3 and cdr_mysql + +Eivind Uggedal (1): + main/py-django: security upgrade to 1.6.6 (multiple CVE) + +Leonardo Arena (5): + main/phpldapadmin: force crypt to use SSHA512 algorithm + main/ltb-project-ssp: add option for algorythm selection for crypt hashes + main/freeradius3: fix openssl version check + main/owncloud: add missing depends for subpkgs + main/linux-virt-grsec: upgrade to 3.14.17 + +Natanael Copa (18): + main/enhanceio-*: remove + main/postgresql: upgrade to 9.3.5 + main/musl: fix handling of zero length names in dn_expand() + main/trac: fix install of files + main/cacti: fix from upstream for incomplete and incorrect input parsing + main/xen: fix hvmloader + main/xen: security fix for XSA-97 (CVE-2014-5146,CVE-2014-5149) + main/linux-grsec: upgrade to 3.10.17 + main/dahdi-linux-grsec: rebuild against kernel 3.14.17-r0 + main/flashcache-grsec: rebuild against kernel 3.14.17-r0 + main/ipfw-grsec: rebuild against kernel 3.14.17-r0 + main/xtables-addons-grsec: rebuild against kernel 3.14.17-r0 + testing/ipt-netflow-grsec: rebuild against kernel 3.14.17-r0 + testing/spl-grsec: rebuild against kernel 3.14.17-r0 + testing/virtualbox-additions-grsec: rebuild against kernel 3.14.17-r0 + main/linux-vanilla: upgrade to 3.14.17 + main/kbd: fix build with musl and upgrade to 2.0.2 + ==== release 3.0.4 ==== + +Nathan Angelacos (2): + main/kamailio version bump 4.1.5 + main/kamailio: apply upstream sca patch + +Timo Teräs (5): + main/musl: upgrade to 1.1.4 + main/musl: cherry-pick upstream git fixes + main/asterisk: various fixes and clean ups + main/asterisk: make mp3 addon patch off-tree + main/asterisk: upgrade to 12.5.0 +</pre>
\ No newline at end of file diff --git a/posts/Alpine-Linux-Xen-post.md b/posts/Alpine-Linux-Xen-post.md new file mode 100644 index 0000000..bf8fee8 --- /dev/null +++ b/posts/Alpine-Linux-Xen-post.md @@ -0,0 +1,7 @@ +--- +title: 'Alpine Linux Xen post' +date: 2013-03-18 +--- + +# Alpine Linux Xen post +Xen.org blog recently published an article regarding Xen and Alpine Linux. It's available at <a href="http://blog.xen.org/index.php/2013/03/04/alpine-linux-and-xen/">http://blog.xen.org/index.php/2013/03/04/alpine-linux-and-xen/</a>.
\ No newline at end of file diff --git a/posts/Alpine-Linux-forums.md b/posts/Alpine-Linux-forums.md new file mode 100644 index 0000000..572062a --- /dev/null +++ b/posts/Alpine-Linux-forums.md @@ -0,0 +1,14 @@ +--- +title: 'Alpine Linux forums' +date: 2013-06-20 +--- + +# Alpine Linux forums +We are recently receiving more and more support questions from users, but our infrastructure does not provide any place for them. +To provide an easy way for users to contact each other and Alpine Linux developers, we have setup Alpine Linux forum. + +Register an account on our alpinelinux.org website ([url=http://alpinelinux.org/user/register]here[/url]) and visit our [url=/forum]forum[/url] + +For development related questions, you are still advised to use our [url=http://lists.alpinelinux.org/]development mailing list[/url]. + +Happy posting!
\ No newline at end of file diff --git a/posts/Alpine-Linux-has-switched-to-musl-libc.md b/posts/Alpine-Linux-has-switched-to-musl-libc.md new file mode 100644 index 0000000..f54704b --- /dev/null +++ b/posts/Alpine-Linux-has-switched-to-musl-libc.md @@ -0,0 +1,36 @@ +--- +title: 'Alpine Linux has switched to musl libc' +date: 2014-04-09 +--- + +# Alpine Linux has switched to musl libc +I am happy to announce that our 'edge' branch is now using musl libc. + +Edge users you will have to do this to migrate: +<ol> +<li>Edit /etc/apk/repositories and make sure that you don't mix edge and any +stable branch (eg v2.x) +</li> +<li> +Install static apk-tools and busybox. This is a safety net in case +things goes wrong. +<code>apk add -U apk-tools-static busybox-static +</code> +</li> +<li> +Run a simulation. This will show what will happen: +<code>apk.static upgrade --no-self-upgrade -U -a --simulate +</code> +</li> +<li> +Perform the actual upgrade: +<code>apk.static upgrade --no-self-upgrade -U -a +</code> +</li> +<li> +Reboot. +</li> +</ol> +After this your system should be running musl. + +The uclibc edge repos are still available but as 'edge-uclibc' instead of 'edge'. diff --git a/posts/import-drupal.lua b/posts/import-drupal.lua new file mode 100644 index 0000000..5db259a --- /dev/null +++ b/posts/import-drupal.lua @@ -0,0 +1,42 @@ + +env = require('luasql.mysql').mysql() + +con = assert(env:connect("alpine-www-backup", 'www-backup', 'sYUsThNBGnPR6fmy', '192.168.122.13')) + +print (con) +cur = assert(con:execute([[ + +select + r.title as title, + r.timestamp as timestamp, + b.body_value as body +from + node_revision r, + node n, + field_revision_body b +where + n.vid=r.vid and n.type='news' and r.status=1 and r.vid=b.revision_id; + +]])) + +row = cur:fetch ({}, "a") +while row do + local fn = "posts/"..row.title:gsub("[ :]", "-")..".md" + local f = io.open(fn, "w") + f:write(("---\n".. + "title: '%s'\n".. + "date: %s\n".. + "---\n".. + "\n# %s\n"):format(row.title, + os.date("%Y-%m-%d", tonumber(row.timestamp)), + row.title)) + f:write(row.body) + f:close() +-- io.write(row.body) + row = cur:fetch ({}, "a") +end + +cur:close() +con:close() +env:close() + diff --git a/posts/index.md b/posts/index.md new file mode 100644 index 0000000..c690441 --- /dev/null +++ b/posts/index.md @@ -0,0 +1,14 @@ +--- +title: News archive +--- + +# News archive + +<table> + {{#posts/index}} + <tr> + <td>{{date}}</td> + <td><a href="{{html}}">{{title}}</a></td> + </tr> + {{/posts/index}} +</table> |