Handle errors in perl scripts better and remove suport for $0
[dbsrgits/DBIx-Class-DeploymentHandler.git] / Changes
diff --git a/Changes b/Changes
index c9a9b92..8e92993 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,46 @@
 Revision history for {{$dist->name}}
 
 {{$NEXT}}
+       - Handle errors in Perl Scripts better
+       - Stop supporting FindBin by localizing $0, just use Dir::Self if you
+         need that
+
+0.002111  2012-03-29 20:09:45 America/Chicago
+       - Improve docs by linking from implementations to their roles
+
+0.002110  2012-03-14 21:22:36 America/Chicago
+       - Use ->count instead of ->next to check if version storage is deployed
+         (->next caused issues on MSSQL due to length of DDL)
+       - Fix a couple stupid documentation issues (Phillip Smith)
+
+0.002100  2012-03-03 17:09:21 CST6CDT
+       - Wrap upgrades, downgrades, and installs in a transaction, as a failure
+         to add a version to the version table should cause a rollback
+       - Allow user to specify version of schema to install
+       - Added better sandboxing (stolen straight from Plack::Util) for coderefs
+         to avoid accidental leakage
+       - Sandboxing also makes $0 and thus FindBin et al work in perl scripts
+
+0.002000  2012-02-28 21:20:48 CST6CDT
+       - Added DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::ScriptHelpers,
+         ALL users who use perl scripts during migrations are encouraged to use
+         schema_from_schema_loader from that package.
+
+0.001008  2012-02-19 10:12:34 CST6CDT
+       - Added dep on parent, bump dep on DBD::SQLite to avoid silly failures
+
+0.001007  2012-02-16 08:58:30 CST6CDT
+       - removed the rest of the references to Method::Signatures::Simple
+
+0.001006  2012-02-01 21:18:38 CST6CDT
+       - Fix install to allow you to deploy to a given version (jnap)
+       - Fix the backup method to use storage, not schema (jnap)
+       - Fix the reasonable defaults for downgrading (jnap)
+       - Stop warning all the time (ribasushi)
+       - croak on a couple errors that should be fatal
+       - Stop deleting the wrong version (for downgrades)
        - Fix documentation for in the Cookbook (moltar)
+       - removed Method::Signatures::Simple stuff (dhoss)
 
 0.001005  2011-04-13 15:21:08 CST6CDT
        - Add _any "version" for running code for all versions