[sqitch] branch master updated (a432fc9 -> 27febf7)

zeha at debian.org zeha at debian.org
Fri Aug 21 21:19:34 UTC 2015


This is an automated email from the git hooks/post-receive script.

zeha pushed a change to branch master
in repository sqitch.

      from  a432fc9   Change `Section` to `database`
      adds  d5ba776   Increment to v0.9993.
      adds  b07280b   Determine LC_TIME value in just one place.
      adds  b377fba   Eliminate rounding with sprintf().
      adds  f8a81d7   Remove substring().
      adds  ec8d051   Work around missing mysql_* attributes.
      adds  d5fc405   Apparently I can't count.
      adds  ee6c81e   Let Oracle deploy > 1000 changes.
      adds  3aeb1b8   Compare 0 if mysql_serverversion is not set.
      adds  c06f24f   fix typos in comments and messages
      adds  218e724   Credit @olshevskiy87 for the proof-reading!
      adds  9a9c364   Fix warning test failures on Perl 5.23.1.
      adds  4bc3f81   Add --set support to the MySQL engine.
      adds  70b4a3e   tiny doc fix
      adds  59a1cb2   Add --reworked* options.
      adds  8f1461b   Add reworked* attributes to Target.
      adds  6c86506   Teach Change to use reworked_* directories.
      adds  77c8283   Wordsmithing.
      adds  dadb408   Bundle reworked scripts.
      adds  e089a1b   Test bundling of reworked change scripts.
      adds  67665fd   Restore documentation of dest_top_dir.
      adds  17a94e6   Teach init about reworked directories.
      adds  9607ec0   Note reworked directory changes.
      adds  adf4f7d   Remove reworked options.
      adds  d2d548e   Add directory options to the init command.
      adds  bb193ef   Move script option handling to a role.
      adds  8984cbd   Move script-specific references from init command code.
      adds  54d9264   Replace multiple directory options with --dir.
      adds  68490b1   Update sqitch-configuration.
      adds  e0e0342   Teach engine command about reworked directories.
      adds  a2db9a2   Replace engine set-* actions with alter action.
      adds  8650245   Rename ScriptConfigCommand to TargetConfigCommand.
      adds  b181999   Use --set in the init command.
      adds  fd5fc9f   Add all other --set options to init.
      adds  3909754   Port the engine command to TargetConfigCommand.
      adds  12ee3ce   Move directory creation from init to TargetConfigCommand.
      adds  0b8e0d4   Document property_keys in engine.
      adds  ea25517   Make engine die on target mismatch.
      adds  2965e96   Add config_target to TargetConfigCommand.
      adds  35f4438   Move write_plan to TargetConfigCommand.
      adds  a4c7f12   Teach engine to create directores and plan.
      adds  b61705a   Client is a string.
      adds  f729903   Migrate target to TargetConfigCommand.
      adds  10940d9   Get proper target in target command.
      adds  08725af   Pass the target to write_plan.
      adds  593519b   Test and fix the `alter` action of the `target` action.
      adds  3cdbf72   Properly validate target URI.
      adds  31b7d00   Add *_dir methods to Change.
      adds  41bb87c   Firebird can limit.
      adds  8d0848a   Fix ordering on Firebird.
      adds  07476e3   Canonical engine.
      adds  467a588   Deprecate core script options.
      adds  f9652fd   Remove commented script paths from sample configs.
      adds  1dbb82a   Note fix to firebird change + tag search bug.
      adds  4eb4d03   Prefer --set engine=` to `--engine`.
      adds  418423b   Add explicit options to init, engine, and target.
      adds  9af5a06   Replace wayward --set options.
      adds  f507e53   Use only local config file to find all targets.
      adds  0ed1b49   Not fix to --all.
      adds  56507c7   Update sqitch-configuration.
      adds  899194a   Add "Overworked" section to sqitch-configuration.
      adds  1b915cd   Merge branch 'rework-dir'.
      adds  fa9d58b   Pass MySQL URI query params to client.
      adds  3ed251a   Fix Windows test failures.
      adds  33be2a5   Organize changes into sections.
      adds  51c1ff2   Update l10n catalogs.
      adds  ec3abc1   Timestamp v0.9993.
      adds  2306b14   Imported Upstream version 0.9993
       new  750a5ff   Merge tag 'upstream/0.9993'
       new  f198fb6   Update debian/changelog
       new  27febf7   Release to unstable

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Build.PL                                           |   4 +-
 Changes                                            |  87 +++
 MANIFEST                                           |   6 +-
 META.json                                          |   6 +-
 META.yml                                           |   4 +-
 README                                             |   4 +-
 README.md                                          |   2 +-
 debian/changelog                                   |   6 +
 dist/sqitch.spec                                   |   2 +-
 lib/App/Sqitch.pm                                  |  20 +-
 lib/App/Sqitch/Command.pm                          |   2 +-
 lib/App/Sqitch/Command/add.pm                      |   2 +-
 lib/App/Sqitch/Command/bundle.pm                   |  59 +-
 lib/App/Sqitch/Command/checkout.pm                 |   2 +-
 lib/App/Sqitch/Command/config.pm                   |   2 +-
 lib/App/Sqitch/Command/deploy.pm                   |   2 +-
 lib/App/Sqitch/Command/engine.pm                   | 255 +++++---
 lib/App/Sqitch/Command/help.pm                     |   4 +-
 lib/App/Sqitch/Command/init.pm                     | 183 ++----
 lib/App/Sqitch/Command/log.pm                      |   2 +-
 lib/App/Sqitch/Command/plan.pm                     |   2 +-
 lib/App/Sqitch/Command/rebase.pm                   |   2 +-
 lib/App/Sqitch/Command/revert.pm                   |   2 +-
 lib/App/Sqitch/Command/rework.pm                   |   2 +-
 lib/App/Sqitch/Command/show.pm                     |   2 +-
 lib/App/Sqitch/Command/status.pm                   |   2 +-
 lib/App/Sqitch/Command/tag.pm                      |   2 +-
 lib/App/Sqitch/Command/target.pm                   | 184 +++---
 lib/App/Sqitch/Command/upgrade.pm                  |   2 +-
 lib/App/Sqitch/Command/verify.pm                   |   2 +-
 lib/App/Sqitch/Config.pm                           |   2 +-
 lib/App/Sqitch/DateTime.pm                         |   2 +-
 lib/App/Sqitch/Engine.pm                           |  15 +-
 lib/App/Sqitch/Engine/firebird.pm                  |  18 +-
 lib/App/Sqitch/Engine/mysql.pm                     | 108 +++-
 lib/App/Sqitch/Engine/oracle.pm                    |  23 +-
 lib/App/Sqitch/Engine/pg.pm                        |   6 +-
 lib/App/Sqitch/Engine/sqlite.pm                    |   6 +-
 lib/App/Sqitch/Engine/vertica.pm                   |   6 +-
 lib/App/Sqitch/ItemFormatter.pm                    |   2 +-
 lib/App/Sqitch/Plan.pm                             |   4 +-
 lib/App/Sqitch/Plan/Blank.pm                       |   2 +-
 lib/App/Sqitch/Plan/Change.pm                      |  56 +-
 lib/App/Sqitch/Plan/ChangeList.pm                  |   4 +-
 lib/App/Sqitch/Plan/Depend.pm                      |   2 +-
 lib/App/Sqitch/Plan/Line.pm                        |   2 +-
 lib/App/Sqitch/Plan/LineList.pm                    |   2 +-
 lib/App/Sqitch/Plan/Pragma.pm                      |   2 +-
 lib/App/Sqitch/Plan/Tag.pm                         |   2 +-
 lib/App/Sqitch/Role/DBIEngine.pm                   |   8 +-
 lib/App/Sqitch/Role/RevertDeployCommand.pm         |   2 +-
 lib/App/Sqitch/Role/TargetConfigCommand.pm         | 531 ++++++++++++++++
 lib/App/Sqitch/Target.pm                           | 168 +++--
 lib/App/Sqitch/Types.pm                            |   4 +-
 lib/App/Sqitch/X.pm                                |   2 +-
 lib/LocaleData/de/LC_MESSAGES/App-Sqitch.mo        | Bin 463 -> 463 bytes
 lib/LocaleData/fr/LC_MESSAGES/App-Sqitch.mo        | Bin 13385 -> 13385 bytes
 lib/sqitch-add.pod                                 |   3 +-
 lib/sqitch-config-usage.pod                        |   1 -
 lib/sqitch-config.pod                              |  12 +-
 lib/sqitch-configuration.pod                       | 691 ++++++++++++++-------
 lib/sqitch-deploy.pod                              |   2 +
 lib/sqitch-engine-usage.pod                        |  25 +-
 lib/sqitch-engine.pod                              | 157 +++--
 lib/sqitch-init-usage.pod                          |  14 +-
 lib/sqitch-init.pod                                | 196 +++++-
 lib/sqitch-passwords.pod                           |   4 +-
 lib/sqitch-rebase.pod                              |  12 +-
 lib/sqitch-revert.pod                              |   6 +-
 lib/sqitch-target-usage.pod                        |  24 +-
 lib/sqitch-target.pod                              | 149 +++--
 lib/sqitch-verify.pod                              |   2 +
 lib/sqitch.pod                                     |  51 +-
 lib/sqitchcommands.pod                             |   4 +-
 lib/sqitchtutorial-firebird.pod                    |  16 +-
 lib/sqitchtutorial-mysql.pod                       |   8 +-
 lib/sqitchtutorial-oracle.pod                      |  14 +-
 lib/sqitchtutorial-sqlite.pod                      |  14 +-
 lib/sqitchtutorial-vertica.pod                     |  14 +-
 lib/sqitchtutorial.pod                             |   8 +-
 lib/sqitchusage.pod                                |   4 -
 t/bundle.t                                         |  63 +-
 t/change.t                                         |  40 +-
 t/datetime.t                                       |  10 +-
 t/engine.t                                         |   5 +-
 .../users.sql => reworked/deploy/users at alpha.sql}  |   0
 .../users.sql => reworked/revert/users at alpha.sql}  |   0
 t/engine/sqitch.plan                               |   1 +
 t/engine_cmd.t                                     | 320 ++++++++--
 t/firebird.t                                       |   2 +-
 t/init.t                                           | 249 +++++---
 t/item_formatter.t                                 |   9 +-
 t/lib/DBIEngineTest.pm                             |   4 +-
 t/lib/LC.pm                                        |  17 +
 t/log.t                                            |  13 +-
 t/multiplan.conf                                   |   2 +
 t/mysql.t                                          | 117 +++-
 t/options.t                                        |  39 +-
 t/plan.t                                           |   6 +-
 t/plan_command.t                                   |  12 +-
 t/rework.t                                         |  29 +-
 t/show.t                                           |  14 +-
 t/target.t                                         | 131 +++-
 t/target_cmd.t                                     | 378 ++++++++---
 xt/release/pod-spelling.t                          |   1 +
 105 files changed, 3403 insertions(+), 1325 deletions(-)
 create mode 100644 lib/App/Sqitch/Role/TargetConfigCommand.pm
 copy t/engine/{deploy/users.sql => reworked/deploy/users at alpha.sql} (100%)
 copy t/engine/{revert/users.sql => reworked/revert/users at alpha.sql} (100%)
 create mode 100644 t/lib/LC.pm

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/sqitch.git



More information about the Pkg-perl-cvs-commits mailing list