This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Logback: the generic, reliable, fast and flexible logging framework.".
The branch, master has been updated via 72975f8ef6450b8c58e2802d9511e1474a85949d (commit) from 6f8598363daefc3139aa08f3c741e4eae284dc81 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.qos.ch/gitweb/?p=logback.git;a=commit;h=72975f8ef6450b8c58e2802d9511e1474a85949d http://github.com/ceki/logback/commit/72975f8ef6450b8c58e2802d9511e1474a85949d commit 72975f8ef6450b8c58e2802d9511e1474a85949d Author: Ceki Gulcu <c...@qos.ch> Date: Wed Mar 24 20:22:03 2010 +0100 - preparing release 0.9.19 diff --git a/logback-access/pom.xml b/logback-access/pom.xml index 4c26e9b..2d68062 100644 --- a/logback-access/pom.xml +++ b/logback-access/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-classic/pom.xml b/logback-classic/pom.xml index b52f8f1..8ecf649 100644 --- a/logback-classic/pom.xml +++ b/logback-classic/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-classic/src/main/java/ch/qos/logback/classic/db/dialect/mssql.sql b/logback-classic/src/main/java/ch/qos/logback/classic/db/dialect/mssql.sql index cbe4ef6..71a1861 100644 --- a/logback-classic/src/main/java/ch/qos/logback/classic/db/dialect/mssql.sql +++ b/logback-classic/src/main/java/ch/qos/logback/classic/db/dialect/mssql.sql @@ -1,5 +1,7 @@ -- This SQL script creates the required tables by ch.qos.logback.classic.db.DBAppender -- +-- The event_id column type was recently changed from INT to DECIMAL(40) +-- without testing. DROP TABLE logging_event_property DROP TABLE logging_event_exception @@ -21,13 +23,13 @@ CREATE TABLE logging_event caller_class VARCHAR(254) NOT NULL, caller_method VARCHAR(254) NOT NULL, caller_line CHAR(4) NOT NULL, - event_id INT NOT NULL identity, + event_id DECIMAL(40) NOT NULL identity, PRIMARY KEY(event_id) ) CREATE TABLE logging_event_property ( - event_id INT NOT NULL, + event_id DECIMAL(40) NOT NULL, mapped_key VARCHAR(254) NOT NULL, mapped_value VARCHAR(1024), PRIMARY KEY(event_id, mapped_key), @@ -36,7 +38,7 @@ CREATE TABLE logging_event_property CREATE TABLE logging_event_exception ( - event_id INT NOT NULL, + event_id DECIMAL(40) NOT NULL, i SMALLINT NOT NULL, trace_line VARCHAR(254) NOT NULL, PRIMARY KEY(event_id, i), diff --git a/logback-core/pom.xml b/logback-core/pom.xml index 53be621..fa2886d 100644 --- a/logback-core/pom.xml +++ b/logback-core/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-examples/pom.xml b/logback-examples/pom.xml index 9a0f449..045e476 100644 --- a/logback-examples/pom.xml +++ b/logback-examples/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-site/pom.xml b/logback-site/pom.xml index 4ad376b..568487a 100644 --- a/logback-site/pom.xml +++ b/logback-site/pom.xml @@ -3,7 +3,7 @@ <parent> <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/logback-site/src/site/pages/news.html b/logback-site/src/site/pages/news.html index 3374279..8e02ed1 100644 --- a/logback-site/src/site/pages/news.html +++ b/logback-site/src/site/pages/news.html @@ -28,7 +28,7 @@ <hr width="80%" align="center" /> - <h3>March 2010 - Release of version 0.9.19</h3> + <h3>March 24, 2010 - Release of version 0.9.19</h3> <div style="border: 1px solid #F44; background-color: #FED; padding-left: 1ex; padding-right: 1ex;"> @@ -79,14 +79,19 @@ <p>Existing databases can be migrated to the new table structure by altering the existing tables. Here is how it would be done - in PostgreSQL.</p> + in PostgreSQL and MySQL.</p> - <pre class="prettyprint"> -ALTER TABLE logging_event ADD COLUMN arg0 CARCHAR(254); + <pre class="prettyprint">ALTER TABLE logging_event ADD COLUMN arg0 VARCHAR(254); ALTER TABLE logging_event ADD COLUMN arg1 VARCHAR(254); -ALTER TABLE logging_event ADD COLUMN arg3 VARCHAR(254); -ALTER TABLE logging_event ADD COLUMN arg3 VARCHAR(254); -</pre> +ALTER TABLE logging_event ADD COLUMN arg2 VARCHAR(254); +ALTER TABLE logging_event ADD COLUMN arg3 VARCHAR(254);</pre> + + <p>In Oracle:</p> + + <pre class="prettyprint">ALTER TABLE logging_event ADD arg0 VARCHAR(254); +ALTER TABLE logging_event ADD arg1 VARCHAR(254); +ALTER TABLE logging_event ADD arg2 VARCHAR(254); +ALTER TABLE logging_event ADD arg3 VARCHAR(254);</pre> </div> diff --git a/pom.xml b/pom.xml index 56ce38e..63f680f 100755 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ <groupId>ch.qos.logback</groupId> <artifactId>logback-parent</artifactId> - <version>0.9.19-SNAPSHOT</version> + <version>0.9.19</version> <packaging>pom</packaging> <name>Logback-Parent</name> ----------------------------------------------------------------------- Summary of changes: logback-access/pom.xml | 2 +- logback-classic/pom.xml | 2 +- .../ch/qos/logback/classic/db/dialect/mssql.sql | 8 +++++--- logback-core/pom.xml | 2 +- logback-examples/pom.xml | 2 +- logback-site/pom.xml | 2 +- logback-site/src/site/pages/news.html | 19 ++++++++++++------- pom.xml | 2 +- 8 files changed, 23 insertions(+), 16 deletions(-) hooks/post-receive -- Logback: the generic, reliable, fast and flexible logging framework. _______________________________________________ logback-dev mailing list logback-dev@qos.ch http://qos.ch/mailman/listinfo/logback-dev