changing SQL::Translator::Diff to use producer_args instead of producer_options
[dbsrgits/SQL-Translator.git] / Changes
1 * Fix Parser::DBI::Oracle reading too many tables (RT#49413)
2 * Fix Parser::MySQL tripping up on PRIMARY KEY ... USING (currently value is ignored) (RT#50468)
3 * Fix runaway debug trace (RT#52276)
4 * Fix Parser::PostgreSQL choking on commit; statements in DDL (#RT52277)
5
6 # ----------------------------------------------------------
7 # 0.11004 2010-02-14
8 # ----------------------------------------------------------
9 * Fix PG producer numeric precision regression (RT#49301)
10 * Add DB2 producer numeric/decimal precision output
11 * Fix Oracle producer creating numeric precision statements that the test case expects (no whitespace)
12 * Add Oracle producer creating drop view statements like PG producer does
13 * Fix SQL::Translator::Diff to use producer_args instead of producer_options
14
15 # ----------------------------------------------------------
16 # 0.11003 2009-09-28
17 # ----------------------------------------------------------
18 * Pg parser fixes to deal properly with MATCH <type>
19 * Pg parser fixes to parse timestamp attributes correctly
20 * Fix broken default detection in script/sqlt (RT#27438)
21 * Fix dependency issues with LibXML and TT
22
23 # ----------------------------------------------------------
24 # 0.11002 2009-08-30
25 # ----------------------------------------------------------
26 * Depend on fixed Parse::RecDescent
27 * Added skip-tables and skip-tables-like options to Diagram
28
29 # ----------------------------------------------------------
30 # 0.11001 2009-08-18
31 # ----------------------------------------------------------
32 * Removed last use of Readonly
33 * Adjusted YAML dependency
34
35 # ----------------------------------------------------------
36 # 0.11000 2009-08-18
37 # ----------------------------------------------------------
38 * Re-add version numbers to files, else cpan's "upgrade" gets very confused
39 * Replaced code using Readonly, since most of the rest uses constant, and thats already a dep
40 * Moved YAML and XML::LibXML back to recommends, the tests for both now skip if not installed
41 * Bumped to 0.11000 to supercede 0.10 which has incorrect numbering scheme
42
43 # ----------------------------------------------------------
44 # 0.10 2009-08-13
45 # ----------------------------------------------------------
46 * Resolved the following RT bugs (thanks to everyone for reporting!):
47 25791   does not recognize PostgreSQL ON_ERROR_STOP
48 29265   sqlt-diagram: --natural-join needs Graph::Directed
49 37814   SQLite translator failing to parse schema
50 42548   Producer::PostgreSQL incorrectly inserts the size in
51         'time(stamp)? with(out) time zone' fields
52 43173   SQL::Translator::Parser without versionnumber - will install
53         old 0.09002
54 46805   (No subject)
55 47026   META.yml is not packaged due to MANIFEST.SKIP (easyfix)
56 32130   Move from XML::XPath to XML::LibXML::XPathContext
57 22261   MySQL parse
58 13915   missing optional prerequisite cause make test to fail
59 8847    Diagram.pm: BINMODE missing in printing of graphic file.
60 21065   GraphViz producer fails on tables named 'node'
61 35448   Producer::PostgreSQL types without size
62 22026   sqlt-diagram uses -f arg twice
63 47897   [PATCH] Fix uninitialized value within @_ in (uc|lc)
64 47668   Mysql Parser doesn't recognize key types
65 46448   sqlt-graph errors out on MySQL DDL with btree keys
66 47176   Add Foreign Key support to Parser::DBI::PostgreSQL.pm
67 48025   MySQL Producer: Case inconsistency between elements in
68         @no_length_attr and $data_type
69 48569   sqlt-diagram fails to load SQLite schema
70 48596   SQL::Translator::Diff::schema_diff should produce a list in
71         list context
72 44907   SQL::Translator::Producer::PostgreSQL produce() in list context
73         should return a list of statements
74
75 # ----------------------------------------------------------
76 # 0.09007 2009-06-25
77 # ----------------------------------------------------------
78 * Fixed Pg parser - caching the compiled P::RD schema is a *very*
79   bad idea
80 * Fix MSSQL handling of ON UPDATE/DELETE RESTRICT
81 * Delay MSSQL FK constraint deployment until after all CREATE TABLE
82   statements
83 * Coerce other engine's bytea/blob/clob datatypes to VarBinary
84
85 # ----------------------------------------------------------
86 # 0.09006 2009-06-10
87 # ----------------------------------------------------------
88 * Multiple test and dependency adhustments to make smokers happy
89 * Fix YAML producer wrt extra attribute
90 * Added support for "time(stamp) (p) with time zone" for Pg producer (mo)
91
92 # ----------------------------------------------------------
93 # 0.09005 2009-06-08
94 # ----------------------------------------------------------
95 * Add parser support for MySQL default values with a single quote
96 * Properly quote absolute table names in the MySQL producer
97 * Added CREATE VIEW subrules for mysql parser (wreis)
98 * Many fixes to code and tests for trigger's "database_events"
99 * Added semi-colon for (DROP|CREATE) TYPE statements in the Pg producer (wreis)
100 * ALTER TABLE/ALTER COLUMN/DROP DEFAULT support in Pg producer (mo)
101 * XML parser support for multi-event triggers
102 * SQLite producer support for multi-event triggers
103 * XML parser switched from XML::XPath to XML::LibXML
104 * Pg producer ALTER TABLE/COLUMN and DROP DEFAULT support
105 * MySQL producer skips length attribute for columns which do not support that
106   attribute. Currently following column types are added to that list:
107   date time timestamp datetime year
108 * Switch to Module::Install (mandates minimum perl 5.005)
109 * Major cleanup of GraphViz proucer
110 * Massive amount of fixes to SQLite/Pg/Mysql/MSSQL parsers/producers
111   Fix most of the problems uncovered by the roundtrip test framework
112   Some highlights:
113     - Rewind exhausted globs before attempting a read
114     - Do not add xml comment header if no_comments is set
115     - table/field counts are held per schema object, not globally
116     - no more variable table and column names in SQLite and MSSQL
117     - VIEW support for Pg parser, also some cleanups
118     - The way we generate Pg create view statements was not standards compliant
119       (per RhodiumToad in #postgresql)
120     - Disable MSSQL view/procedure production - they never worked in the first place
121     - SQLite/MSSQL improvements:
122       - Support parsing of all DROP clauses
123       - Support parsing of field-level comments
124       - When producing do not append table names to constraint/index names
125
126 # ----------------------------------------------------------
127 # 0.09004 2009-02-13
128 # ----------------------------------------------------------
129 * Add support for temporary tables in Pg (nachos)
130 * Create Trigger support for SQLite
131 * GraphViz producer improvements
132
133 # ----------------------------------------------------------
134 # 0.09003 2009-02-07
135 # ----------------------------------------------------------
136   <BORKED RELEASE DELETED OFF CPAN>
137
138 # ----------------------------------------------------------
139 # 0.09002 2008-12-05
140 # ----------------------------------------------------------
141 * parsing MySQL CURRENT_TIMESTAMP as scalar ref so it can be produced without 
142   quotes (jgoulah)
143 * Add ignore_opts parser arg (to ignore table options) in Parser::MySQL (jgoulah)
144 * Skip tests for buggy Spreadsheet::ParseExcel versions (rbo)
145 * Add support for skip tables parser arg in Parser::DBI::MySQL (jgoulah)
146 * Changed behaviour of ::Producer::Oracle when returning an array of statements 
147   to make it compatible to DBI->do()
148 * Fixed a few bugs in ::Producer::Oracle
149 * Applied patch from jgoulah to support mysql's MERGE option
150 * Applied patch from rbo to add support of multiple database events on a trigger
151 * Applied patch from lukes to allow drop if exists in sqlite producer, with 
152   version >= 3.3
153 * Applied patch from rjbs with minor changes, now we support scalar refs in 
154   default values!
155 * Fixed SQLite producer to end index statements in newlines, in scalar context
156 * Decreed that all list context statements shall not end in ; or ;\n
157 * Fixed SQLite, Diff and MySQL producers to agree with Decree.
158 * Added support for CREATE VIEW + tests in the Pg producer (wreis)
159 * Added support for CREATE VIEW + tests in the sqlite producer (groditi)
160 * Added proper argument parsing and documentation to MySQL Parser and 
161   Producer (ribasushi)
162 * Using DROP VIEW instead of OR REPLACE clause in the Pg producer, as replace 
163   only allows replacement with identical set of columns (wreis)
164 * Added support for DROP VIEW and fixed CREATE VIEW statement in the sqlite 
165   producer (wreis)
166 * Removed source_db and target_db accessors from Diff (throwback to old version, 
167   only output_db is used)
168
169
170 * Support for longer varchar fields in MySQL
171
172 # ----------------------------------------------------------
173 # 0.09001 2008-08-19
174 # ----------------------------------------------------------
175 * Added support for CREATE VIEW + tests in the mysql producer (groditi)
176 * Added support for SET fields in the mysql producer + test (groditi)
177 * Added support for proper booleans in the mysql producer, when a mysql version 
178   of at least 4.x is supplied
179 * Added support for proper enums under pg (as of 8.3), with pg version check, 
180   and deferrable constraints
181 * Added support to truncate long constraint and index names in the mysql 
182   producer, because of a change to DBIx::Class to produce such long names in 
183   some cases.
184
185 # ----------------------------------------------------------
186 # 0.09000 2008-02-25
187 # ----------------------------------------------------------
188
189 * Fix Pg produces idea of which field types need a size param (wreis)
190 * Add support for COLLATE table option to MySQL parser
191 * Allow DEFAULT CHARACTER SET without '=' (as produced by mysqldump)
192
193 # -----------------------------------------------------------
194 # 0.0899_02 2008-01-29
195 # ----------------------------------------------------------
196
197 * Major refactoring of SQL::Translator::Diff again:
198 * Diff is no longer one huge monolithic function.                         
199 * Added more tests for diff                                               
200 * When producing diffs for MySQL you will (by default) get single alter 
201   statements per table
202 * SQLite can also do remove columns (by creating a temp table as shown in 
203   http://sqlite.org/faq.html#q11
204 * Columns can be renamed if the new schema is from a form that can have metadata
205   (which is pretty much anything but an SQL file.) It does this by looking at 
206   renamed_from in the $field->extra                              
207 * Updated Oracle and Postgres producers
208 * More tests!
209
210 # -----------------------------------------------------------
211 # 0.0899_01 2007-10-21
212 # ----------------------------------------------------------
213
214 * SQL::Translator::Diff now uses the ::Producer modules to create diffs
215   This *will* break back-compatibility
216   Use sqlt-diff-old for the previous one, and fix producers!
217
218 # -----------------------------------------------------------
219 # 0.08001 2007-09-26
220 # ----------------------------------------------------------
221
222 * Patched to ignore all TT versions >= 2.15 until TT is fixed :(
223
224 # -----------------------------------------------------------
225 # 0.08 2006-12-07
226 # -----------------------------------------------------------
227
228 * Patched 18ttschema-producer.t and 33tt-table-producter.t to skip on TT 2.15, 
229   thanks Ash!
230
231 # -----------------------------------------------------------
232 # 0.08_04 2006-11-10
233 # -----------------------------------------------------------
234
235 * Patched MySQL producer to name constraints sanely, thanks Ash
236 * Added patch to Producer::DB2 to avoid dependency issues with foreign keys
237 * Added patch to remove single quotes for numeric default values in Producer::DB2
238 * Fixed Parser::SQLite to require a semicolon after a create trigger statement
239 * Added patch from avinash to add CASCADE to pg table drops
240
241 # -----------------------------------------------------------
242 # 0.08_03
243 # -----------------------------------------------------------
244
245 * Added patch to use default values for Pg timestamp fields
246
247 # -----------------------------------------------------------
248 # 0.08_02    2006-11-03
249 # -----------------------------------------------------------
250
251 * Added patch from Ash to separate DROP statements in mysql producer in 
252   list-context
253 * Fixed up SQLites usage of no-comments
254
255 # -----------------------------------------------------------
256 # 0.08_01    2006-07-23
257 # -----------------------------------------------------------
258
259 * Made Trigger check that a give table exists in on_table - castaway
260 * Split some producers (DB2, MySQL, SQLite, PostgreSQL) into sub methods (others
261   to follow) - castaway
262 * Add alter_* methods to some Producers and docs to Producer.pm (for use by Diff
263   later) - castaway
264 * Made changes to allow producers to return a list of statements - castaway
265 * Split sqlt-diff into script and module - castaway
266 * Added quote_table_names and quote_field_names patch (omega, zamolxes) - castaway
267 * Added DB2 Producer - castaway
268 * Added mysql_character_set for 4.1+ -mda
269 * New filters, Names and Globals. -mda
270 * Added the initial work on a template based Dia UML producer. -mda
271
272 # -----------------------------------------------------------
273 # 0.07    2005-06-10
274 # -----------------------------------------------------------
275 *   YAML parser supports extra attributes on tables.
276
277 *   All schema objects now support the extra attribute, so can
278     have arbitary name/value data attached to them.
279
280 *   Refactoring: Added SQL::Translator::Schema::Object - base 
281     class for all Schema objects.
282
283 *   Changes to MySQL Parser (Dave Howorth)
284     - ignore INSERT statements
285     - permit ALTER TABLE ADD FOREIGN KEY
286     - allow trailing comma on last field in CREATE statements
287     - collect the database name
288
289 *   TTSchema Producer
290     - Can pass extra variables using tt_vars producer arg.
291     - Can pass extra config using tt_conf producer arg.
292     - Variables and config can be passed on the command line
293       with --tt-var and --tt-conf options to sqlt.
294
295 *   Added schema filters.
296
297 *   MySQL Producer
298     - Added 'mysql_table_type' extra attribute on tables.
299     - Works out InnoDB tables from constraints.
300     - mysql_charset and mysql_collate extra attributes for tables and fiels.
301
302
303 # -----------------------------------------------------------
304 # 0.06    2004-05-13
305 # -----------------------------------------------------------
306 *   Added SQL::Translator::Manual
307
308 *   Installation process now uses Module::Build
309
310 *   Added new "Dumper" producer
311
312 *   Changed the native SQL Fairy XML format to a fixed mapping.
313     *NB:* You should convert your existing XML schema. See the
314     SQL::Translator::Parser::XML::SQLFairy docs.
315
316 *   Added producers: TT::Base and TT::Table.
317
318 # -----------------------------------------------------------
319 # 0.05    2004-02-27
320 # -----------------------------------------------------------
321 *   Added "COMMENT ON *" syntax to PostgreSQL parser
322
323 *   Some fixes to Oracle parser as reported by Gail Binkley
324
325 *   Added support in PostgreSQL parser for all "ALTER TABLE" statements
326
327 *   Now distributing sqlt-diff script as it's pretty usable
328
329 *   Added new options to sqlt-graph and GraphViz producer (Dave Cash)
330
331 # -----------------------------------------------------------
332 # 0.04    2003-11-07
333 # -----------------------------------------------------------
334
335 *   Increased version of Constants module to 1.41 to avoid a problem 
336     where 0.02 has 1.4 of that file and 0.03 had 1.06 which confused
337     CPAN
338
339 *   Hard-coded all the PREREQ_PM modules in Makefile.PL (rather than
340     setting them dynamically) so that automated tests would pass
341
342 # -----------------------------------------------------------
343 # 0.03    2003-11-06
344 # -----------------------------------------------------------
345
346 *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL, 
347     DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
348
349 *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
350
351 *   HTML producer now uses stylesheets to allow easy customization of colors
352
353 *   Many bug fixes to most every module
354
355 *   Added "sqlt-dumper" script to help create a script for dumping
356     a database a la "mysqldump"
357
358 *   Reversed the arrowheads on the graphical producers to show the 
359     relationships in a more standard way
360
361 *   Changes all included script names to start with "sqlt"
362
363 *   Added capturing and printing most embedded table and field comments
364
365 # -----------------------------------------------------------
366 # 0.02    2003-06-17
367 # -----------------------------------------------------------
368
369 *   Added parsers for Excel and Oracle
370
371 *   Removed Sybase parser because it didn't actually work
372
373 *   Added ClassDBI, Diagram, GraphViz, HTML, POD, SQLite, Sybase producers
374
375 *   Added Schema classes to represent schema as objects
376
377 *   Removed "Raw" producer in favor of the Schema classes
378
379 *   Removed "Validator" class as the Schema classes validate themselves
380
381 *   Improved all existing parsers and producers, expanding them to 
382     handle foreign keys much better, produce better output, etc.
383
384 *   Added sqlt-diagram.pl and sqlt-graphviz.pl as CLI frontends to the 
385     graphical producers
386
387 *   Added sql_translator.cgi as a web-form frontend to graphical producers
388
389 *   Expanded test suite
390
391 # -----------------------------------------------------------
392 # 0.01    2003-02-27
393 # -----------------------------------------------------------
394
395 *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL, 
396     DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
397
398 *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
399
400 *   HTML producer now uses stylesheets to allow easy customization of colors
401
402 *   Many bug fixes to most every module
403
404 *   Added "sqlt-dumper" script to help create a script for dumping
405     a database a la "mysqldump"
406
407 *   Reversed the arrowheads on the graphical producers to show the 
408     relationships in a more standard way
409
410 *   Changes all included script names to start with "sqlt"
411
412 *   Added capturing and printing most embedded table and field comments