You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## v3.0.1 (2017-08-16)
- Fixed in config filter_var validation if 0 given
- Changed if bin log and bin log file not given then use master otherwise given data will be send to master
- Fixed isCheckSum mysql returns string NONE not an empty array and mariaDbGtid fix (tx to @kobi97)
- Added travis mysql 5.6 and 5.7 env
- Removed mariaDB support for query event
- Fixed clear table map cache after rotate event
- "if [ $DB = 'mysql57' ]; then echo deb http://repo.mysql.com/apt/ubuntu/ trusty mysql-5.7 | sudo tee /etc/apt/sources.list.d/mysql.list; sudo apt-get update; sudo apt-get install mysql-server -y --allow-unauthenticated; fi"
25
+
- "if [ $DB = 'mysql56' ]; then echo deb http://repo.mysql.com/apt/ubuntu/ trusty mysql-5.6 | sudo tee /etc/apt/sources.list.d/mysql.list; sudo apt-get update; sudo apt-get install mysql-server -y --allow-unauthenticated; fi"
26
+
- "sudo mysql_upgrade"
25
27
26
28
# Config
27
29
- "echo '[mysqld]' | sudo tee /etc/mysql/conf.d/replication.cnf"
@@ -42,18 +44,13 @@ before_script:
42
44
43
45
- "mysql --version"
44
46
- "mysql -u root -e 'SELECT VERSION();'"
45
-
- "mysql -u root -e \"GRANT ALL PRIVILEGES ON *.* TO ''@'localhost';\""
47
+
- "mysql -u root -e \"GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost';\""
46
48
- "mysql_tzinfo_to_sql /usr/share/zoneinfo/ | mysql -u root mysql"
47
49
48
-
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('root') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
49
-
50
-
env:
51
-
global:
52
-
- setup=basic
50
+
- if [ $DB = 'mysql56' ]; then echo "USE mysql;\nUPDATE user SET password=PASSWORD('root') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root; fi
51
+
- if [ $DB = 'mysql57' ]; then echo "USE mysql;\nUPDATE user SET authentication_string=PASSWORD('root') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root; fi
53
52
54
53
install:
55
-
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
56
-
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
57
-
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
0 commit comments