Accepting request 264453 from server:php:applications

1

OBS-URL: https://build.opensuse.org/request/show/264453
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/phpMyAdmin?expand=0&rev=83
This commit is contained in:
Dominique Leuenberger 2014-12-09 08:14:23 +00:00 committed by Git OBS Bridge
commit eadc59e5ec
5 changed files with 222 additions and 95 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:54b18343b8cd2d69716ad09e49c380f19fc92d9f88378a0f4aba15eb4a33bc17
size 6989658

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc8bb4d87a49fea268a647b679ee452444c61e7051012fb64b8507bd2a38691c
size 7144430

View File

@ -1,11 +1,11 @@
diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin-4.2.0-all-languages/config.sample.inc.php
--- phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php 2014-05-08 13:23:36.000000000 +0200
+++ phpMyAdmin-4.2.0-all-languages/config.sample.inc.php 2014-05-08 22:20:06.671673724 +0200
diff -Pdpru phpMyAdmin-4.3.0-all-languages.orig/config.sample.inc.php phpMyAdmin-4.3.0-all-languages/config.sample.inc.php
--- phpMyAdmin-4.3.0-all-languages.orig/config.sample.inc.php 2014-12-05 16:13:09.000000000 +0100
+++ phpMyAdmin-4.3.0-all-languages/config.sample.inc.php 2014-12-06 10:29:20.097321377 +0100
@@ -10,11 +10,51 @@
* @package PhpMyAdmin
*/
+/*
+ /*
+ * Your phpMyAdmin url
+ *
+ * Complete the variable below with the full url ie
@ -54,7 +54,7 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
/*
* Servers configuration
@@ -25,51 +65,256 @@ $i = 0;
@@ -25,48 +65,261 @@ $i = 0;
* First server
*/
$i++;
@ -76,7 +76,7 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+
+// Use SSL for connecting to MySQL server?
+$cfg['Servers'][$i]['ssl'] = false;
+
+// How to connect to MySQL server ('tcp' or 'socket')
+$cfg['Servers'][$i]['connect_type'] = 'socket';
+
@ -127,26 +127,47 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+
+// Host authentication rules, leave blank for defaults
+$cfg['Servers'][$i]['AllowDeny']['rules'] = array();
+
/*
* phpMyAdmin configuration storage settings.
*/
+$cfg['Servers'][$i]['controlhost'] = 'localhost';
-/* User used to manipulate with storage */
/* User used to manipulate with storage */
-// $cfg['Servers'][$i]['controlhost'] = '';
-// $cfg['Servers'][$i]['controlport'] = '';
-// $cfg['Servers'][$i]['controluser'] = 'pma';
-// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+$cfg['Servers'][$i]['controlhost'] = 'localhost';
+$cfg['Servers'][$i]['controlport'] = '';
+// MySQL control user settings (this user must have read-only
+// access to the "mysql/user" and "mysql/db" tables).
+// The controluser is also used for all relational features (pmadb)
+$cfg['Servers'][$i]['controluser'] = '';
+
+// The password needed for the controluser to login
+// (see $cfg['Servers'][$i]['controluser'])
+$cfg['Servers'][$i]['controlpass'] = '';
+
/* Storage database and tables */
-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
-// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
-// $cfg['Servers'][$i]['relation'] = 'pma__relation';
-// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
-// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
-// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
-// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
-// $cfg['Servers'][$i]['history'] = 'pma__history';
-// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
-// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
-// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
-// $cfg['Servers'][$i]['recent'] = 'pma__recent';
-// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
-// $cfg['Servers'][$i]['users'] = 'pma__users';
-// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
-// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
-// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
-// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
-/* Contrib / Swekey authentication */
-// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
+// Database used for Relation, Bookmark and PDF Features
+// (see _docdir/examples/create_tables.sql)
+// - leave blank for no support
@ -222,6 +243,9 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+// DEFAULT: 'pma_recent'
+$cfg['Servers'][$i]['recent'] = 'pma__recent';
+
+//
+$cfg['Servers'][$i]['favorite'] = 'pma__favorite';
+
+// You can create different user groups with menu items attached to them.
+// Users can be assigned to these groups and the logged in user
+// would only see menu items configured to the usergroup he is assigned to.
@ -236,43 +260,24 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+// DEFAULT: 'pma_navigationhiding'
+$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+
+//
+$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
-/* Storage database and tables */
-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
-// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
-// $cfg['Servers'][$i]['relation'] = 'pma__relation';
-// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
-// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
-// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
-// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
-// $cfg['Servers'][$i]['history'] = 'pma__history';
-// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
-// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
-// $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
-// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
-// $cfg['Servers'][$i]['recent'] = 'pma__recent';
-// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
-// $cfg['Servers'][$i]['users'] = 'pma__users';
-// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
-// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
-// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
/* Contrib / Swekey authentication */
-// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
+// Since release 4.2.0 you can save and load query-by-example searches from the Database > Query panel.
+$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+
+// Since release 4.3.0 you can have a central list of columns per database.
+// You can add/remove columns to the list as per your requirement.
+// These columns in the central list will be available to use while you create a new column
+// for a table or create a table itself. You can select a column from central list
+// while creating a new column, it will save you from writing the same column definition
+// over again or from writing different names for similar column.
+$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+
+// The name of the file containing Swekey ids and login names for
+// hardware authentication. Leave the string empty to deactivate this
+// feature.
+// see _docdir/examples/swekey.sample.conf
+//$cfg['Servers'][$i]['auth_swekey_config'] = '/etc/phpMyAdmin/swekey-pma.conf';
+
+
+/***************************************
+ * Second Server
+ */
/*
- * End of servers configuration
+/*
+$i++;
+$cfg['Servers'][$i]['host'] = 'localhost';
+$cfg['Servers'][$i]['port'] = '';
@ -298,9 +303,9 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+
+/*
+ * phpMyAdmin configuration storage settings.
*/
/*
+ */
+
+/*
+$cfg['Servers'][$i]['controlhost'] = 'localhost';
+$cfg['Servers'][$i]['controluser'] = '';
+$cfg['Servers'][$i]['controlpass'] = '';
@ -321,6 +326,7 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
+$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+$cfg['Servers'][$i]['auth_swekey_config'] = '/etc/phpMyAdmin/swekey-pma_02.conf';
+*/
+
@ -334,19 +340,32 @@ diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/config.sample.inc.php phpMyAdmin
+$cfg['ServerDefault'] = 1;
+$cfg['Server'] = '0';
+unset($cfg['Servers'][0]);
+
+/*
+ * End of servers configuration
+ ****************************************/
+
+
+/*
* Directories for saving/loading files from server
/*
* End of servers configuration
+ ***************************************
*/
$cfg['UploadDir'] = '';
diff -Pdpru phpMyAdmin-4.2.0-all-languages.orig/libraries/vendor_config.php phpMyAdmin-4.2.0-all-languages/libraries/vendor_config.php
--- phpMyAdmin-4.2.0-all-languages.orig/libraries/vendor_config.php 2014-05-08 13:23:37.000000000 +0200
+++ phpMyAdmin-4.2.0-all-languages/libraries/vendor_config.php 2014-05-08 22:05:00.222659219 +0200
/*
diff -Pdpru phpMyAdmin-4.3.0-all-languages.orig/.directory phpMyAdmin-4.3.0-all-languages/.directory
--- phpMyAdmin-4.3.0-all-languages.orig/.directory 1970-01-01 01:00:00.000000000 +0100
+++ phpMyAdmin-4.3.0-all-languages/.directory 2014-12-06 09:52:17.262708923 +0100
@@ -0,0 +1,4 @@
+[Dolphin]
+Timestamp=2014,12,6,9,52,17
+Version=3
+ViewMode=2
diff -Pdpru phpMyAdmin-4.3.0-all-languages.orig/examples/.directory phpMyAdmin-4.3.0-all-languages/examples/.directory
--- phpMyAdmin-4.3.0-all-languages.orig/examples/.directory 1970-01-01 01:00:00.000000000 +0100
+++ phpMyAdmin-4.3.0-all-languages/examples/.directory 2014-12-06 10:21:24.576650595 +0100
@@ -0,0 +1,4 @@
+[Dolphin]
+Timestamp=2014,12,6,10,21,24
+Version=3
+ViewMode=1
diff -Pdpru phpMyAdmin-4.3.0-all-languages.orig/libraries/vendor_config.php phpMyAdmin-4.3.0-all-languages/libraries/vendor_config.php
--- phpMyAdmin-4.3.0-all-languages.orig/libraries/vendor_config.php 2014-12-05 16:13:09.000000000 +0100
+++ phpMyAdmin-4.3.0-all-languages/libraries/vendor_config.php 2014-12-06 10:31:05.851047096 +0100
@@ -17,18 +17,18 @@ if (! defined('PHPMYADMIN')) {
* Path to changelog file, can be gzip compressed. Useful when you want to
* have documentation somewhere else, eg. /usr/share/doc.

View File

@ -1,3 +1,111 @@
-------------------------------------------------------------------
Mon Dec 8 18:26:50 UTC 2014 - ecsos@opensuse.org
- update to 4.3.1 (2014-12-08)
- sf#4609 'Show all' checkbox label is not clickable
- sf#4610 JS error reporting: Hash fragment is reset
- fix bug Undefined index menuswork
- sf#4614 Separator between "Show All" and "Number of rows"
disappears
- sf#4615 SQL highlighting in process list breaks on auto refresh
- sf#4616 Warning in db structure print view page
- fix bug Undefined index navwork, savedsearcheswork, fields
- sf#4620 Undefined index while adding to the central
columns list
- sf#4618 Page scrolls while GIS visualization is zoomed in/out
with mousewheel
- sf#4613 HHVM: method 'ob_gzhandler' not found
- sf#4593 Manual "SELECT" doesn't change active table
- sf#4623 Incomplete PHP OpenSSL support
- sf#4626 Ctrl + click on a column not in sort triggers a server
call to erroneous url
- sf#4625 "Insufficient space to save the file" on export SQL to
file on server
- sf#4627 "file_get_contents(examples/create_tables.sql): failed
to open stream" after update
- sf#4617 UI issues with sortable tables
- sf#4619 SELECT LENGTH(`field`) FROM `table` does not sort
-------------------------------------------------------------------
Sat Dec 6 10:09:35 UTC 2014 - ecsos@opensuse.org
- update to 4.3.0 (2014-12-05)
+ rfe #1502 Smart sorting for int keys
+ rfe #1521 Confirmation message when dropping user(s)
+ rfe #1518 Confirm dialog on accidentally leaving a page
+ rfe #1445 Easy access to "SHOW CREATE ..."
+ rfe #1448 Allow clicking an approximate row count to get
a correct one
+ rfe #1487 "Browse foreign values" should be a modal dialog
+ rfe #1523 Better visual clue for table structure
primary key column
+ rfe #982 Support for editing binary fields in hexadecimal
- sf#4416 New lines are removed when grid editing
+ rfe #706 Multi-db privileges adding
+ rfe #1527 Charts for data in <x-axis, series, value> format
+ rfe Allow saving query charts as images
+ rfe #1145 Preview SQL instead of executing it
+ rfe #759 Use aliases in SQL export for tables and columns
- sf#4450 Query is duplicated on Ctrl+Enter
+ rfe #755 Export with table/column name changes
+ rfe #869 Run SQL query: Allow rollback for InnoDB tables
+ rfe #654 Range Search Capability
+ rfe #1490 Dynamic process list
+ rfe #1522 Drag and Drop SQL import
+ rfe #637 Custom Field Handlers
+ rfe #1488 User privilege tab not shown in all relevant cases
+ rfe #781 Privileges for non superuser
+ rfe #908 Improvements for the table editor (index creation)
+ rfe #1426 Navigation state lost on reload
- sf#4439 Table list in left panel doesn't expand
+ rfe Improved validation when inserting data
+ rfe #1491 Support InnoDB for database Query by example
+ rfe #345 Normalize a table
+ rfe #1123 Zeroconf PMA tables support
+ rfe #1492 Remove the distinct query window / Add SQL
log+history panel
+ rfe #919 Multiple-column foreign key relation
- sf#3165 Redundant foreign keys not supported
- fix bug Incorrect link to documentation
+ rfe #857 Regexp replace
- fix bug Incorrect path in change password when on reverse proxy
or
non-root directory
+ MariaDB 10+ multi-master replication support
+ rfe #1544 MySQL 5.7.5 compatibility
+ rfe #1529 Avoid session timeout when user is active
- sf#4528 Can't import dump via SQL field
+ rfe #1251 Show "Overhead" with same precision for all tables
+ rfe #1546 Improve the js printf library
+ rfe #1542 Better error reporting in Designer
- sf#4547 Micro history does not work in Users page
- sf#4551 Wrong test in source code
- sf#4537 BLOB inline-view JPG column transformation does
not work for anything except simple queries
+ rfe #1535 Keyword-based autocompletion in SQL query editors
- sf#4558 Unable to Add Rows while Creating Table
+ rfe #1547 Wrap No Tables Found message with message box
- sf#4559 Logging in causes 100% CPU usage
- sf#4564 Designer: spaces in table name with edit table link
generates bad links
- sf#4582 Debug SQL works only for the first page
- sf#3869 Count(*) on information_scheme.INNODB_BUFFER_PAGE
with a huge bufferpool
- sf#4495 Comment lines in multiquery
- sf#4535 Loads of Warnings/Notices in PMA_getServerSlaveStatus
on replication slave
- sf#4585 Multi query results not shown
+ rfe #1556 Disabling Show all
- sf#4513 phpmyadmin run very slow (information_schema)
- sf#4243 Super slow page rendering with tens of thousands of DBs
- sf#4391 Upgraded to 4.2.0, insanely slow now
+ rfe #1537 PHP OpenSSL support for cookie encryption/decryption
- sf#4227 Token mismatch when using HTTP AUTH and the SESSION
expires
- change all my old mail address in this changelog
from ecsos@old.domain to ecsos@opensuse.org
-------------------------------------------------------------------
Wed Dec 3 17:14:16 UTC 2014 - ecsos@opensuse.org
@ -88,7 +196,7 @@ Tue Oct 21 22:59:45 UTC 2014 - andreas.stieger@gmx.de
- sf#4563 [security] XSS in monitor query analyzer
-------------------------------------------------------------------
Sat Oct 11 15:34:28 UTC 2014 - ecsos@schirra.net
Sat Oct 11 15:34:28 UTC 2014 - ecsos@opensuse.org
- update to 4.2.10 (2014-10-11)
- sf#4361 Can't change font size
@ -118,7 +226,7 @@ Wed Oct 1 20:26:14 UTC 2014 - andreas.stieger@gmx.de
table structure pages
-------------------------------------------------------------------
Sat Sep 20 12:12:53 UTC 2014 - ecsos@schirra.net
Sat Sep 20 12:12:53 UTC 2014 - ecsos@opensuse.org
- update to 4.2.9 (2014-09-20)
- fix bug ajax.js responseHandler: cannot read property of null
@ -149,7 +257,7 @@ Fri Sep 5 18:39:29 UTC 2014 - chris@computersalat.de
broke apache pkg.
-------------------------------------------------------------------
Sun Aug 31 21:52:38 UTC 2014 - ecsos@schirra.net
Sun Aug 31 21:52:38 UTC 2014 - ecsos@opensuse.org
- update to 4.2.8 (2014-08-31)
- sf#4516 Odd export behavior
@ -198,7 +306,7 @@ Mon Aug 18 18:13:29 UTC 2014 - andreas.stieger@gmx.de
- sf#4505 [security] XSS in view operations page
-------------------------------------------------------------------
Thu Jul 31 21:38:39 UTC 2014 - ecsos@schirra.net
Thu Jul 31 21:38:39 UTC 2014 - ecsos@opensuse.org
- update to 4.2.7 (2014-07-31)
- sf Broken links on home page
@ -210,7 +318,7 @@ Thu Jul 31 21:38:39 UTC 2014 - ecsos@schirra.net
- sf#4500 mysql_doc_template is not defined
-------------------------------------------------------------------
Fri Jul 18 17:24:08 UTC 2014 - ecsos@schirra.net
Fri Jul 18 17:24:08 UTC 2014 - ecsos@opensuse.org
- update to 4.2.6 (2014-07-17)
- sf#4471 Undefined index warning with referenced column.
@ -245,7 +353,7 @@ Fri Jul 18 17:24:08 UTC 2014 - ecsos@schirra.net
groups feature
-------------------------------------------------------------------
Thu Jun 26 19:34:06 UTC 2014 - ecsos@schirra.net
Thu Jun 26 19:34:06 UTC 2014 - ecsos@opensuse.org
- update to 4.2.5 (2014-06-26)
- sf#4467 shell_exec() has been disabled for security reasons
@ -256,7 +364,7 @@ Thu Jun 26 19:34:06 UTC 2014 - ecsos@schirra.net
- mcrypt: remove the requirement (64-bit) and the related warning
-------------------------------------------------------------------
Sat Jun 21 07:20:18 UTC 2014 - ecsos@schirra.net
Sat Jun 21 07:20:18 UTC 2014 - ecsos@opensuse.org
- update to 4.2.4 (2014-06-20)
- sf#4449 Mediawiki export does not produce table header row;
@ -301,7 +409,7 @@ Mon Jun 9 19:16:43 UTC 2014 - andreas.stieger@gmx.de
- sf#4434 Unchecking 'Show SQL queries' results NaN
-------------------------------------------------------------------
Tue May 20 16:58:13 UTC 2014 - ecsos@schirra.net
Tue May 20 16:58:13 UTC 2014 - ecsos@opensuse.org
- update to 4.2.2 (2014-05-20)
- sf#4388 Disable database expansion when enabled throws Error 500
@ -318,7 +426,7 @@ Tue May 20 16:58:13 UTC 2014 - ecsos@schirra.net
- sf#4421 empty maxInputVars on js/messages.php
-------------------------------------------------------------------
Tue May 13 20:15:28 UTC 2014 - ecsos@schirra.net
Tue May 13 20:15:28 UTC 2014 - ecsos@opensuse.org
- update to 4.2.1 (2014-05-13)
- sf#4380 Cannot display table structure with enums
@ -340,7 +448,7 @@ Tue May 13 20:15:28 UTC 2014 - ecsos@schirra.net
(no size but attribute present)
-------------------------------------------------------------------
Thu May 8 14:29:34 UTC 2014 - ecsos@schirra.net
Thu May 8 14:29:34 UTC 2014 - ecsos@opensuse.org
- update to 4.2.0 (2014-05-08)
+ rfe #1403 Export only triggers
@ -405,7 +513,7 @@ Sat Apr 26 20:56:34 UTC 2014 - andreas.stieger@gmx.de
* sf#4376 [interface] Login fields show in separate line
-------------------------------------------------------------------
Sun Apr 13 14:14:42 UTC 2014 - ecsos@schirra.net
Sun Apr 13 14:14:42 UTC 2014 - ecsos@opensuse.org
- update to 4.1.13 (2014-04-13)
* sf#4279 CTRL + up or down moves 2 fields
@ -422,7 +530,7 @@ Sun Apr 13 14:14:42 UTC 2014 - ecsos@schirra.net
is inside a select field
-------------------------------------------------------------------
Thu Mar 27 16:12:55 UTC 2014 - ecsos@schirra.net
Thu Mar 27 16:12:55 UTC 2014 - ecsos@opensuse.org
- update to 4.1.12 (2014-03-27)
* sf#4334 Add event : datepicker won't open
@ -437,7 +545,7 @@ Sat Mar 22 21:44:48 UTC 2014 - andreas.stieger@gmx.de
* sf#4335 reCaptcha problem (4.1.10 regression)
-------------------------------------------------------------------
Sat Mar 22 15:27:37 UTC 2014 - ecsos@schirra.net
Sat Mar 22 15:27:37 UTC 2014 - ecsos@opensuse.org
- update to 4.1.10 (2014-03-22)
* sf#4301 Grid edit: "SELECT" query is replaced by "UPDATE"
@ -450,7 +558,7 @@ Sat Mar 22 15:27:37 UTC 2014 - ecsos@schirra.net
* sf None of the live charts shown on "Status -> Monitor" (Chrome)
-------------------------------------------------------------------
Sat Mar 8 02:00:58 UTC 2014 - ecsos@schirra.net
Sat Mar 8 02:00:58 UTC 2014 - ecsos@opensuse.org
- update to 4.1.9 (2014-03-06)
* sf#4279 CTRL + up or down moves two fields (part one)
@ -473,7 +581,7 @@ Wed Feb 26 23:18:52 UTC 2014 - chris@computersalat.de
- fix changes file
-------------------------------------------------------------------
Sat Feb 22 13:35:15 UTC 2014 - ecsos@schirra.net
Sat Feb 22 13:35:15 UTC 2014 - ecsos@opensuse.org
- update to 4.1.8 (2014-02-22)
* sf#4276 Login loop on session expiry
@ -492,7 +600,7 @@ Sat Feb 22 13:35:15 UTC 2014 - ecsos@schirra.net
results in error and logout
-------------------------------------------------------------------
Sun Feb 9 16:40:00 UTC 2014 - ecsos@schirra.net
Sun Feb 9 16:40:00 UTC 2014 - ecsos@opensuse.org
- fix for bnc#864917
* PMASA-2014-1 ( CVE-2014-1879, CWE-661 CWE-79)
@ -516,7 +624,7 @@ Sun Feb 9 16:40:00 UTC 2014 - ecsos@schirra.net
* sf#4242 Wildcard-containing only_db failure in sidebar
-------------------------------------------------------------------
Sun Jan 26 12:56:25 UTC 2014 - ecsos@schirra.net
Sun Jan 26 12:56:25 UTC 2014 - ecsos@opensuse.org
- update to 4.1.6 (2014-01-26)
* sf#4232 User not found after creating the user
@ -547,7 +655,7 @@ Fri Jan 17 21:42:20 UTC 2014 - andreas.stieger@gmx.de
* sf#4231 DATE columns quick edit decrement by one day
-------------------------------------------------------------------
Wed Jan 8 14:02:09 UTC 2014 - ecsos@schirra.net
Wed Jan 8 14:02:09 UTC 2014 - ecsos@opensuse.org
- update to 4.1.4 (2014-01-07)
* sf#3840 (additional fix) When exporting to gzip format, the data is compressed 2 times
@ -567,7 +675,7 @@ Wed Jan 1 16:36:22 UTC 2014 - andreas.stieger@gmx.de
- add source URL, see https://en.opensuse.org/SourceUrls
-------------------------------------------------------------------
Wed Jan 1 12:59:03 UTC 2014 - ecsos@schirra.net
Wed Jan 1 12:59:03 UTC 2014 - ecsos@opensuse.org
- update to 4.1.3 (2013-12-31)
* sf#3938 PDFDefaultPageSize doc and easy configurability
@ -582,7 +690,7 @@ Wed Jan 1 12:59:03 UTC 2014 - ecsos@schirra.net
- Fix python-bytecode-inconsistent-mtime
-------------------------------------------------------------------
Mon Dec 23 23:47:24 UTC 2013 - ecsos@schirra.net
Mon Dec 23 23:47:24 UTC 2013 - ecsos@opensuse.org
- update to 4.1.2 (2013-12-23)
* sf#4178 Quick edit for BIT type does not work
@ -595,7 +703,7 @@ Mon Dec 23 23:47:24 UTC 2013 - ecsos@schirra.net
* rfe #1468 [interface] No floating for server breadcrumb menu
-------------------------------------------------------------------
Tue Dec 17 17:27:05 UTC 2013 - ecsos@schirra.net
Tue Dec 17 17:27:05 UTC 2013 - ecsos@opensuse.org
- update to 4.1.1 (2013-12-17)
* sf#4154 Error using UNION query
@ -609,7 +717,7 @@ Tue Dec 17 17:27:05 UTC 2013 - ecsos@schirra.net
* sf#4185 Unable to execute create procedure statement from query window
-------------------------------------------------------------------
Sun Dec 15 18:51:58 UTC 2013 - ecsos@schirra.net
Sun Dec 15 18:51:58 UTC 2013 - ecsos@opensuse.org
- update to 4.1.0 (2013-12-11)
* rfe #499 On user creation, warn if the user already exists
@ -675,7 +783,7 @@ Sun Dec 15 18:51:58 UTC 2013 - ecsos@schirra.net
* sf#4168 Rename multiple columns is not working
-------------------------------------------------------------------
Fri Dec 6 14:58:34 UTC 2013 - ecsos@schirra.net
Fri Dec 6 14:58:34 UTC 2013 - ecsos@opensuse.org
- update to 4.0.10 (2013-12-04)
* sf#4150 Clicking database name in query window opens a new tab
@ -688,7 +796,7 @@ Fri Dec 6 14:58:34 UTC 2013 - ecsos@schirra.net
* sf#4158 Events page says no privileges with ALL PRIVILEGES
-------------------------------------------------------------------
Sun Nov 10 12:59:02 UTC 2013 - ecsos@schirra.net
Sun Nov 10 12:59:02 UTC 2013 - ecsos@opensuse.org
- update to 4.0.9 (2013-11-04)
* sf#4104 Can't edit updatable view when searching
@ -703,7 +811,7 @@ Sun Nov 10 12:59:02 UTC 2013 - ecsos@schirra.net
* sf#4147 Accessibility: Images without Alt nor title attribute
-------------------------------------------------------------------
Mon Oct 7 15:36:07 UTC 2013 - ecsos@schirra.net
Mon Oct 7 15:36:07 UTC 2013 - ecsos@opensuse.org
- update to 4.0.8 (2013-10-06)
* sf#3988 Rename view is not working
@ -724,7 +832,7 @@ Mon Oct 7 15:36:07 UTC 2013 - ecsos@schirra.net
* sf#3992 Multi-row edit doesn't clear values when checking NULL
-------------------------------------------------------------------
Sun Sep 29 11:13:39 UTC 2013 - ecsos@schirra.net
Sun Sep 29 11:13:39 UTC 2013 - ecsos@opensuse.org
- update to 4.0.7 (2013-09-23)
* sf#3993 Sorting in database overview with statistics doesn't work
@ -742,7 +850,7 @@ Sun Sep 29 11:13:39 UTC 2013 - ecsos@schirra.net
* sf#3986 Missing DROP VIEW button
-------------------------------------------------------------------
Sat Sep 7 15:42:13 UTC 2013 - ecsos@schirra.net
Sat Sep 7 15:42:13 UTC 2013 - ecsos@opensuse.org
- update to 4.0.6 (2013-09-05)
* sf#4036 Call to undefined function mb_detect_encoding (clarify the doc)
@ -822,7 +930,7 @@ Wed Jul 3 21:40:23 UTC 2013 - obs@ladisch.de
(PMASA-2013-7, CVE-2013-4729)
-------------------------------------------------------------------
Tue Jun 18 22:29:34 UTC 2013 - ecsos@schirra.net
Tue Jun 18 22:29:34 UTC 2013 - ecsos@opensuse.org
- update to 4.0.4 (2013-06-17)
* sf#3959 Using DefaultTabDatabase in NavigationTree for Database Click
@ -847,7 +955,7 @@ Wed Jun 12 21:59:40 UTC 2013 - chris@computersalat.de
* add missing 'fix for bnc#xxxxxx
-------------------------------------------------------------------
Thu Jun 6 16:27:24 UTC 2013 - ecsos@schirra.net
Thu Jun 6 16:27:24 UTC 2013 - ecsos@opensuse.org
- update to 4.0.3 (2013-06-05)
* sf#3941 Recent tables list always empty
@ -864,7 +972,7 @@ Thu Jun 6 16:27:24 UTC 2013 - ecsos@schirra.net
* PMASA-2013-6 (CVE-2013-3242)
-------------------------------------------------------------------
Sat May 25 17:33:09 UTC 2013 - ecsos@schirra.net
Sat May 25 17:33:09 UTC 2013 - ecsos@opensuse.org
- update to 4.0.2 (2013-05-24)
* sf#3902 Cannot browse when table name contains keyword "call"
@ -887,7 +995,7 @@ Sat May 25 17:33:09 UTC 2013 - ecsos@schirra.net
* sf#3917 CountTables directive is deprecated
-------------------------------------------------------------------
Wed May 15 08:00:00 UTC 2013 - ecsos@schirra.net
Wed May 15 08:00:00 UTC 2013 - ecsos@opensuse.org
- update to 4.0.1.0 (2013-05-14)
* sf#3879 Import broken for CSV using LOAD DATA
@ -912,7 +1020,7 @@ Wed May 15 08:00:00 UTC 2013 - ecsos@schirra.net
* bug fix compat with tcpdf >= 6.0 (tested with 6.0.012)
-------------------------------------------------------------------
Fri May 3 17:32:42 UTC 2013 - ecsos@schirra.net
Fri May 3 17:32:42 UTC 2013 - ecsos@opensuse.org
- update to 4.0.0 (2013-05-03)
* Patch #3481047 for rfe #3480477 Insert as new row enhancement
@ -1031,7 +1139,7 @@ Fri May 3 17:32:42 UTC 2013 - ecsos@schirra.net
* PMASA-2013-5 (CVE-2013-3241)
-------------------------------------------------------------------
Wed Apr 24 22:41:50 UTC 2013 - ecsos@schirra.net
Wed Apr 24 22:41:50 UTC 2013 - ecsos@opensuse.org
- update to 3.5.8.1 (2013-04-24)
* [security] Remote code execution (preg_replace), reported by Janek Vind
@ -1044,7 +1152,7 @@ Wed Apr 24 22:41:50 UTC 2013 - ecsos@schirra.net
* PMASA-2013-3 (CVE-2013-3239)
-------------------------------------------------------------------
Mon Apr 8 18:33:29 UTC 2013 - ecsos@schirra.net
Mon Apr 8 18:33:29 UTC 2013 - ecsos@opensuse.org
- update to 3.5.8 (2013-04-08)
* sf#3828 MariaDB reported as MySQL

View File

@ -34,7 +34,7 @@ Name: phpMyAdmin
Summary: Administration of MySQL over the web
License: GPL-2.0+
Group: Productivity/Networking/Web/Frontends
Version: 4.2.13.1
Version: 4.3.1
Release: 0
Url: http://www.phpMyAdmin.net
Source0: http://sourceforge.net/projects/phpmyadmin/files/%{name}-%{version}-all-languages.tar.bz2