<?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"
	>

<channel>
	<title>LiquiBase</title>
	<atom:link href="http://blog.liquibase.org/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.liquibase.org</link>
	<description>Database Change Management: The Blog</description>
	<pubDate>Thu, 10 Jul 2008 22:20:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Martin Fowler on Incremental Data Migration</title>
		<link>http://blog.liquibase.org/2008/07/martin-fowler-on-incremental-data-migration.html</link>
		<comments>http://blog.liquibase.org/2008/07/martin-fowler-on-incremental-data-migration.html#comments</comments>
		<pubDate>Thu, 10 Jul 2008 22:20:20 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Refactoring]]></category>

		<guid isPermaLink="false">http://blog.liquibase.org/?p=49</guid>
		<description><![CDATA[Martin Fowler makes good points in his Incremental Migration Bliki post. Data migration is easy to push off or forget, and can often kill an otherwise great release&#8211;especially when valuable historical data gets lost due to a bad script.
I think reason many people put off data migration scripts is because they mistakenly think that they [...]]]></description>
			<content:encoded><![CDATA[<p>Martin Fowler makes good points in his <a href="http://martinfowler.com/bliki/IncrementalMigration.html" target="_blank">Incremental Migration</a> Bliki post. Data migration is easy to push off or forget, and can often kill an otherwise great release&#8211;especially when valuable historical data gets lost due to a bad script.</p>
<p>I think reason many people put off data migration scripts is because they mistakenly think that they are for release day only. In reality, however, data migration is needed throughout the development process including updating developer databases and migrating integration test data.</p>
<p>Doing your data migrations incrementally and appending to your database change log on every refactoring will help you catch migration logic errors early and keep everyone&#8217;s databases in sync.</p>
<p>To keep up with your database migration scripts, you need to use the update your test/code/test cycle to:</p>
<ol>
<li>Write Test</li>
<li>Run Test</li>
<li>Code Change</li>
<li style="font-weight: bold;">Append database changes to <a href="http://www.liquibase.org/manual/databasechangelog" target="_blank">change log</a></li>
<li style="font-weight: bold;">Run <strong class="highlighted0">LiquiBase</strong> to update database</li>
<li>Run Test, See Green</li>
</ol>
<p>Making no database changes outside of your change log script and dev cycle will ensure that no changes get forgotten and that there are no differences between what happened on the developer&#8217;s database and what happens on other developer&#8217;s and production databases.</p>
<p>To integrate <strong class="highlighted0">LiquiBase</strong> into your build process, there are <a href="http://www.liquibase.org/manual/ant" target="_blank">Ant</a>, and <a href="http://www.liquibase.org/manual/maven" target="_blank">Maven</a> front-ends available. This will allow you to migrate your integration tests data sets before executing them and allow you to find errors in your database update logic with each run.<img src="http://feeds.feedburner.com/%7Er/liquibase/%7E4/329863436" alt="" width="1" height="1" /></p>
<p>[Note: This post was re-published due to Blog hosting change]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/07/martin-fowler-on-incremental-data-migration.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Blog Hosting</title>
		<link>http://blog.liquibase.org/2008/07/new-blog-hosting.html</link>
		<comments>http://blog.liquibase.org/2008/07/new-blog-hosting.html#comments</comments>
		<pubDate>Wed, 02 Jul 2008 18:07:46 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.liquibase.org/?p=48</guid>
		<description><![CDATA[We have moved our blog to a new hosting provider and to WordPress from Blogger.
Please let us know if you have any issues or if any RSS feeds don&#8217;t transfer correctly.
]]></description>
			<content:encoded><![CDATA[<p>We have moved our blog to a new hosting provider and to WordPress from Blogger.</p>
<p>Please let us know if you have any issues or if any RSS feeds don&#8217;t transfer correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/07/new-blog-hosting.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase 1.7.0 Released</title>
		<link>http://blog.liquibase.org/2008/06/liquibase-170-released.html</link>
		<comments>http://blog.liquibase.org/2008/06/liquibase-170-released.html#comments</comments>
		<pubDate>Wed, 25 Jun 2008 16:17:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/06/25/liquibase-170-released/</guid>
		<description><![CDATA[It is LiquiBase 1.0&#8217;s first birthday, but you get the gift: LiquiBase 1.7.0 is now available.
Major changes include:

Added loadData change which allows importing of data from CSV files
Added support for changelog parameters for more dynamic and flexible change logs
Allow preconditions in changeSet tags to act as sanity checks during a database update
Can export data with [...]]]></description>
			<content:encoded><![CDATA[<p>It is LiquiBase 1.0&#8217;s first birthday, but you get the gift: LiquiBase 1.7.0 is now available.</p>
<p>Major changes include:
<ul>
<li>Added <a href="http://www.liquibase.org/manual/load_data">loadData change</a> which allows importing of data from CSV files</li>
<li>Added support for <a href="http://www.liquibase.org/manual/changelog_parameters">changelog parameters</a> for more dynamic and flexible change logs</li>
<li>Allow <a href="http://www.liquibase.org/manual/preconditions">preconditions</a> in changeSet tags to act as sanity checks during a database update</li>
<li>Can export data with <a href="http://www.liquibase.org/manual/generating_changelogs">generateChangeLog</a></li>
<li>Added markNextChangeSetRan command</li>
<li>Added validCheckSum tag to <a href="http://www.liquibase.org/manual/changeset">changeSet</a></li>
<li>Can use any refactoring tags or reference previous changeSets inside a <a href="http://www.liquibase.org/manual/changeset#rollback_tag">rollback tag</a></li>
<li>Allow <a href="http://www.liquibase.org/manual/preconditions">custom preconditions</a></li>
<li>RowMapper interface is now public</li>
<li>Misc bug fixes</li>
</ul>
<p>The core library can be downloaded from <a href="http://www.liquibase.org/download">http://www.liquibase.org/download</a> while the Maven, Grails, and IntelliJ plug-ins can be installed from their respective plug-in managers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/06/liquibase-170-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase 1.6.1 Released</title>
		<link>http://blog.liquibase.org/2008/04/liquibase-161-released.html</link>
		<comments>http://blog.liquibase.org/2008/04/liquibase-161-released.html#comments</comments>
		<pubDate>Wed, 23 Apr 2008 21:55:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<category><![CDATA[Grails]]></category>

		<category><![CDATA[IntelliJ]]></category>

		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/04/23/liquibase-161-released/</guid>
		<description><![CDATA[LiquiBase 1.6.1 has been released. 
This is primarily a bug fix release, but also includes a release of the 1.6 version to the Maven (still propagating), Grails, and IntelliJ repositories.  
Download LiquiBase 1.6.1 from: http://www.liquibase.org/download
]]></description>
			<content:encoded><![CDATA[<p>LiquiBase 1.6.1 has been released. </p>
<p>This is primarily a bug fix release, but also includes a release of the 1.6 version to the Maven (still propagating), Grails, and IntelliJ repositories.  </p>
<p>Download LiquiBase 1.6.1 from: http://www.liquibase.org/download</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/04/liquibase-161-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase 1.6.0 Released with Hiberate Support</title>
		<link>http://blog.liquibase.org/2008/03/liquibase-160-released-with-hiberate-support.html</link>
		<comments>http://blog.liquibase.org/2008/03/liquibase-160-released-with-hiberate-support.html#comments</comments>
		<pubDate>Thu, 27 Mar 2008 21:18:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/03/27/liquibase-160-released-with-hiberate-support/</guid>
		<description><![CDATA[The LiquiBase team is proud to announce the 1.6.0 LiquiBase Core release. 
This release focuses primarily on Hibernate integration which allows you to use the diffChangeLog functionality available with the command line and Ant to automatically generate LiquiBase change sets based on new Hibernate mapping information.  
This functionality is similar to what is offered [...]]]></description>
			<content:encoded><![CDATA[<p>The LiquiBase team is proud to announce the 1.6.0 LiquiBase Core release. </p>
<p>This release focuses primarily on Hibernate integration which allows you to use the <a href="http://www.liquibase.org/manual/diff">diffChangeLog</a> functionality available with the command line and Ant to automatically generate LiquiBase change sets based on new Hibernate mapping information.  </p>
<p>This functionality is similar to what is offered with hbm2ddl, but with the added ability to control and modify the changes before they are applied. For more information, see <a href="http://www.liquibase.org/manual/hibernate">http://www.liquibase.org/manual/hibernate</a> </p>
<p>Additional functionality includes a new &#8220;<a href="http://www.liquibase.org/manual/tag_database">tagDatabase</a>&#8221; tag, a &#8220;primaryKeyName&#8221; attribute on the column tag, as well as many bug fixes. </p>
<p>NOTE: Due to a bug in the change set md5 checksum generation in pre-1.6 releases, existing md5sum information needs to be cleared out of the databasechagelog table before running 1.6 for the first time. This can be done by running &#8220;<a href="http://www.liquibase.org/manual/command_line">liquibase clearCheckSums</a>&#8221; or by running &#8220;UPDATE DATABASECHANGELOG SET MD5SUM=NULL&#8221; </p>
<p>Upgrading is simply a matter of replacing the liquibase.jar file. To take advantage of newer change log features, change your XSD declaration to: <br />
<blockquote>&lt;databasechangelog xmlns=&#8221;http://www.liquibase.org/xml/ns/dbchangelog/1.6&#8243; <br />xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; <br />schemalocation=&#8221;http://www.liquibase.org/xml/ns/dbchangelog/1.6 <br />http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.6.xsd&#8221;&gt; </p></blockquote>
<p>LiquiBase 1.6 can be downloaded from <a href="http://www.liquibase.org/download">http://www.liquibase.org/download</a> and, as always, let us know if you have any questions or issues. </p>
<p>The <a href="http://www.liquibase.org/manual/maven">Maven</a> and <a href="http://www.liquibase.org/manual/grails">Grails</a> plug-ins will be updated over the next week.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/03/liquibase-160-released-with-hiberate-support.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase 1.5.2 Released</title>
		<link>http://blog.liquibase.org/2008/02/liquibase-152-released.html</link>
		<comments>http://blog.liquibase.org/2008/02/liquibase-152-released.html#comments</comments>
		<pubDate>Thu, 07 Feb 2008 19:38:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/02/07/liquibase-152-released/</guid>
		<description><![CDATA[LiquiBase 1.5.2 has been released. 
Changes include:

Fixed bug with runOnChange and MD5sum check
Handles generating changelog for tables with composite primary keys
Other minor bug fixes

The LiquiBase core library can be downloaded via http://www.liquibase.org/download.  
The Maven, Grails, and IntelliJ plug-ins have been updated and can be downloaded via their respective plug-in manager.
]]></description>
			<content:encoded><![CDATA[<p>LiquiBase 1.5.2 has been released. </p>
<p>Changes include:
<ul>
<li>Fixed bug with runOnChange and MD5sum check</li>
<li>Handles generating changelog for tables with composite primary keys</li>
<li>Other minor bug fixes</li>
</ul>
<p>The LiquiBase core library can be downloaded via <a href="http://www.liquibase.org/download">http://www.liquibase.org/download</a>.  </p>
<p>The Maven, Grails, and IntelliJ plug-ins have been updated and can be downloaded via their respective plug-in manager.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/02/liquibase-152-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Why Aren&#8217;t Databases Version Controlled?</title>
		<link>http://blog.liquibase.org/2008/02/why-arent-databases-version-controlled.html</link>
		<comments>http://blog.liquibase.org/2008/02/why-arent-databases-version-controlled.html#comments</comments>
		<pubDate>Mon, 04 Feb 2008 21:24:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/02/04/why-arent-databases-version-controlled/</guid>
		<description><![CDATA[There was a great post the other day on Coding Horror titled &#8220;Get Your Database Under Version Control&#8220;.  It references a good series of posts by K. Scott Allen on  database version control, but also makes the point that &#8220;When it comes to version control, the database is often a second or even [...]]]></description>
			<content:encoded><![CDATA[<p>There was a great post the other day on Coding Horror titled &#8220;<a href="http://www.codinghorror.com/blog/archives/001050.html">Get Your Database Under Version Control</a>&#8220;.  It references a good <a href="http://odetocode.com/Blogs/scott/archive/2008/01/30/11702.aspx">series of posts by K. Scott Allen</a> on  database version control, but also makes the point that <span style="font-style:italic;">&#8220;When it comes to version control, the database is often a second or even third-class citizen.&#8221;</span></p>
<p>I have noticed this in the past as well, and have wondered why?</p>
<p><span style="font-weight:bold;">Lack of tools?</span><br />Subversion, CVS, RCS and others have been around for years, but when I came the the realization that the database must be version controlled I could find no tools that fit my need and so created <a href="http://www.liquibase.org/">LiquiBase</a>.   I think lack of tools is a symptom of the problem rather than a cause, however.  Developers have never been a group to sit around waiting for a tool to solve a pressing need they see.</p>
<p><span style="font-weight:bold;">DBA Overlords?</span><br />In some organization changes to the database must go through a database change process managed by DBAs.   The fact that the database changes are managed by an external group could create a &#8220;not our problem&#8221; situation where the developers depend on the DBAs to track changes.  Again, I don&#8217;t see this as a reason because the majority of projects do not have such a process in place and so wouldn&#8217;t be depending on it.</p>
<p><span style="font-weight:bold;">Only Now A Big Problem?<br /></span>The answer that makes most sense to me is that database versioning is a relatively new problem.   Code changes <span style="font-weight:bold;">need</span> to  be propagated to every developer on a team quickly and reliably and therefore automated tools like Subversion and CVS have been around for a long time and no one would ever consider a group project without them.  Most developers would not even consider a solo project without them.</p>
<p>Databases, on the other hand, do not change as often and so manual and error-ridden processes have worked well enough in the past.  As databases have become more and more central to projects of all types the old manual database update scripts are showing their limitations. </p>
<p>I think the final straw in the ad-hoc database management schemes has come from the growth of agile processes.  Pre-agile, even smaller projects would  often design the database up-front and changes to it could be managed in a piecemeal fashion throughout the project.  As agile does away with as much of the up-front design as possible, the number of database changes introduced throughout a project increases dramatically and a way to quickly, reliably, and automatically apply changes becomes a necessity. </p>
<p>I see the existing database versioning tools like <a href="http://www.liquibase.org/">LiquiBase</a>, <a href="http://www.dbdeploy.com/">DBDeploy</a>, and <a href="http://api.rubyonrails.org/classes/ActiveRecord/Migration.html">ActiveRecord:Migration</a> as the <a href="http://en.wikipedia.org/wiki/Revision_Control_System">RCS</a>  of database versioning: they are a great start, but there is a lot of ground left to cover.  Recent version of LiquiBase have added features such as <a href="http://www.liquibase.org/manual/rollback">database change rollback</a>, <a href="http://www.liquibase.org/manual/diff">database comparisons</a>, <a href="http://www.liquibase.org/manual/dbdoc">DBDoc</a>, and <a href="http://www.liquibase.org/manual/contexts">change contexts</a>, but there is still a lot to do.  That doesn&#8217;t mean, however, that you shouldn&#8217;t <span style="font-weight:bold;">Get your databse under version control</span>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/02/why-arent-databases-version-controlled.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase Core 1.5.1 + Grails and IntelliJ Plugins Released</title>
		<link>http://blog.liquibase.org/2008/02/liquibase-core-151-grails-and-intellij-plugins-released.html</link>
		<comments>http://blog.liquibase.org/2008/02/liquibase-core-151-grails-and-intellij-plugins-released.html#comments</comments>
		<pubDate>Fri, 01 Feb 2008 19:21:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/02/01/liquibase-core-151-grails-and-intellij-plugins-released/</guid>
		<description><![CDATA[LiquiBase Core 1.5.1 has been released along with the initial 1.5.x series Grails and IntelliJ plugins.
Changes to the core library are minor bug fixes including:

Fixed failOnError logic
Improved serial column detection in Postgres
Rollback connections before close for DB2
Other minor bug fixes

The LiquiBase core library can be downloaded, as usual,  from  http://www.liquibase.org/download.  The Grails [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoPlainText">LiquiBase Core 1.5.1 has been released along with the initial 1.5.x series Grails and IntelliJ plugins.</p>
<p class="MsoPlainText">Changes to the core library are minor bug fixes including:</p>
<ul>
<li>Fixed failOnError logic</li>
<li>Improved serial column detection in Postgres</li>
<li>Rollback connections before close for DB2</li>
<li>Other minor bug fixes</li>
</ul>
<p class="MsoPlainText">The LiquiBase core library can be downloaded, as usual,  from  <a href="http://www.liquibase.org/download">http://www.liquibase.org/download</a>.<span>  </span>The Grails and IntelliJ plugins are installed via their respective plugin managers</p>
<p>The 1.5 Maven plugin should be released next week after further testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/02/liquibase-core-151-grails-and-intellij-plugins-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>LiquiBase Core 1.5.0 Released</title>
		<link>http://blog.liquibase.org/2008/01/liquibase-core-150-released.html</link>
		<comments>http://blog.liquibase.org/2008/01/liquibase-core-150-released.html#comments</comments>
		<pubDate>Tue, 29 Jan 2008 19:15:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Announcement]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2008/01/29/liquibase-core-150-released/</guid>
		<description><![CDATA[LiquiBase Core 1.5.0 is now available for download from http://www.liquibase.org/download
1.5.0 includes a major refactoring which should not affect most users except for the following items:
BREAKING CHANGES


Servlet Migrator: The web.xml parameter names have changed.  See http://www.liquibase.org/manual/servlet_listener for more information.
If you used the &#8220;database.migrator.should.run&#8221;, it is must now be changed to &#8220;liquibase.should.run&#8221;
If you have extended or [...]]]></description>
			<content:encoded><![CDATA[<p>LiquiBase Core 1.5.0 is now available for download from <a href="http://www.liquibase.org/download">http://www.liquibase.org/download</a></p>
<p>1.5.0 includes a major refactoring which should not affect most users except for the following items:</p>
<p><span style="font-weight:bold;">BREAKING CHANGES</span><br />
<hr />
<ul>
<li><span style="font-style:italic;">Servlet Migrator:</span> The web.xml parameter names have changed.  See <a href="http://www.liquibase.org/manual/servlet_listener">http://www.liquibase.org/manual/servlet_listener</a> for more information.</li>
<li>If you used the &#8220;database.migrator.should.run&#8221;, it is must now be changed to &#8220;liquibase.should.run&#8221;</li>
<li>If you have extended or embedded LiquiBase classes or calls directly in your code, changes will be necessary.</li>
<p></ul>
<p><span style="font-weight:bold;">BACKWARDS-COMPATIBLE CHANGES</span><br />
<hr />
<ul>
<li><span style="font-style:italic;">Servlet Migrator:</span> The classes to reference in web.xml have changed to liquibase.servlet.LiquibaseStatusServlet and liquibase.servlet.LiquibaseServletListener.  The old classes are now simply subclasses of the new and are deprecated so they should work.</li>
<li><span style="font-style:italic;">Spring Migrator:</span> The class to reference in your spring config has changed to liquibase.spring.SpringLiquibase.  The old class still exists as a subclass of the new so existing configurations should continue to work.</li>
<li><span style="font-style:italic;">Command Line:</span> The &#8220;migrate&#8221; command has been changed to &#8220;update&#8221;.<br />&#8220;migrate&#8221; is now an alias for &#8220;update&#8221; so existing calls should continue to work</li>
</ul>
<p><span style="font-weight:bold;">ENHANCEMENTS</span><br />
<hr /><span style="font-style:italic;">IMPROVED SCHEMA SUPPORT</span><br />There is now a &#8220;defaultSchemaName&#8221; parameter available for setting default schema.  This schema will be used for all ambiguous database objects as well as for storing the databasechangelog and databasechangeloglock tables.</p>
<p><span style="font-style:italic;">IMPROVED ANT TASKS</span><br />Ant support has been greatly expanded and now covers most of the functionality available in the command line application.  See <a href="http://www.liquibase.org/manual/ant">http://www.liquibase.org/manual/ant</a> for more information.</p>
<p><span style="font-style:italic;">NEW COMMANDS</span>
<ul>
<li>changeLogSync</li>
<li>updateCount</li>
<li>updateCountSQL</li>
</ul>
<p><span style="font-style:italic;">NEW REFACTORINGS</span>
<ul>
<li><a href="http://www.liquibase.org/manual/update_data">update change</a></li>
<li><a href="http://www.liquibase.org/manual/delete_data">delete change</a></li>
</ul>
<p><span style="font-weight:bold;">OTHER CHANGES</span><br />
<hr />
<ul>
<li>Custom Database implementations can be specified with the databaseClassName parameter</li>
<li>&#8220;replaceIfExists&#8221; attribute added to createView</li>
<li>createTable can specify uniqueConstraintName</li>
<li>Setting value/valueNumeric/valueBoolean/valueDate on addColumn will update all existing rows with the given value</li>
<li>Database table comments saved to generated change log</li>
<li>Changelog file comparisons are case-insensitive on windows</li>
<li>Output warning of old schema version</li>
<li>Added comments tag to generated SQL output</li>
<li>Rollback commands can specify contexts</li>
<li>XSDs are not pulled from network</li>
<li>Handles Postgres datatypes better</li>
<li>Bug fixes</li>
</ul>
<p><span style="font-weight:bold;">Upgrading</span><br />
<hr />Upgrading is simply a matter of replacing the liquibase.jar file. To take advantage of newer change log features, change your XSD declaration to:<br />
<blockquote>&lt;databasechangelog xmlns=&#8221;http://www.liquibase.org/xml/ns/dbchangelog/1.5&#8243;<br />xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;<br />schemalocation=&#8221;http://www.liquibase.org/xml/ns/dbchangelog/1.5<br />http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.5.xsd&#8221;&gt;</p></blockquote>
<p>Depending on feedback received from this release, the 1.5.0.0 releases of the various plug-ins (Maven, Grails, IntelliJ, Eclipse) should be released over the next few days.</p>
<p>As usual, be sure to <a href="http://www.liquibase.org/community">let us know</a> if you have any questions or issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2008/01/liquibase-core-150-released.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Japanese Documentation Complete</title>
		<link>http://blog.liquibase.org/2007/12/japanese-documentation-complete.html</link>
		<comments>http://blog.liquibase.org/2007/12/japanese-documentation-complete.html#comments</comments>
		<pubDate>Wed, 19 Dec 2007 16:52:00 +0000</pubDate>
		<dc:creator>nvoxland</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nvoxland.wordpress.com/2007/12/19/japanese-documentation-complete/</guid>
		<description><![CDATA[I would like to thank Yasuo Honda for all his hard work on the Japanese translation of the LiquiBase documentation.  He was also a great help in determining the best wiki tool to use to support translations.
If you are interested in assisting with translating the LiquiBase documentation, feel free to edit the site wiki [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to thank Yasuo Honda for all his hard work on the Japanese translation of the LiquiBase documentation.  He was also a great help in determining the best wiki tool to use to support translations.</p>
<p>If you are interested in assisting with translating the LiquiBase documentation, feel free to edit the site wiki directly, or contact the <a href="http://sourceforge.net/mail/?group_id=187970">documentation mailing list</a> for more information.  </p>
<p>You can view the Japanese translation by starting at <a href="http://www.liquibase.org/ja/home">http://www.liquibase.org/ja/home</a> or by clicking the &#8220;ja&#8221; box on any page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.liquibase.org/2007/12/japanese-documentation-complete.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
