Skip to content

Commit

Permalink
Preparing for 3.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvoxland committed Jul 28, 2015
1 parent 6fa9a33 commit bee144c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 29 deletions.
29 changes: 1 addition & 28 deletions RELEASING.txt
Expand Up @@ -4,7 +4,7 @@ update changelog.txt

Manually run branch in the "Release" buildserver project

Download liquibase-X.Y.Z-*.zip and *-.tar.gz artifacts from the buildserver and upload to sourceforge
Download liquibase-X.Y.Z-*.zip and *-.tar.gz artifacts from the buildserver and upload to github

upload target/checkout/liquibase-maven-plugin/target/site to liquibase.org/documentation\maven\generated
copy target/checkout/liquibase-core/target/site/apidocs to liquibase.org/javadoc
Expand All @@ -23,31 +23,4 @@ Test:
- new jars are at http://mvnrepository.com/artifact/org.liquibase/liquibase-core

POST MESSAGES TO:
- forum
- blog

Sample messages:
--------------------------------------------------------
CORE
---------------------------------------------------------
Liquibase 1.4.0 has been released. Major features include:

- IntelliJ Plug-in Support
- Added support for specifying schemas in change log
- MaxDB/SAPDB Support
- Refactored Code
- Can specify data types as java.sql.Types.*
- Support for composite foreign keys
- Improved Maven support
- Bug Fixes

Upgrading is simply a matter of replacing the liquibase.jar file. To take advantage of newer change log features, change your XSD declaration to:

<databasechangelog xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.4";
xsi="http://www.w3.org/2001/XMLSchema-instance";
schemalocation="http://www.liquibase.org/xml/ns/dbchangelog/1.4
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.4.xsd";>

Download Liquibase 1.4 from:

http://www.liquibase.org/download
43 changes: 43 additions & 0 deletions changelog.txt
@@ -1,6 +1,49 @@
Liquibase Core Changelog
===========================================

Changes in version 3.4.1 (2015.07.28)

- [CORE-998] - Changing index columns leads to wrong output order in the change log xml file.
- [CORE-2104] - ConcurrentModificationException iterating over System.getProperties().entrySet()
- [CORE-2385] - IncludeAll does not work when runing liquibase from inside a jar
- [CORE-2405] - Collation not preserved, depending on configuration
- [CORE-2406] - Escaped built-in data types should be lower case
- [CORE-2408] - Unknown column 'LABELS' in 'field list'
- [CORE-2410] - Snapshot should not include paramaters for MSSQL geometry, geography or sql_variant types
- [CORE-2411] - BLOB string default values not quoted
- [CORE-2412] - Handle Oracle BFILE types
- [CORE-2414] - CLONE - generateChangeLog creates DOUBLE(22) instead of double in MySql
- [CORE-2415] - Custom Logger configuration does not work anymore
- [CORE-2416] - Diff drops and creates primary keys for all tables
- [CORE-2418] - Liquibase 3.4.0 tries to do INSERT instead of UPDATE-Statements with Postgres
- [CORE-2421] - MySQL column sizes are off by 1 in BIGINT and INT for diffChangeLog
- [CORE-2422] - Liquibase intialisation failed
- [CORE-2423] - Sybase IQ : strange procedure called
- [CORE-2426] - Default schema name missing quotes.
- [CORE-2427] - Better handle MSSQL stored procedures with a different defaultSchema and replaceOnExists=true
- [CORE-2428] - liquibase 2.0.3 to 3.3.3
- [CORE-2435] - includeSystemClasspath switch actually includes SystemClassLoader if false
- [CORE-2436] - Logging in ClassLoaderResourceAccessor prevents installation of custom Logger
- [CORE-2437] - Index.toString() contains "unique" if and only if index is NOT unique
- [CORE-2438] - DeleteGenerator does not handle parameter names and values with $ or \ properly
- [CORE-2440] - Not possible to override DefaultLogger using a Logger in a non-liquibase package.
- [CORE-2441] - Creation of foreign key fails in MySQL if database name contains dashes
- [CORE-2442] - Creating MD5 checksum fails if changeSet id contains the character "?"
- [CORE-2443] - Liquibase 3.4.0 ignores third party loggers in certain situations
- [CORE-2446] - endDelimiter splitting does not work in plain SQL files (regression)
- [CORE-2452] - Index names should be quoted on SQL Server
- [CORE-2458] - loadUpdateData will not update
- [CORE-2460] - Postgres index names cannot include schema name
- [CORE-2433] - quoting error in table creation
- [CORE-2359] - Consistently read dataTypeId for all databases
- [CORE-2419] - Support fluent/builder-style change properties
- [CORE-2449] - Correctly detect "Sybase IQ"
- [CORE-2450] - Non-bash /bin/sh gives "[[ not found" error
- [CORE-2451] - SQL scripts should have "USE <database>" in the header on SQL Server
- [CORE-2453] - Informix: Return null for connection schema name
- [CORE-2459] - Un-change Formatted SQL stripComments default back to true
- [CORE-2461] - Don't do DATABASECHANGELOG ALTER statements if column types are different

Changes in version 3.4.0 (2015.06.24)

- [CORE-14] - Dropping default values with MS-SQL
Expand Down
2 changes: 1 addition & 1 deletion liquibase-core/pom.xml
Expand Up @@ -16,7 +16,7 @@

<properties>
<bundle.namespace>liquibase.*</bundle.namespace>
<project.version>3.4.1-SNAPSHOT</project.version>
<project.version>3.4.1</project.version>
</properties>

<dependencies>
Expand Down

0 comments on commit bee144c

Please sign in to comment.