File tree Expand file tree Collapse file tree 15 files changed +31
-18
lines changed
Expand file tree Collapse file tree 15 files changed +31
-18
lines changed Original file line number Diff line number Diff line change 1818/local /
1919/LocaleData /
2020/lib /LocaleData /
21+ .vscode /
Original file line number Diff line number Diff line change 11Revision history for Perl extension App::Sqitch
22
3+ 1.5.1 2025-03-16T26:55:17Z
4+ - Fixed a bug introduced in v1.5.0 where the MySQL engine connected to
5+ the target database instead of the registry database. Thanks to
6+ @tiberiusferreira for the report (#862)!
7+ - Fixed test failures with some Exasol and Firebird configurations.
8+ Thanks to Slaven Rezić for the report (#858)!
9+
3101.5.0 2025-01-08T03:22:40
411 - Fix improperly nested Pod headers that were incrementing two levels
512 relative to their parent headers, which messed with the HTML output on
Original file line number Diff line number Diff line change 1- App/Sqitch version v1.5.0
1+ App/Sqitch version v1.5.1
22=========================
33
44| Release | Coverage | Database ||
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name = App-Sqitch
22license = MIT
33copyright_holder = " iovation Inc., David E. Wheeler"
44copyright_year = 2012-2025
5- version = v1.5.0
5+ version = v1.5.1
66
77[GatherDir]
88exclude_filename = dist/cpanfile
Original file line number Diff line number Diff line change 11Name: sqitch
2- Version: 1.5.0
2+ Version: 1.5.1
33Release: 1%{?dist }
44Summary: Sensible database change management
55License: MIT
@@ -309,6 +309,9 @@ also be installed.
309309# No additional files required.
310310
311311%changelog
312+ *
Sun Mar 16 2025 David E. Wheeler <[email protected] > 1.5.1-1 313+ - Upgrade to v1.5.1.
314+
312315*
Tue Jan 7 2025 David E. Wheeler <[email protected] > 1.5.0-1 313316- Upgrade to v1.5.0.
314317- Replace DBD::mysql with DBD::MariaDB.
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ sub remove_build_dependencies {
6464
65651;
6666
67- # List of distirbutions that might be installed but are not actually needed to
67+ # List of distributions that might be installed but are not actually needed to
6868# run Sqitch. Used to track unneeded installs so they can be removed by
6969# remove_build_dependencies().
7070#
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ sub _def_user { $_[0]->_mycnf->{user} || $_[0]->sqitch->sysuser }
6565sub _def_pass { $ENV {MYSQL_PWD } || shift -> _mycnf-> {password } }
6666
6767sub _dsn {
68- (my $dsn = shift -> uri -> dbi_dsn) =~ s /\A dbi:mysql/ dbi:MariaDB/ ;
68+ (my $dsn = shift -> registry_uri -> dbi_dsn) =~ s /\A dbi:mysql/ dbi:MariaDB/ ;
6969 return $dsn ;
7070}
7171
Original file line number Diff line number Diff line change 66#, fuzzy
77msgid ""
88msgstr ""
9- "Project-Id-Version : App-Sqitch v1.5.0 \n "
9+ "Project-Id-Version : App-Sqitch v1.5.1 \n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2025-01-04 14:21 -0500\n "
11+ "POT-Creation-Date : 2025-01-18 18:18 -0500\n "
1212"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
1313"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
1414"
Language-Team :
LANGUAGE <[email protected] >\n "
Original file line number Diff line number Diff line change @@ -414,7 +414,7 @@ END {
414414$uri = URI-> new(
415415 $ENV {SQITCH_TEST_EXASOL_URI } ||
416416 $ENV {EXA_URI } ||
417- ' db:dbadmin:password@localhost/dbadmin'
417+ ' db:exasol:// dbadmin:password@localhost/dbadmin'
418418);
419419my $err ;
420420for my $i (1..30) {
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ my $uri;
3131my $tmpdir ;
3232my $have_fb_driver = 1; # assume DBD::Firebird is installed and so is Firebird
3333
34- # Is DBD::Firebird realy installed?
34+ # Is DBD::Firebird really installed?
3535try { require DBD::Firebird; } catch { $have_fb_driver = 0; };
3636
3737BEGIN {
@@ -472,11 +472,13 @@ DBIEngineTest->run(
472472 # DBD::Firebird.
473473 my $cmd = $self -> client;
474474 my $cmd_echo = qx( echo "quit;" | "$cmd " -z -quiet 2>&1 ) ;
475- return 0 unless $cmd_echo =~ m { Firebird} ims ;
475+ App::Sqitch::X::hurl(' isql not for Firebird' )
476+ unless $cmd_echo =~ m { Firebird} ims ;
476477 chomp $cmd_echo ;
477478 say " # Detected $cmd_echo " ;
478479 # Skip if no DBD::Firebird.
479- return 0 unless $have_fb_driver ;
480+ App::Sqitch::X::hurl(' DBD::Firebird did not load' )
481+ unless $have_fb_driver ;
480482 say " # Connected to Firebird $fb_version " if $fb_version ;
481483 return 1;
482484 },
You can’t perform that action at this time.
0 commit comments