8
0

- updated to 0.07024

- work around broken keyseq in DBD::Pg foreign_key_info (RT#77062)
      - properly order FK columns when using base ::DBI loader (SineSwiper)
      - bump Class::Inspector dep to 1.27 due to test failures with earlier
        versions on perl >= 5.15.7 (RT#74236)
      - do separate queries for default_value on Sybase ASE as some servers
        can't join to that table (pcmantz) (RT#74170)
      - set correct size for nchar/nvarchar columns for Sybase ASE,
        depending on @@ncharsize
      - use ::Schema::connect instead of ::Schema::connection in
        make_schema_at (RT#74175)
      - register sources on the schema class, never the instance, regardless
        of how the connection is made for dynamic schemas
      - fix some mro issues under perl 5.8
      - fix some errors due to case issues (RT#75805)
      - skip dbicdump tests on Win32 due to test fails (RT#75732)
      - fix undefined warnings for DBDs without schemas
      - work around ORA-24345 from $dbh->column_info
      - fix spelling mistake in Base POD (RT#74796)
      - *EXPERIMENTAL* support for dumping PostgreSQL schemas inside of a
        transaction
      - use DBI table_info/column_info REMARKS field if/where available for
        table/column comments (SineSwiper)
      - better compatibility with more DBDs (SineSwiper)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBIx-Class-Schema-Loader?expand=0&rev=6
This commit is contained in:
Stephan Kulow
2012-06-01 05:18:28 +00:00
committed by Git OBS Bridge
parent 7f70d06392
commit 7687cb69ef
4 changed files with 47 additions and 9 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Fri Jun 1 05:08:27 UTC 2012 - coolo@suse.com
- updated to 0.07024
- work around broken keyseq in DBD::Pg foreign_key_info (RT#77062)
- properly order FK columns when using base ::DBI loader (SineSwiper)
- bump Class::Inspector dep to 1.27 due to test failures with earlier
versions on perl >= 5.15.7 (RT#74236)
- do separate queries for default_value on Sybase ASE as some servers
can't join to that table (pcmantz) (RT#74170)
- set correct size for nchar/nvarchar columns for Sybase ASE,
depending on @@ncharsize
- use ::Schema::connect instead of ::Schema::connection in
make_schema_at (RT#74175)
- register sources on the schema class, never the instance, regardless
of how the connection is made for dynamic schemas
- fix some mro issues under perl 5.8
- fix some errors due to case issues (RT#75805)
- skip dbicdump tests on Win32 due to test fails (RT#75732)
- fix undefined warnings for DBDs without schemas
- work around ORA-24345 from $dbh->column_info
- fix spelling mistake in Base POD (RT#74796)
- *EXPERIMENTAL* support for dumping PostgreSQL schemas inside of a
transaction
- use DBI table_info/column_info REMARKS field if/where available for
table/column comments (SineSwiper)
- better compatibility with more DBDs (SineSwiper)
-------------------------------------------------------------------
Fri Jan 13 10:32:31 UTC 2012 - coolo@suse.com