deb pkg
[DBIx-DBSchema.git] / Changes
1 Revision history for Perl module DBIx::DBSchema
2
3 0.44_01 not released
4     - POD fixes from Xavier Guimard <x.guimard@free.fr> and Damyan Ivanov
5       <dmn@debian.org> of the Debian Perl Group, closes: CPAN#82187
6     - More foreign key support
7       + table alteration (removing foreign keys)
8
9 0.43 2013-11-04 14:58;32 PST
10     - Incorporate CPAN::Changes::Spec-compliant Changes file from Neil Bowers
11       <neilb@cpan.org>, closes: CPAN#90023, thanks!
12     - Fix table creation broken by 0.42
13     - Create/alter tables before foreign key changes
14
15 0.42 2013-11-03 01:09:27 PST
16     - Basic foreign key support
17       + table creation
18       + table alteration (adding new foreign keys)
19       + reverse-engineering (Pg driver)
20
21 0.41_01 not released
22     - consolidate multiple ADD/ALTER COLUMN statements into one ALTER TABLE
23
24 0.40 2011-12-17 17:03:51 PST
25     - doc: sql_update_schema link to sql_add_column misspelled
26     - Pg: fix mapping for DOUBLE PRECISION type to avoid needless alter cols
27     - mysql: implement altering column types & lengths
28
29 0.39 2010-03-26 20:24:58 PDT
30     - mysql: TEXT->LONGTEXT
31     - mysql: when reverse engineering, transform a default of
32       CURRENT_TIMESTAMP into the more common NOW()
33     - mysql: fix reverse-engineering of empty string default
34
35 0.38 2010-01-14 15:26:13 PST
36     - Bump version number for ->quoted_default availability & default
37       reverse-engineering changes
38
39 0.37 not released
40     - Patch from Slavin Rezic <srezic@cpan.org> to prevent quoting around
41       numeric defaults in Pg.
42     - Pg: use default_db_schema when adding SERIAL columns instead of
43       hardcoding "public".
44     - Pg: Initial support for handling changes to a column's type or size.
45     - Case sensitivity fix for Slavin's patch to prevent quoting around
46       numeric defaults in Pg.
47     - Column default values: refactor handling, improve Pg reverse
48       engineering and implement schema changes.
49
50 0.36 2007-12-13 17:49:35 PST
51     - Patch from ISHIGAKI@cpan.org to suppress unnecessary warnings about
52       undefined local_options, thanks!
53     - fix bug preventing adding new columns as primary keys under Pg
54
55 0.35 2007-10-29 18:58:36 PDT
56     - Fix minor breakage (pretty_print) resulting from Jesse's changes.
57     - Update mysql driver to handle BIGSERIAL columns
58     - Update Column.pm, move all mysql and Pg-specific code to DBD driver
59       callbacks
60     - Update Table.pm, add local_options
61     - Fix mysql NULL reverse-engineering and updating code
62
63 0.34 2007-08-19 10:08:51 PDT
64     - More work on update schema from Slaven Rezic <srezic@cpan.org>,
65       thanks!
66       + implement table dropping (closes: CPAN#27936)
67       + implement column dropping (closes: CPAN#27896)
68     - Fix to quiet warnings from internal use of old API from Jesse Vincent
69       <jesse+cpan@fsck.com>, thanks! (closes: CPAN#27958)
70     - Make table dropping optional, not the default.
71
72 0.33 2007-06-28 18:46:15 PDT
73     - Overhaul of index representation: indices (both normal and unique)
74       now have names and are DBIx::DBSchema::Index objects
75     - update_schema now handles indices!
76     - Bump version numbers in Table.pm, Column.pm and DBD.pm
77     - Pg reverse-engineering fix for column order in multi-column indices,
78       to prevent needless drop/add of identical indices
79     - mysql reverse-engineering patch from Brian Phillips
80       <bphillips@cpan.org>, closes: CPAN#17582, thanks!
81     - mysql NAME vs NAME_lc patch from Ralf Hack <ralf@beetlecraft.net>,
82       closes: CPAN#16715, thanks!
83     - mysql fix for additional column data from Chris Mungall
84       <cjm@fruitfly.org>, closes: CPAN#20859, thanks!
85     - SQLite SERIAL patch from IN SUK JOUNG <i.joung@gmail.com>, and fix
86       for mis-application of said patch from Slaven Rezic
87       <srezic@cpan.org>, thanks!
88     - Update README wrt current CVS info and URL, closes: CPAN#27577
89
90 0.32 2007-04-18 15:02:25 PDT
91     - increment the version numbers in Column.pm and Table.pm and the
92       "use" statements accordingly
93     - Error reporting for load constructor
94     - Update documentation wrt supported databases and new update_schema
95       stuff
96     - Fixes for dropping nullability on old Pg (<= 7.2)
97     - Fixes for adding nullability on old Pg (<= 7.3)
98     - Throw a warning if pg_server_version is unavailable, assume >= 7.3
99     - fix POD error in DBSchema::DBD::SQLite that confused pod2man and
100       prevented the documentation from being installed.  Patch from Niko
101       Tyni <ntyni@iki.fi>, thanks!
102
103 0.31 2006-03-30 05:28:20 PST
104     - more schema update stuff:
105     - added Column::sql_alter_column
106     - added Table::sql_alter_table
107     - added DBSchema::sql_update_schema and DBSchema::update_schema
108
109 0.30 2006-02-16 16:43:01 PST
110     - "Too much uptime"
111     - Remove buggy debugging from Column.pm
112     - Remove removed TODO from MANIFEST
113
114 0.29 2006-02-16 13:54:42 PST
115     - Column::sql_add_column fix when adding primary keys to Pg 7.2.x
116     - workaround for PAUSE parsing of DBIx::DBSchema::DBD::Pg version: move
117       DBD::Pg verison checking after $VERSION declaration, thanks Andreas!
118     - kludge: allow scalar ref default to force quoting off, to add things
119       like functions and empty values as defaults
120     - Move TODO file to DBSchema.pm and DBS/Column.pm BUGS sections
121
122 0.28 2005-11-30 09:46:47 PST
123     - Initial SQLite support from Jesse Vincent
124     - fix typo in DBIx::DBSchema::DBD POD doc
125
126 0.27 2005-08-15 23:31:54 PDT
127     - MySQL patch for enum types from Andy Orr
128     - new Column::sql_add_column method!
129
130 0.26 2005-04-07 01:09:53 PDT
131     - ask for "public" db schema only from Pg
132
133 0.25 2005-04-06 16:12:38 PDT
134     - depend on DBD::Pg 1.32 or 1.41+ (1.40 was bunk)
135
136 0.24 2005-03-11 02:20:55 PST
137     - Oracle driver from Daniel Hanks <hanksdc@about-inc.com> and Peter
138       Bowen <pbowen@aboutws.com>.
139     - Switch from FreezeThaw to Storable, keep ability to read old files
140
141 0.23 2004-02-16 17:35:54 PST
142     - Update Pg dependancy to 1.32
143     - Update the simple load test so it skips DBIx::DBSchema::DBD::Pg if
144       DBD::Pg 1.32 is not installed.
145
146 0.22 2003-10-23 15:18:21 PDT
147     - Pg reverse-engineering fix: varchar with no limit
148     - Pg needs (unreleased) DBD::Pg 1.30 (or deb 1.22-2... interesting)
149
150 0.21 2002-09-19 05:04:18 PDT
151     - Pg reverse-engineering fix: now sets default
152
153 0.20 2002-03-04 04:58:34
154     - documentation updates
155     - fix Column->new when using named params
156     - fix Pg driver reverse-engineering length of numeric columns:
157       translate 655362 to 10,2, etc.
158     - fix Pg driver reverse-engineering of text columns (don't have a
159       length)
160
161 0.19 2001-10-23 08:49:12
162     - documentation for %typemap
163     - preliminary Sybase driver from Charles Shapiro
164       <charles.shapiro@numethods.com> and Mitchell J. Friedman
165       <mitchell.friedman@numethods.com>.
166     - Fix Column::line to return a scalar as documented, not a list.
167     - Should finally eliminate the Use of uninitialized value at
168       ... DBIx/DBSchema/Column.pm line 251
169
170 0.18 2001-08-10 17:07:28
171     - Added Table::delcolumn
172     - patch from Charles Shapiro <cshapiro@numethods.com> to add
173       `ORDER BY a.attnum' to the SQL in DBIx::DBSchema::DBD::Pg::columns
174
175 0.17 2001-07-07 17:55:33
176     - Rework Table->new interface for named params
177     - Fixes for Pg blobs, yay!
178     - MySQL doesn't need non-standard index syntax anymore (since 3.22).
179     - patch from Mark Ethan Trostler <mark@zzo.com> for generating
180       tables without indices.
181
182 0.16 2001-01-05 15:55:50
183     - Don't overflow index names.
184
185 0.15 2000-11-24 23:39:16
186     - MySQL handling of BOOL type (change to TINYINT)
187
188 0.14 2000-10-24 14:43:16
189     - MySQL handling of SERIAL type (change to INTEGER AUTO_INCREMENT)
190
191 0.13 2000-10-11 10:47:13
192     - fixed up type mapping foo, added default values, added named
193       parameters to Column->new, fixed quoting of default values
194
195 0.11 2000-09-28 02:16:25
196     - oops, original verison got 0.10, so this one will get 0.11
197
198 0.01 2000-09-17 07:57:35
199     - original version; created by h2xs 1.19
200