Commit 850a770a authored by Otto Kekäläinen's avatar Otto Kekäläinen
Browse files

Update changelog and refresh patches after 10.1.38 import

parent 534b0c92
mariadb-10.1 (10.1.38-0+deb9u1) stretch-security; urgency=high
* SECURITY UPDATE: New upstream release 10.1.38. Includes fixes for
the following security vulnerabilities (Closes: #920933);
- CVE-2019-2537
- CVE-2019-2529
* Update correct branch name in gbp.conf
-- Otto Kekäläinen <otto@debian.org> Wed, 06 Feb 2019 07:53:10 +0200
mariadb-10.1 (10.1.37-0+deb9u1) stretch-security; urgency=high mariadb-10.1 (10.1.37-0+deb9u1) stretch-security; urgency=high
* SECURITY UPDATE: New upstream release 10.1.37. Includes fixes for * SECURITY UPDATE: New upstream release 10.1.37. Includes fixes for
......
...@@ -28,8 +28,8 @@ Subject: libmariadbclient-rename ...@@ -28,8 +28,8 @@ Subject: libmariadbclient-rename
MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc COMPONENT Test) MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc COMPONENT Test)
SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS") SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS")
-TARGET_LINK_LIBRARIES(mysqltest mysqlclient pcre pcreposix) -TARGET_LINK_LIBRARIES(mysqltest mysqlclient pcreposix pcre)
+TARGET_LINK_LIBRARIES(mysqltest mariadbclient pcre pcreposix) +TARGET_LINK_LIBRARIES(mysqltest mariadbclient pcreposix pcre)
SET_TARGET_PROPERTIES(mysqltest PROPERTIES ENABLE_EXPORTS TRUE) SET_TARGET_PROPERTIES(mysqltest PROPERTIES ENABLE_EXPORTS TRUE)
......
...@@ -6,8 +6,6 @@ Subject: mytop-merge_src:mytop_improvements ...@@ -6,8 +6,6 @@ Subject: mytop-merge_src:mytop_improvements
scripts/mytop.sh | 184 +++++++++++++++++++++++++++++++++++++++---------------- scripts/mytop.sh | 184 +++++++++++++++++++++++++++++++++++++++----------------
1 file changed, 132 insertions(+), 52 deletions(-) 1 file changed, 132 insertions(+), 52 deletions(-)
diff --git a/scripts/mytop.sh b/scripts/mytop.sh
index 17a87e9..e8cc902 100644
--- a/scripts/mytop.sh --- a/scripts/mytop.sh
+++ b/scripts/mytop.sh +++ b/scripts/mytop.sh
@@ -15,6 +15,7 @@ mytop - display MariaDB server performan @@ -15,6 +15,7 @@ mytop - display MariaDB server performan
...@@ -172,7 +170,7 @@ index 17a87e9..e8cc902 100644 ...@@ -172,7 +170,7 @@ index 17a87e9..e8cc902 100644
- printf(" Sorts: %5.0f qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f\n", - printf(" Sorts: %5.0f qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f\n",
+ printf(" Sorts: %6.0f qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f\n", + printf(" Sorts: %6.0f qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f\n",
( $STATUS{Sort_rows} - $OLD_STATUS{Sort_rows} ) / $t_delta, ( $STATUS{Sort_rows} - $OLD_STATUS{Sort_rows} ) / $t_delta,
( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta, ( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta,
( # slow now (qps) ( # slow now (qps)
@@ -1020,7 +1062,7 @@ sub GetData() @@ -1020,7 +1062,7 @@ sub GetData()
...@@ -213,7 +211,7 @@ index 17a87e9..e8cc902 100644 ...@@ -213,7 +211,7 @@ index 17a87e9..e8cc902 100644
if (defined($data->{Master_Host})) if (defined($data->{Master_Host}))
{ {
if (defined($data->{Seconds_Behind_Master})) if (defined($data->{Seconds_Behind_Master}))
@@ -1210,6 +1252,11 @@ sub GetData() @@ -1211,6 +1253,11 @@ sub GetData()
# my $host = $thread->{Host}; # my $host = $thread->{Host};
my $host = gethostbyaddr(inet_aton($thread->{Host}), AF_INET); my $host = gethostbyaddr(inet_aton($thread->{Host}), AF_INET);
# $host =~ s/^([^.]+).*/$1/; # $host =~ s/^([^.]+).*/$1/;
...@@ -225,7 +223,7 @@ index 17a87e9..e8cc902 100644 ...@@ -225,7 +223,7 @@ index 17a87e9..e8cc902 100644
$thread->{Host} = $host; $thread->{Host} = $host;
} }
@@ -1233,18 +1280,19 @@ sub GetData() @@ -1234,18 +1281,19 @@ sub GetData()
## break EXPLAIN if you try to explain a mangled query. It ## break EXPLAIN if you try to explain a mangled query. It
## may be re-enabled later as an option. ## may be re-enabled later as an option.
...@@ -252,7 +250,7 @@ index 17a87e9..e8cc902 100644 ...@@ -252,7 +250,7 @@ index 17a87e9..e8cc902 100644
## stow it in the cache ## stow it in the cache
$qcache{$thread->{Id}} = $thread->{Info}; $qcache{$thread->{Id}} = $thread->{Info};
@@ -1371,7 +1419,7 @@ sub GetInnoDBStatus() @@ -1372,7 +1420,7 @@ sub GetInnoDBStatus()
} }
} }
...@@ -261,7 +259,7 @@ index 17a87e9..e8cc902 100644 ...@@ -261,7 +259,7 @@ index 17a87e9..e8cc902 100644
open P, "|$config{pager}" or die "$!"; open P, "|$config{pager}" or die "$!";
print keys %{$data[0]}; print keys %{$data[0]};
@@ -1722,7 +1770,7 @@ Help for mytop version $main::VERSION by @@ -1723,7 +1771,7 @@ Help for mytop version $main::VERSION by
e - explain the query that a thread is running e - explain the query that a thread is running
E - display current replication error E - display current replication error
f - show full query info for a given thread f - show full query info for a given thread
...@@ -270,7 +268,7 @@ index 17a87e9..e8cc902 100644 ...@@ -270,7 +268,7 @@ index 17a87e9..e8cc902 100644
h - show only a specifc host's connections h - show only a specifc host's connections
H - toggle the mytop header H - toggle the mytop header
i - toggle the display of idle (sleeping) threads i - toggle the display of idle (sleeping) threads
@@ -1737,7 +1785,7 @@ Help for mytop version $main::VERSION by @@ -1738,7 +1786,7 @@ Help for mytop version $main::VERSION by
r - reset the status counters (via FLUSH STATUS on your server) r - reset the status counters (via FLUSH STATUS on your server)
R - change reverse IP lookup R - change reverse IP lookup
s - change the delay between screen updates s - change the delay between screen updates
...@@ -279,7 +277,7 @@ index 17a87e9..e8cc902 100644 ...@@ -279,7 +277,7 @@ index 17a87e9..e8cc902 100644
t - switch to thread view (default) t - switch to thread view (default)
u - show only a specific user u - show only a specific user
V - show variables V - show variables
@@ -1745,7 +1793,7 @@ Help for mytop version $main::VERSION by @@ -1746,7 +1794,7 @@ Help for mytop version $main::VERSION by
! - Skip an error that has stopped replications (at your own risk) ! - Skip an error that has stopped replications (at your own risk)
L - show full queries (do not strip to terminal width) L - show full queries (do not strip to terminal width)
...@@ -288,7 +286,7 @@ index 17a87e9..e8cc902 100644 ...@@ -288,7 +286,7 @@ index 17a87e9..e8cc902 100644
This version comes as part of the ${GREEN}MariaDB${RESET} distribution. This version comes as part of the ${GREEN}MariaDB${RESET} distribution.
]; ];
@@ -1805,6 +1853,9 @@ sub Hashes($) @@ -1806,6 +1854,9 @@ sub Hashes($)
sub Execute($) sub Execute($)
{ {
my $sql = shift; my $sql = shift;
...@@ -298,7 +296,7 @@ index 17a87e9..e8cc902 100644 ...@@ -298,7 +296,7 @@ index 17a87e9..e8cc902 100644
my $sth = $dbh->prepare($sql); my $sth = $dbh->prepare($sql);
if (not $sth) { ReadMode($RM_RESET); die $DBI::errstr; } if (not $sth) { ReadMode($RM_RESET); die $DBI::errstr; }
@@ -1861,7 +1912,7 @@ B<mytop> [options] @@ -1862,7 +1913,7 @@ B<mytop> [options]
=head1 AVAILABILITY =head1 AVAILABILITY
...@@ -307,7 +305,7 @@ index 17a87e9..e8cc902 100644 ...@@ -307,7 +305,7 @@ index 17a87e9..e8cc902 100644
This version comes as part of the B<MariaDB> distribution. See B<http://mariadb.org/>. This version comes as part of the B<MariaDB> distribution. See B<http://mariadb.org/>.
@@ -1875,6 +1926,7 @@ In order for B<mytop> to function proper @@ -1876,6 +1927,7 @@ In order for B<mytop> to function proper
following: following:
* Perl 5.005 or newer * Perl 5.005 or newer
...@@ -315,7 +313,7 @@ index 17a87e9..e8cc902 100644 ...@@ -315,7 +313,7 @@ index 17a87e9..e8cc902 100644
* Getopt::Long * Getopt::Long
* DBI and DBD::mysql * DBI and DBD::mysql
* Term::ReadKey from CPAN * Term::ReadKey from CPAN
@@ -2016,46 +2068,49 @@ have two dashes `--'. Short arguments on @@ -2017,46 +2069,49 @@ have two dashes `--'. Short arguments on
=over =over
...@@ -377,7 +375,7 @@ index 17a87e9..e8cc902 100644 ...@@ -377,7 +375,7 @@ index 17a87e9..e8cc902 100644
If you're running B<mytop> on the same host as MariaDB, you may wish to If you're running B<mytop> on the same host as MariaDB, you may wish to
have it use the MariaDB socket directly rather than a standard TCP/IP have it use the MariaDB socket directly rather than a standard TCP/IP
@@ -2070,7 +2125,7 @@ Default: none. @@ -2071,7 +2126,7 @@ Default: none.
=item B<--header> or B<--noheader> =item B<--header> or B<--noheader>
...@@ -386,7 +384,7 @@ index 17a87e9..e8cc902 100644 ...@@ -386,7 +384,7 @@ index 17a87e9..e8cc902 100644
with the B<h> key while B<mytop> is running. with the B<h> key while B<mytop> is running.
Default: header. Default: header.
@@ -2096,7 +2151,7 @@ Default: idle. @@ -2097,7 +2152,7 @@ Default: idle.
Specify if you want to be prompted to type in your database password. Specify if you want to be prompted to type in your database password.
This provides a little bit more security since it not only prevents This provides a little bit more security since it not only prevents
the password from viewable in a process list, but also doesn't require the password from viewable in a process list, but also doesn't require
...@@ -395,7 +393,7 @@ index 17a87e9..e8cc902 100644 ...@@ -395,7 +393,7 @@ index 17a87e9..e8cc902 100644
You will B<only> be prompted if a password has not been specified in You will B<only> be prompted if a password has not been specified in
your config file or through another command line option. your config file or through another command line option.
@@ -2110,6 +2165,27 @@ with hostnames but toggling this option. @@ -2111,6 +2166,27 @@ with hostnames but toggling this option.
Default: noresolve Default: noresolve
...@@ -423,7 +421,7 @@ index 17a87e9..e8cc902 100644 ...@@ -423,7 +421,7 @@ index 17a87e9..e8cc902 100644
=back =back
Command-line arguments will always take precedence over config file Command-line arguments will always take precedence over config file
@@ -2153,6 +2229,13 @@ you want them to, of course). @@ -2154,6 +2230,13 @@ you want them to, of course).
You may have white space on either side of the C<=> in lines of the You may have white space on either side of the C<=> in lines of the
config file. config file.
...@@ -437,7 +435,7 @@ index 17a87e9..e8cc902 100644 ...@@ -437,7 +435,7 @@ index 17a87e9..e8cc902 100644
=head2 Shortcut Keys =head2 Shortcut Keys
The following keys perform various actions while B<mytop> is The following keys perform various actions while B<mytop> is
@@ -2204,8 +2287,8 @@ running queries appear at the top of the @@ -2205,8 +2288,8 @@ running queries appear at the top of the
=item B<I> =item B<I>
...@@ -448,7 +446,7 @@ index 17a87e9..e8cc902 100644 ...@@ -448,7 +446,7 @@ index 17a87e9..e8cc902 100644
summarize that data rather than producing raw output. summarize that data rather than producing raw output.
=item B<k> =item B<k>
@@ -2258,8 +2341,8 @@ Show only threads owned by a giver user. @@ -2259,8 +2342,8 @@ Show only threads owned by a giver user.
The B<s> key has a command-line counterpart: B<-s>. The B<s> key has a command-line counterpart: B<-s>.
...@@ -459,7 +457,7 @@ index 17a87e9..e8cc902 100644 ...@@ -459,7 +457,7 @@ index 17a87e9..e8cc902 100644
=head1 BUGS =head1 BUGS
@@ -2292,9 +2375,6 @@ width. If you have fairly long database/ @@ -2293,9 +2376,6 @@ width. If you have fairly long database/
may appear odd. I have no good idea as to how best to deal with that may appear odd. I have no good idea as to how best to deal with that
yet. Suggestions are welcome. yet. Suggestions are welcome.
...@@ -469,7 +467,7 @@ index 17a87e9..e8cc902 100644 ...@@ -469,7 +467,7 @@ index 17a87e9..e8cc902 100644
You should be able to specify the columns you'd like to see in the You should be able to specify the columns you'd like to see in the
display and the order in which they appear. If you only have one display and the order in which they appear. If you only have one
username that connects to your database, it's probably not worth username that connects to your database, it's probably not worth
@@ -2411,12 +2491,12 @@ terminals don't freak out. @@ -2412,12 +2492,12 @@ terminals don't freak out.
=item jon r. luini <falcon@chime.com> =item jon r. luini <falcon@chime.com>
......
...@@ -8,7 +8,7 @@ Subject: remove_rename_mariadb-server_files_in ...@@ -8,7 +8,7 @@ Subject: remove_rename_mariadb-server_files_in
--- a/CMakeLists.txt --- a/CMakeLists.txt
+++ b/CMakeLists.txt +++ b/CMakeLists.txt
@@ -450,12 +450,6 @@ CONFIGURE_FILE( @@ -456,12 +456,6 @@ CONFIGURE_FILE(
${CMAKE_SOURCE_DIR}/cmake/info_macros.cmake.in ${CMAKE_SOURCE_DIR}/cmake/info_macros.cmake.in
${CMAKE_BINARY_DIR}/info_macros.cmake @ONLY) ${CMAKE_BINARY_DIR}/info_macros.cmake @ONLY)
......
...@@ -13,7 +13,7 @@ Subject: scripts__mysql_install_db.sh__no_test ...@@ -13,7 +13,7 @@ Subject: scripts__mysql_install_db.sh__no_test
--- a/scripts/mysql_install_db.sh --- a/scripts/mysql_install_db.sh
+++ b/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh
@@ -419,7 +419,7 @@ then @@ -429,7 +429,7 @@ then
fi fi
# Create database directories # Create database directories
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment