<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Evergreen BlogEvergreen Blog</title>
	<atom:link href="http://evergreen-ils.org/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://evergreen-ils.org/blog</link>
	<description>Official Blog for Evergreen open-source library software</description>
	<lastBuildDate>Thu, 18 Apr 2013 15:57:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>SECURITY RELEASES – Evergreen 2.3.6, 2.2.8, and 2.1.6</title>
		<link>http://evergreen-ils.org/blog/?p=1224</link>
		<comments>http://evergreen-ils.org/blog/?p=1224#comments</comments>
		<pubDate>Wed, 17 Apr 2013 19:28:36 +0000</pubDate>
		<dc:creator>Galen Charlton</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=1224</guid>
		<description><![CDATA[On behalf of the Evergreen contributors, the 2.3.x release maintainer (Bill Erickson), the 2.2.x release maintainer (Lebbeous Fogle-Weekley), and the 2.1.x release maintainer, (Dan Scott), we are pleased to announce the release of Evergreen 2.3.6, 2.2.8, and 2.1.6. Links to downloads and documentation can be found at http://evergreen-ils.org/downloads.php. The 2.3.6 and 2.2.8 releases also contains [...]]]></description>
				<content:encoded><![CDATA[<p>On behalf of the Evergreen contributors, the 2.3.x release maintainer (Bill Erickson), the 2.2.x release maintainer (Lebbeous Fogle-Weekley), and the 2.1.x release maintainer, (Dan Scott), we are pleased to announce the release of Evergreen 2.3.6, 2.2.8, and 2.1.6.</p>
<p>Links to downloads and documentation can be found at</p>
<p><a title="http://evergreen-ils.org/downloads.php" href="http://evergreen-ils.org/downloads.php">http://evergreen-ils.org/downloads.php</a>.</p>
<p>The 2.3.6 and 2.2.8 releases also contains bugfixes not related to security.</p>
<p>THESE RELEASES CONTAIN SECURITY UPDATES.  We strongly recommend that you upgrade as soon as possible.</p>
<ul>
<li>The pcrud, cstore, and rstore services are susceptible to an SQL injection attack.  Any user can potentially make arbitrary SQL run on the Evergreen database.</li>
</ul>
<p>More information about the security updates and other bugfixes can be found in the ChangeLogs:</p>
<ul>
<li><a href="/downloads/ChangeLog-2.3.5-2.3.6">2.3.6</a></li>
<li><a href="/downloads/ChangeLog-2.2.7-2.2.8">2.2.8</a></li>
<li><a href="/downloads/ChangeLog-2.1.5-2.1.6">2.1.6</a></li>
</ul>
<p>If you don’t wish to upgrade Evergreen outright to the latest version, sites running 2.1, 2.2, or 2.3 releases today can get the benefit of the security updates by following these steps:</p>
<ul>
<li>Download the <a href="/downloads/Evergreen-ILS-2.1.6.tar.gz">2.1.6</a>, <a href="/downloads/Evergreen-ILS-2.2.8.tar.gz">2.2.8</a>, or <a href="/downloads/Evergreen-ILS-2.3.6.tar.gz">2.3.6</a> release tarball; whichever belongs to the release series you&#8217;re currently running.</li>
<li>Extract the tarball.</li>
</ul>
<p><strong style="font-size: 12px;">Updating the C libs</strong><span style="font-size: 12px;"> </span></p>
<ol>
<li>In the source directory, run <code>./configure --prefix=/openils --sysconf=/openils/conf &amp;&amp; make</code> to build the libraries</li>
<li>Install the chrpath tool (<code>aptitude install chrpath</code> on Debian / Ubuntu systems)</li>
<li>Run <code>chrpath -d Open-ILS/src/c-apps/.libs/oils_cstore.so</code> to enable the library to link to the appropriate location.</li>
<li>Copy your existing oils_cstore.so library to a safe location; for example, <code>cp /openils/lib/oils_cstore.so /openils/oils_cstore.so.20121026</code></li>
<li>Copy your new oils_cstore.so library into place: <code>cp Open-ILS/src/c-apps/.libs/oils_cstore.so /openils/lib/</code></li>
<li>VERY IMPORTANT: Repeat the preceding three steps substituting &#8220;pcrud&#8221; everywhere &#8220;cstore&#8221; was mentioned. Repeat them again substituting &#8220;rstore&#8221; everywhere &#8220;cstore&#8221; wass mentioned.</li>
<li>As the root user, run <code>ldconfig</code> to refresh your dynamic linking cache.</li>
</ol>
<p>To perform the chrpath and copy actions, you can run the following commands as the <code>root</code> user:</p>
<pre>for i in cstore pcrud rstore
  do chrpath -d Open-ILS/src/c-apps/.libs/oils_$i.so
  cp /openils/lib/oils_$i.so /openils/lib/oils_$i.so.20130417
  cp Open-ILS/src/c-apps/.libs/oils_$i.so /openils/lib/
done
ldconfig</pre>
<p><strong>Note</strong> that <code>/openils/lib/oils_cstore.so</code> is normally a symbolic link to <code>oils_cstore.so.2.0.0</code>. When applying this procedure, make sure that the final result has all versions of the file name <code>oils_cstore.so[.*]</code> pointing to the same shared object. The same layout is true for pcrud and rstore.</p>
<p>Finally, restart all Evergreen services and Apache.</p>
<p>Please also note that these hot-fix instructions assume that you have installed the previous security releases.  If you have not, you should instead follow the instructions in the <a href="/blog/?p=828">previous security release announcement</a> using the tarballs being released today, including installing the latest stable version of OpenSRF (2.1.2).</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=1224</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Call for features for the Evergreen 2.5 roadmap</title>
		<link>http://evergreen-ils.org/blog/?p=1002</link>
		<comments>http://evergreen-ils.org/blog/?p=1002#comments</comments>
		<pubDate>Mon, 15 Apr 2013 15:15:36 +0000</pubDate>
		<dc:creator>Galen Charlton</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=1002</guid>
		<description><![CDATA[As we mentioned during the developers&#8217; update at the Evergreen Conference, for Evergreen 2.5 we will be reviving the roadmap.  The roadmap will serve as a list of major features that are expected to be released in 2.5. Since 2.5 is due to be released in September, please add your feature to the roadmap only [...]]]></description>
				<content:encoded><![CDATA[<p>As we mentioned during the <a href="http://eg2013.evergreen-ils.org/wp-uploads/2013/01/eg13_developers_update_charlton.html">developers&#8217; update</a> at the Evergreen Conference, for Evergreen 2.5 we will be reviving the roadmap.  The roadmap will serve as a list of major features that are expected to be released in 2.5.</p>
<p>Since 2.5 is due to be released in September, please add your feature to the roadmap only if you expect that it will be code-complete and publicly available for review by early August at the latest.</p>
<p>For now, the roadmap will live on the wiki at</p>
<p><a href="http://evergreen-ils.org/dokuwiki/doku.php?id=faqs:evergreen_roadmap:2.5">http://evergreen-ils.org/dokuwiki/doku.php?id=faqs:evergreen_roadmap:2.5</a></p>
<p>Please add only features that you are <strong>committed</strong> to work on or that you are <strong>committed</strong> to funding very soon &#8212; the roadmap isn&#8217;t meant to be a wishlist or a way of seeking co-sponsorship for potential projects.</p>
<p>To request an account on the wiki, please email <code>docs AT evergreen-ils.org</code>.  Although the roadmap will be continually updated during the 2.5 release cycle, please consider May 1st as a deadline for the first cut.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=1002</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Olly olly oxen free: users of Evergreen APIs, stand up and be counted</title>
		<link>http://evergreen-ils.org/blog/?p=966</link>
		<comments>http://evergreen-ils.org/blog/?p=966#comments</comments>
		<pubDate>Wed, 03 Apr 2013 12:00:36 +0000</pubDate>
		<dc:creator>Galen Charlton</dc:creator>
				<category><![CDATA[Evergreen Community]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=966</guid>
		<description><![CDATA[Does your project, service, or product interact with Evergreen in some automated fashion?  If so, we&#8217;d like to hear from you. I&#8217;m using the phrase &#8220;automated fashion&#8221; very broadly.  There are many ways to receive data from an Evergreen system, update data in an Evergreen database, or make transactions happen.  A few of these ways [...]]]></description>
				<content:encoded><![CDATA[<p>Does your project, service, or product interact with Evergreen in some automated fashion?  If so, we&#8217;d like to hear from you.</p>
<p>I&#8217;m using the phrase &#8220;automated fashion&#8221; very broadly.  There are many ways to receive data from an Evergreen system, update data in an Evergreen database, or make transactions happen.  A few of these ways include:</p>
<ul>
<li><span style="line-height: 16px;">XML-RPC calls to invoke Evergreen service methods</span></li>
<li>SIP2 to perform patron and circulation requests</li>
<li>Z39.50, unAPI, and OpenSearch to retrieve catalog data</li>
<li>MARC exports and imports</li>
<li>Screen-scraping (although if you&#8217;re screen-scraping Evergreen, we may be able to suggest a better way to do it)</li>
<li>Interacting with the Evergreen staff client</li>
<li>Direct database access</li>
<li>And others</li>
</ul>
<p>Some of the things we&#8217;d like to know include:</p>
<ul>
<li>The name of your service or product</li>
<li>What it does for an Evergreen library</li>
<li><span style="line-height: 16px;">How it is accessing Evergreen</span></li>
<li>Whether there are specific APIs or entry points that your application depends on</li>
<li>If there are things that Evergreen could be doing to make your life easier</li>
</ul>
<p>We want to hear from everybody, whether you are a consortium that has integrated Evergreen with other software, an Evergreen support group,  a vendor providing products or services to libraries, or a member of a free software project whose software talks with Evergreen.  If you work for an Evergreen library and know that Evergreen works with another service, we want to hear from you too, even if you don&#8217;t know <em>how</em> Evergreen is doing the talking.</p>
<p>Why do we want to know?  Our reasons include:</p>
<ul>
<li><span style="line-height: 16px;">Finding out which entry points we should be particularly careful about changing as Evergreen gets enhanced.</span></li>
<li>See if there are things we could be doing better to encourage more people and applications to participate in the Evergreen ecosystem.</li>
<li>(Maybe) putting together a list of third-party services that interact with Evergreen.</li>
</ul>
<p>To respond, please comment on this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=966</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Heads-up: PostgreSQL security release coming on April 4, 2013</title>
		<link>http://evergreen-ils.org/blog/?p=960</link>
		<comments>http://evergreen-ils.org/blog/?p=960#comments</comments>
		<pubDate>Fri, 29 Mar 2013 23:11:39 +0000</pubDate>
		<dc:creator>Dan Scott</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=960</guid>
		<description><![CDATA[As Evergreen is built with PostgreSQL at the core, the following PostgreSQL news announcement should be of concern to Evergreen administrators: Upcoming PostgreSQL Security Release: April 4, 2013 Posted on 2013-03-28 The PostgreSQL Global Development Group will be releasing a security update for all supported versions on Thursday April 4th, 2013. This release will include [...]]]></description>
				<content:encoded><![CDATA[<p>As Evergreen is built with PostgreSQL at the core, the following <a href="http://www.postgresql.org/about/news/1454/">PostgreSQL news announcement</a> should be of concern to Evergreen administrators:</p>
<blockquote><p>
<strong>Upcoming PostgreSQL Security Release: April 4, 2013</strong><br />
Posted on 2013-03-28<br />
<br />
The PostgreSQL Global Development Group will be releasing a security update for all supported versions on Thursday April 4th, 2013. This release will include a fix for a high-exposure security vulnerability. All users are strongly urged to apply the update as soon as it is available.<br />
<br />
We are providing this advance notice so that users may schedule an update of their production systems on or shortly after April 4th.<br />
<br />
As always, update releases only require installation of packages and a database system restart. You do not need to dump/restore or use pg_upgrade for this update release.
</p></blockquote>
<p>Please be prepared to update to the security release. While a typical Evergreen configuration does not expose PostgreSQL to public access, the nature of this announcement is unusual for PostgreSQL and suggests that the vulnerability may be particularly concerning.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=960</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Evergreen 2.2.7 released</title>
		<link>http://evergreen-ils.org/blog/?p=956</link>
		<comments>http://evergreen-ils.org/blog/?p=956#comments</comments>
		<pubDate>Fri, 22 Mar 2013 14:54:08 +0000</pubDate>
		<dc:creator>Lebbeous Fogle-Weekley</dc:creator>
				<category><![CDATA[Development Update]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=956</guid>
		<description><![CDATA[Hi all, Evergreen 2.2.7 has been released.  This release contains a number of bugfixes since the last release back in February.  See this page for links to the source code, staff client, release notes, changelog and more. The bugfixes covered in this release address (in no particular order) SIP interoperability; added content from Syndetics; user [...]]]></description>
				<content:encoded><![CDATA[<p>Hi all,</p>
<p>Evergreen 2.2.7 has been released.  This release contains a number of bugfixes since the last release back in February.  See <a href="http://evergreen-ils.org/downloads.php" title="Evergreen Downloads Page">this page</a> for links to the source code, staff client, release notes, changelog and more. </p>
<p>The bugfixes covered in this release address (in no particular order) SIP interoperability; added content from Syndetics; user interface issues in the staff client, the OPAC, and the staff translations interface; TCN maintenance; serials; patron retrieval by inactive barcode; hold shelf; authorities management; Z39.50 searches; MARC export; the XML-RPC API; and dependencies for installing Evergreen on the most recent Long-Term Support release of Ubuntu.</p>
<p>Thanks as always to all the contributors of the Evergreen community!</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=956</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evergreen 2.4 Beta1</title>
		<link>http://evergreen-ils.org/blog/?p=948</link>
		<comments>http://evergreen-ils.org/blog/?p=948#comments</comments>
		<pubDate>Tue, 19 Mar 2013 20:29:50 +0000</pubDate>
		<dc:creator>miker</dc:creator>
				<category><![CDATA[Development Update]]></category>
		<category><![CDATA[OpenSRF]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=948</guid>
		<description><![CDATA[The first (and likely only, barring major bugs) beta release of Evergreen 2.4 is now available for download and testing.  This marks the official feature-freeze point for the 2.4 series of Evergreen.  Notable features include: Significant TPAC enhancements Streamlined and enhanced Acquisitions functionality Expanded options for the configuration of Holds and Circulations The full set [...]]]></description>
				<content:encoded><![CDATA[<p>The first (and likely only, barring major bugs) beta release of Evergreen 2.4 is now available for <a title="download" href="http://evergreen-ils.org/downloads.php" target="_blank">download</a> and testing.  This marks the official feature-freeze point for the 2.4 series of Evergreen.  Notable features include:</p>
<ul>
<li><span style="line-height: 16px;">Significant TPAC enhancements</span></li>
<li>Streamlined and enhanced Acquisitions functionality</li>
<li>Expanded options for the configuration of Holds and Circulations</li>
</ul>
<p>The full set of upcoming features are listed in the <a title="release notes" href="http://evergreen-ils.org/documentation/previews/RELEASE_NOTES_2_4_beta1.html" target="_blank">release notes</a>, and the complete list  of source code changes since the release of 2.3 is available in the git <a title="change log" href="http://evergreen-ils.org/downloads/previews/ChangeLog-2.3-2.4-beta1" target="_blank">change log</a>.</p>
<p>The <a title="OpenSRF download" href="http://evergreen-ils.org/opensrf.php" target="_blank">OpenSRF 2.2.0</a> or later is recommended for use with Evergreen 2.4.  OpenSRF 2.2 is in alpha now, with release expected at approximately the same time as Evergreen 2.4.0.  All testers of the Evergreen 2.4 beta are encouraged to test with OpenSRF 2.2.0, as there are significant performance enhancements and bug fixes associated with Evergreen&#8217;s new features.</p>
<p>Thanks to all who helped make this release possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=948</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenSRF 2.2.0-alpha released</title>
		<link>http://evergreen-ils.org/blog/?p=938</link>
		<comments>http://evergreen-ils.org/blog/?p=938#comments</comments>
		<pubDate>Tue, 19 Mar 2013 15:08:48 +0000</pubDate>
		<dc:creator>Galen Charlton</dc:creator>
				<category><![CDATA[OpenSRF]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=938</guid>
		<description><![CDATA[OpenSRF 2.2.0-alpha is now available for download and testing.  This is a relatively small enhancement and bugfix release, and includes the following major changes: Support for Apache 2.4, Debian Wheezy, and Fedora 18. Elimination of CPU spikes caused by use of the MultiSession module.  This is particularly relevant for Evergreen as TPac uses MultiSession when [...]]]></description>
				<content:encoded><![CDATA[<p>OpenSRF 2.2.0-alpha is now available for <a href="http://evergreen-ils.org/opensrf.php">download</a> and testing.  This is a relatively small enhancement and bugfix release, and includes the following major changes:</p>
<ol>
<li><span style="line-height: 16px;">Support for Apache 2.4, Debian Wheezy, and Fedora 18.</span></li>
<li>Elimination of CPU spikes caused by use of the MultiSession module.  This is particularly relevant for Evergreen as TPac uses MultiSession when fetching bib records for display in search results.</li>
<li>Support for graceful reload of Perl services via SIGHUP, which allows the log level to be changed on the fly.  This can also be used to politely clean up after memory leaks.</li>
</ol>
<p>For a complete list of the changes, please consult the <a href="http://evergreen-ils.org/documentation/release/OpenSRF/RELEASE_NOTES_2_2_0_alpha.html">release notes</a> and <a href="http://evergreen-ils.org/downloads/previews/OpenSRF-ChangeLog-2.2.0-alpha">change log</a>.</p>
<p>Links to the installation tarball, release notes, and installation instructions can be found on the <a href="http://evergreen-ils.org/opensrf.php">OpenSRF downloads page</a>.</p>
<p>We are considering having 2.2.0 be the recommended OpenSRF version for Evergreen 2.4.  Consequently, testers of the Evergreen 2.4 beta are encouraged to test the OpenSRF alpha as well.  In addition, because of the changes to MultiSession, we are particularly interested in test results from a variety of platforms, particularly ones that use virtualization.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=938</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2.4-alpha1 is cut!</title>
		<link>http://evergreen-ils.org/blog/?p=925</link>
		<comments>http://evergreen-ils.org/blog/?p=925#comments</comments>
		<pubDate>Mon, 04 Mar 2013 20:39:05 +0000</pubDate>
		<dc:creator>miker</dc:creator>
				<category><![CDATA[Development Update]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=925</guid>
		<description><![CDATA[Many teeth were gnashed and garments rent, but (as of last Friday) there is now available, for your downloading pleasure, the first alpha release of Evergreen 2.4.  The web site will be updated shortly, and when it is you will see a new column for 2.4 on the downloads page at http://evergreen-ils.org/downloads.php. In the mean time [...]]]></description>
				<content:encoded><![CDATA[<p>Many teeth were gnashed and garments rent, but (as of last Friday) there is now available, for your downloading pleasure, the first alpha release of Evergreen 2.4.  The web site will be updated shortly, and when it is you will see a new column for 2.4 on the downloads page at <a href="http://evergreen-ils.org/downloads.php" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads.php</a>.</p>
<p>In the mean time the important files can be had from the following locations:</p>
<div><a href="http://evergreen-ils.org/downloads/previews/ChangeLog-2.3-2.4-alpha1" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/ChangeLog-<wbr></wbr>2.3-2.4-alpha1</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/Evergreen-ILS-2.4.alpha1.tar.gz" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/Evergreen-<wbr></wbr>ILS-2.4.alpha1.tar.gz</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/Evergreen-ILS-2.4.alpha1.tar.gz.md5" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/Evergreen-<wbr></wbr>ILS-2.4.alpha1.tar.gz.md5</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-setup-2.4.alpha1.exe" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>setup-2.4.alpha1.exe</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-setup-2.4.alpha1.exe.md5" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>setup-2.4.alpha1.exe.md5</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-client-2.4.alpha1_i686.tar.bz2" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>client-2.4.alpha1_i686.tar.bz2</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-client-2.4.alpha1_i686.tar.bz2.md5" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>client-2.4.alpha1_i686.tar.<wbr></wbr>bz2.md5</a></div>
<div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-client-2.4.alpha1_x86_64.tar.bz2" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>client-2.4.alpha1_x86_64.tar.<wbr></wbr>bz2</a></div>
<div><a href="http://evergreen-ils.org/downloads/previews/evergreen-client-2.4.alpha1_x86_64.tar.bz2.md5" target="_blank">http://evergreen-ils.org/<wbr></wbr>downloads/previews/evergreen-<wbr></wbr>client-2.4.alpha1_x86_64.tar.<wbr></wbr>bz2.md5</a></div>
</div>
<p>&nbsp;</p>
<p>Thanks to everyone who has worked on this release.  There is a lot of great stuff in here.</p>
<p>Thanks also go specifically to Ben Shum, who put together an alpha version of the 2.4 release notes.  I&#8217;m not incorporating it into the alpha branch, since features are still being added until beta, but if you want to see what is in the alpha1 cut (and has had at least some simple release notes treatment) you can find that at: <a href="http://git.evergreen-ils.org/?p=working/Evergreen.git;a=blob_plain;f=docs/RELEASE_NOTES_2_4.txt;hb=9abccb6caaff8d7f93b1f55b7732669bb6aaefd2" target="_blank">http://git.evergreen-ils.<wbr></wbr>org/?p=working/Evergreen.git;<wbr></wbr>a=blob_plain;f=docs/RELEASE_<wbr></wbr>NOTES_2_4.txt;hb=<wbr></wbr>9abccb6caaff8d7f93b1f55b773266<wbr></wbr>9bb6aaefd2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=925</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evergreen 2.2.6 released</title>
		<link>http://evergreen-ils.org/blog/?p=920</link>
		<comments>http://evergreen-ils.org/blog/?p=920#comments</comments>
		<pubDate>Fri, 22 Feb 2013 20:18:56 +0000</pubDate>
		<dc:creator>Lebbeous Fogle-Weekley</dc:creator>
				<category><![CDATA[Development Update]]></category>
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=920</guid>
		<description><![CDATA[Hi all, Evergreen 2.2.6 has been released. This release contains a number of bugfixes since the last release back in January. See this page for links to the source code, staff client, release notes, changelog and more: http://evergreen-ils.org/downloads.php The bugfixes covered in this release address (in no particular order) serials, the TPAC, vandelay (MARC record [...]]]></description>
				<content:encoded><![CDATA[<p>Hi all,</p>
<p>Evergreen 2.2.6 has been released.  This release contains<br />
a number of bugfixes since the last release back in January.  See<br />
<a href="http://evergreen-ils.org/downloads.php" title="Evergreen Downloads">this page</a> for links to the source code, staff client, release notes,<br />
changelog and more: http://evergreen-ils.org/downloads.php</p>
<p>The bugfixes covered in this release address (in no particular order)<br />
serials, the TPAC, vandelay (MARC record import/export), hold rules,<br />
documentation, the staff client, and more.</p>
<p>Thanks as always to all the contributors of the Evergreen community!</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=920</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call for Nominations for Evergreen Oversight Board</title>
		<link>http://evergreen-ils.org/blog/?p=910</link>
		<comments>http://evergreen-ils.org/blog/?p=910#comments</comments>
		<pubDate>Fri, 25 Jan 2013 20:55:00 +0000</pubDate>
		<dc:creator>Kathy Lussier</dc:creator>
				<category><![CDATA[Governance]]></category>

		<guid isPermaLink="false">http://evergreen-ils.org/blog/?p=910</guid>
		<description><![CDATA[The Evergreen Oversight Board is seeking nominations to fill four seats on the Board for a three-year term. Please see http://www.evergreen-ils.org/dokuwiki/doku.php?id=governance:structure  for further information on the Oversight Board responsibilities and current roster. The terms will begin after the 2013 Evergreen International Conference. If you are interested in serving or would like to nominate someone to [...]]]></description>
				<content:encoded><![CDATA[<p>The Evergreen Oversight Board is seeking nominations to fill four seats on the Board for a three-year term. Please see <a href="http://www.evergreen-ils.org/dokuwiki/doku.php?id=governance:structure">http://www.evergreen-ils.org/dokuwiki/doku.php?id=governance:structure</a>  for further information on the Oversight Board responsibilities and current roster.</p>
<p>The terms will begin after the 2013 Evergreen International Conference.</p>
<p>If you are interested in serving or would like to nominate someone to serve, please send an email to Kathy Lussier at klussier@masslnc.org or to Steve Wills at swills@beyond-print.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://evergreen-ils.org/blog/?feed=rss2&#038;p=910</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
