Accepting request 281708 from home:posophe:branches:Java:packages
Update OBS-URL: https://build.opensuse.org/request/show/281708 OBS-URL: https://build.opensuse.org/package/show/Java:packages/hsqldb?expand=0&rev=16
This commit is contained in:
parent
9a09d0aafb
commit
85a467b10b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:6b60decdb59513f52b915abed2223e287ba19360fa77fc8141c4fc6af90c5e72
|
|
||||||
size 7450194
|
|
@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.hsqldb</groupId>
|
<groupId>org.hsqldb</groupId>
|
||||||
<artifactId>hsqldb</artifactId>
|
<artifactId>hsqldb</artifactId>
|
||||||
<version>2.2.9</version>
|
<version>2.3.2</version>
|
||||||
<name>HyperSQL Database</name>
|
<name>HyperSQL Database</name>
|
||||||
<description>HSQLDB - Lightweight 100% Java SQL Database Engine</description>
|
<description>HSQLDB - Lightweight 100% Java SQL Database Engine</description>
|
||||||
<url>http://hsqldb.org</url>
|
<url>http://hsqldb.org</url>
|
||||||
@ -20,8 +20,16 @@
|
|||||||
<distribution>repo</distribution>
|
<distribution>repo</distribution>
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>unsaved</id>
|
||||||
|
<name>Blaine Simpson</name>
|
||||||
|
<email>blaine.simpson@admc.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:svn:http://hsqldb.svn.sourceforge.net/svnroot/hsqldb/base</connection>
|
<connection>scm:svn:http://hsqldb.svn.sourceforge.net/svnroot/hsqldb/base</connection>
|
||||||
<url>http://hsqldb.svn.sourceforge.net/viewvc/hsqldb/base/trunk</url>
|
<tag>2.3.2</tag>
|
||||||
|
<url>http://hsqldb.svn.sourceforge.net/viewvc/hsqldb/base/tags/2.3.2</url>
|
||||||
</scm>
|
</scm>
|
||||||
</project>
|
</project>
|
3
hsqldb-2.3.2.zip
Normal file
3
hsqldb-2.3.2.zip
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:573082ab3f1c8f02c1f496b9aae15b74f1b5aedf3812ef300e90ead3047e5fb0
|
||||||
|
size 7734168
|
@ -1,3 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 18 23:42:53 UTC 2015 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
- Update to version 2.3.2
|
||||||
|
* fixed several minor issues
|
||||||
|
* fixed bug with incomplete rollback of MVCC transaction that
|
||||||
|
inserts and updates the same row
|
||||||
|
* fixed issue with parsing of long BIT strings in SQL
|
||||||
|
* fixed issue with SQL triggers when columns were added or dropped
|
||||||
|
from a table with SQL triggers
|
||||||
|
* fixed issue with an index added to a TEMP table with ON COMMIT
|
||||||
|
PRESERVE ROWS and containing data
|
||||||
|
* added URL property hsqldb.digest which can be used with alternative
|
||||||
|
secure hash algorithms for passwords
|
||||||
|
* changed the class used for offline backup and restore to
|
||||||
|
org.hsqldb.lib.tar.DbBackupMain
|
||||||
|
* extended the scope of SET DATABASE SQL REFERENCES TRUE to catch
|
||||||
|
ambiguity with identical table aliases
|
||||||
|
* extended support for the DEFAULT keyword used in INSERT and UPDATE
|
||||||
|
to apply to columns with no default
|
||||||
|
* improved support for recursive queries
|
||||||
|
* improved ORA and MYS syntax compatibility modes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 9 11:05:43 UTC 2013 - tchvatal@suse.com
|
Mon Sep 9 11:05:43 UTC 2013 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package hsqldb
|
# spec file for package hsqldb
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: hsqldb
|
Name: hsqldb
|
||||||
Version: 2.2.9
|
Version: 2.3.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: HyperSQL Database Engine
|
Summary: HyperSQL Database Engine
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -28,7 +28,9 @@ Source1: hsqldb-1.8.0-standard.cfg
|
|||||||
Source2: hsqldb-1.8.0-standard-server.properties
|
Source2: hsqldb-1.8.0-standard-server.properties
|
||||||
Source3: hsqldb-1.8.0-standard-webserver.properties
|
Source3: hsqldb-1.8.0-standard-webserver.properties
|
||||||
Source4: hsqldb-1.8.0-standard-sqltool.rc
|
Source4: hsqldb-1.8.0-standard-sqltool.rc
|
||||||
Source5: http://www.hsqldb.org/repos/org/hsqldb/hsqldb/%{version}/hsqldb-%{version}.pom
|
#Source5: http://www.hsqldb.org/repos/org/hsqldb/hsqldb/%{version}/hsqldb-%{version}.pom
|
||||||
|
# The maven pom file related to 2.3.2 version is not yet released
|
||||||
|
Source5: hsqldb-%{version}.pom
|
||||||
|
|
||||||
# Custom systemd files - talking with upstream about incorporating them, see
|
# Custom systemd files - talking with upstream about incorporating them, see
|
||||||
# http://sourceforge.net/projects/hsqldb/forums/forum/73673/topic/5367103
|
# http://sourceforge.net/projects/hsqldb/forums/forum/73673/topic/5367103
|
||||||
|
Loading…
x
Reference in New Issue
Block a user