-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
2036 lines (1383 loc) · 47.6 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# FromDual MyEnv (https://www.fromdual.com/myenv-mysql-mariadb-basenv)
# CHANGELOG
#
Version 2.1.0
-------------
Commit: 98d7f5a
* Testing: All supported distros passed.
Commit: 759754c
* Installer: Debian 10 and 11 do not support PHP 8.0 yet, fixed.
Commit: 37ed362
* Packaging: Tarball insttest script added.
Commit: 75c7b5e
* General: Error messages and handling improved, all tests passed.
Commit: 2397f0c
* General: rc made unique, tests fixed, package should not overwrite config file
any more.
Commit: c41d236
* MyEnv: Removed hard coded part.
Commit: 506e86b
* MyEnv: Substitute path was extracted into its own function, test made for this
function.
Commit: 4f1083b
* General: Error handling and error messages improved.
Commit: 4d34008
* MyEnv: Improved branch guessing.
Commit: d12cf63
* MyEnv: Made warnings and error in color.
Commit: 00da3e0
* MyEnv: Some more checks added, log file is now touched to avoid problems with
root.
Commit: d3e3413
* Installer: Unit file is copied now correctly.
Commit: b3de58f
* MyEnv: mysql user removed in start/stop script.
Commit: bb6683f
* MyEnv: Checks for db start improved.
Commit: 570646b
* MyEnv: Some bugs fixed running myenv under user mariadb on RockyLinux 9.
Commit: 2dedac9
* Testing: Testautomation added for automated install.
Commit: 5ce4710
* Installer: MyEnv instance installation is automatizable now.
Commit: a94b4e8
* Installer: Instance creation automation added.
Commit: ba74a01
* MyEnv: /var/run replaced by the more modern location /run.
Commit: dfc1534
* MyEnv: Should now be completely mariadb compatible mariadbd vs mysqld.
Commit: 77dafc9
* MyEnv: mysqld_safe was extended to mariadbd-safe.
Commit: fcfa14e
* MyEnv: Replaced getVersionFromMysqld by getVersionAndBranchFromDaemon and
extended functionality of this function.
Commit: d5f2bee
* MyEnv: LD_LIBRARY_PATH was set to the wrong structure, fixed. Some problems
with mkdir in 10.3 fixed.
Commit: 3dd88f2
* Installer: my.cnf template together with installMyenv should now work without
errors or warnings for MariaDB 10.5 - 11.2 and MySQL 8.0 - 8.3.
Commit: 0cb3909
* MyEnv: Reverting Commit: fcc93c5 from v2.0.3 related to CDPATH, was not so
good idea, break commands like cd log or cd etc.
Commit: 8f51ddd
* MyEnv: Also database mysql_innodb_cluster_metadata is hidden now.
Commit: 1f0cb35
* MyEnv: Schema #innodb_redo is suppressed now as well for mysql 8.0, and
hideschema is not added to every new instance any more to not overwrite the
default.
Commit: b9d7495
* MyEnv: Bug while stopping instance with missing my.cnf fixed.
Commit: 0e2d7f9
* Utilities: Client utility adapted in *monitor scripts.
Commit: 4d8408a
* MyEnv: my_exec improved, tests for my_exec improved.
Commit: ef5229c
* MyENv: getDistribution function cleaned-up.
Commit: 930dcd7
* General: Bug in db branch guessing fixed, implicit float conversion
deprecation message fixed.
Commit: 49c172e
* General: Which replaced by type -p php, os-release tests added.
Commit: 90be150
* General: lsb_release removed because it is no longer supported.
Commit: 107075a
* Packaging: DEB sign stuff added.
Commit: ec94f5d
* Packaging: FromDual repo key added.
Commit: 311955a
* Packaging: Build infrastructure improved.
Commit: ac5d8d0
* Packaging: Repo create works now from scratch.
Commit: eea249e
* Packaging: create_test_repo.php added.
Commit: bf5743b
* Utilities: InnoDB cluster monitor added.
Commit: bd44ebd
* Utilities: galera_monitor wsrep_last_committed added.
Commit: 4c7649f
* Installer: Command yum replaced by dnf.
Commit: d6c5437
* Installer: Command apt-get comments replaced by apt.
Commit: 978b6b9
* MyEnv: MySQL should now also be detected correctly from ubuntu repository.
Commit: fa45327
* MyEnv: Function my_exec rewritten.
Commit: 8dddf57
* Packaging: Packing notes improved.
Commit: 828bd5e
* General: Debian GNU/Linux tag added for distros.
Commit: 784c33c
* General: Function extractBranch made better to work on Debian and Ubuntu with
distribution packages.
Commit: 3836d33
* General: Oracle Linux is considered as well now.
Commit: 62ef090
* General: Some more header information fixed.
Commit: 288adbd
* Utilities: AWR added, sharding stuff added, lock and trx analysis scripts
added.
Commit: a2145f9
* Utilities: Memory analysis added, NUMA maps output made read for new
variables.
Commit: 00da2fa
* General: Made scripts ready for new MariaDB behaviour.
Commit: 7db1929
* General: my.cnf adapted to newest knowledge.
Commit: 17993cf
* General: Directory changed from /tmp to /var/tmp, code cleaned-up and renewal,
PID file code and message improved in stopInstance.
Commit: 350d8f7
* General: Distributions cleaned-up and cloudlinux, rocky linux and almalinux
added as centos compatible distros.
Commit: ed8f932
* General: Copyright year updated from 2020 to 2021.
Commit: deb9191
* Utilities: connect_maxout utility added.
Commit: 2decca8
* General: TODO and CHANGELOG updated.
Version 2.0.3
-------------
Commit: 122e4d6
* Testing: Tests fixed.
Commit: ed14733
* Utilities: Some utilities improved with password handover.
Commit: 9c05c5b
* Utilities: Nasty message removed from insert_test.sh
Commit: e8ac63a
* Utilities: Using a password on the command line hack replace by better so-
lution.
Commit: f14b9db
* General: rc made unique.
Commit: f4ee3c9
* MyEnv: MariaDB 10.6 my.cnf hash added and bug in stop instance for fqdn
fixed.
Commit: e539471
* Testing: Some more tests fixed.
Commit: d497dbc
* General: CHANGELOG updated, tests fixed and improved.
Commit: 84649fc
* MyEnv: Instance proposal is now checked if it already exists in add instance
in installMyEnv.
Commit: daf8b8b
* MyEnv: On Debian systems now systemd unit file advice is shown as well in-
stead of initV files advice in installMyEnv.
Commit: e9290e3
* MyEnv: Function print replaced by output() function.
Commit: 508a337
* MyEnv: Function checkDataseOld function removed.
Commit: 0e9ce3c
* MyEnv: Functions: checkDatabase, startDatabase and stopDatabase replaced by
their Instance analogon.
Commit: d2b0485
* MyEnv: Skipping init script is possible now in installMyEnv.
Commit: fcc93c5
* MyEnv: Feature: CDPATH added to variables.conf.template pointing to instance-
dir.
Commit: 751a4a2
* MyEnv: Function print replaced by output in function checkMyEnvRequirements.
Commit: 810f352
* Packaging: php5 dependencies removed for Debian.
Commit: b81337c
* MyEnv: log_warnings commented out in my.cnf.template to make it work with My-
SQL 8.0.
Commit: e87c935
* MyEnv: Debug information improved.
Commit: 71078c4
* MyEnv: my.cnf updated with new 8.0 findings.
Commit: 9bc0304
* Testing: Test added for extractBranch.
Commit: 40f3134
* MyEnv: Ubuntu tag fixed.
Commit: d7b0116
* Packaging: Packaging NOTES updated and unified, Ubuntu variant of MySQL added
to branch determination function.
Commit: 1817a7d
* MyEnv: Variable gcache.recover added to template.
Commit: d2ea0cf
* Packaging: Build instructions move from other projects here to unify infor-
mation.
Commit: 41d1526
* Utilities: pcs_standby_node.sh added.
Commit: fb6b687
* Utilities: connect_times.php added, galera_monitor added, mixed_test time-
stamp updated to microseconds.
Commit: 13fba07
* Utilities: connect_times.php, mixed_test.php, binlog_push and binlog_apply
added.
Commit: 2414fa3
* MyEnv: Error handling changed from procedural style to OO style.
Commit: 9f10ef1
* MyEnv: Naming of return values fixed,
Commit: 7bbaec5
* MyEnv: Function my_exec made variable naming more clear.
Commit: b6df6c3
* Utilities: VIP v2 start stop script added.
Commit: 7cb00bd
* MyEnv: InnoDB monitor enabled by default.
Commit: 04f3981
* Packaging: Missing utilities added to make file.
Commit: cb1bd75
* Utilities: netstat.php added.
* MyEnv: Constants made more human readable.
Commit: 327d234
* MyEnv: Variable sync_binlog in my.cnf template adjusted to reasonable value.
Commit: 694588f
* Utilities: insert_test.sh made more flexible to run modify column command.
Commit: ea9479a
* MyEnv: my.cnf template updated to newest state.
Commit: 8e731d8
* MyEnv: New MySQL 5.7 Ubuntu repo hash for my.cnf added.
Commit: dd69f40
* MyEnv: Package php-posix replaced by php-process on Redhat/CentOS.
Commit: c9e93d0
* Utilities: insert_test.bat added and is working now like on Linux.
Commit: 5b03f3f
* MyEnv: Branch Homebrew added to extract Branch for MacOS.
Commit: 1281c5d
* Utilities: connect_test.php added.
Commit: 8138d79
* Testing: Test for function formatTime added as well.
Commit: efd8abe
* MyEnv: Function formatTime added
Comments changed from php5 to php7.
Commit: 63d01d7
* Utilities: insert_test-php made ready for new 5.7/8.0 timestamp behaviour.
Commit: b97a2e2
* Utilities: MySQL Group Replication monitor made configurable.
Commit: 5ae745d
* Utilities: MySQL Group Replication monitor output made nicer.
Commit: 11c6f0e
* MyEnv: New mysql 8.0 tmp schema #innodb_temp added to hideschema parameter.
Commit: cfc3efd
* MyEnv: Socket is right now when port is not 3306.
Commit: 3bd1434
* MyEnv: New interfaces for start/stopping instances and code cleaned up.
Version 2.0.2
-------------
Commit: 75bae70
* Packaging: Final Make changes checked in for release.
Commit: ff9e548
* General: CHANGELOG updated, rc fixed, tests added and fixed.
Commit: cef0db3
* MyEnv: Not used aReleaseVersion removed, side effect to not have performance
issues any more on up.
Commit: 1d93eb8
* MyEnv: Slash from basedir is stripped as well.
Commit: bb10c1f
* MyEnv: Strip basedir from start stop command to have old behaviour again.
Commit: 5346541
* MyEnv: Avoid EGPCS error messages during myenv start/stop.
Commit: 043a556
* MyEnv: mysqld is consistently search in sbin, bin and libexec now for CentOS 7
compatibility.
Commit: ad0c9a0
* MyEnv: Default MariaDB my.cnf hash added to avoid complaints.
Commit: 678c4ea
* MyEnv: Warning omitted for missing link if user has no privilege to see file.
Commit: ceec28c
* MyEnv: Copyright updated to 2019.
Commit: f4cc72f
* MyEnv: Build works with git now. No backwards compatibility!
Commit: ddae4ed
* MyEnv: All build stuff changed from bzr to git.
Commit: a34f220
* MyEnv: Migrated from Bazaar to Git.
Commit: 0e495e7
* MyEnv: Commits 6af9f88 and 5fa8e2c merged.
Commit: 6af9f88
* Utilities: Option check made more careful and timestamp problem fixed for year
change in split_partition.php.
Commit: 0bdb699
* Utilities: Option check made more careful for drop_partition.php and
merge_partition.php.
Commit: 0ee1514
* Utilities: galera_monitor.sh and slave_monitor.sh made smoother.
Commit: d75b63b
* MyEnv: CHANGELOG, README and rc updated.
Change #1020
* MyEnv installer: Purge of database is done from instancedir and not datadir
any more.
Change #1019
* MyEnv: Start should not complain if file is there instead of link.
Change #1018
* MyEnv: start-timeout is a new configuration variable. Important for Galera
SST.
Change #1017
* MyEnv: Complain on missing symbolic link to my.cnf.
Change #1016
* MyEnv installer: Create symlink to datadir for my.cnf.
Change #1014
* MyEnv: Up and down state is colored now.
Change #1013
* MyEnv: bind_address 0.0.0.0 is optimized to *.
Change #1012
* MyEnv installer: myenv.conf backup file has a correct timestamp now.
Change #1011
* MyEnv installer: Blacklist fixed.
Change #1010
* MyEnv installer: Default is "q" on error and instance name and blacklist name
check is fixed.
Change #1009
* MyEnv installer: Try and catch for existing config file improved.
Change #1008
* MyEnv installer: Answer question on previous error message works now.
Change #1007
* Utilities: Script slave_monitor.sh added.
Change #1001
* Utilities: Scrip az_test.php added, initial test found already bug in MariaDB
10.3.
Change #1000
* MyEnv: Error message fixed.
Change #999
* Utilities: galera_monitor.sh output made nicer.
Version 2.0.1
-------------
Change #997
* MyEnv: README updated and release tagged.
Change #996
* MyEnv: rc fixed and Makefile adapted.
Change #995
* Testsuite: All tests fixed.
Change #994
* Testsuite: TestCounter added to test suite.
Change #992
* MyEnv installer: basedir withouth bin/mysqld is stripped out from installer
overview.
Change #990
* MyEnv installer: Instancename with dot "." in it is not allowed any more.
Change #989
* MyEnv: OpenSUSE Leap 42.3 support added.
Change #988
* MyEnv: Missing instancedir configuration is complaining now. This could be a
left over from 1.x to 2.y migration.
Change #987
* MyEnv: MyEnv should not complain any more when default my.cnf is used.
Change #986
* Utilities: mysqlstat.php php7 compatibility problem fixed.
Change #985
* MyEnv: Remove old user/password schema from code and updated to now URI
scheme.
Change #982
* MyEnv: Script setMyEnv.sh added to set environment for instance easier.
Change #981
* MyEnv: Error messages made more flexible.
Change #980
* MyEnv: MariaDB and MySQL are now treated equivalent in wording.
Change #979
* Utilities: Syntax made standard conform.
Change #978
* MyEnv: Introduced different brackets for up and down mysql instances in Up
output.
Change #977
* MyEnv: New alert levels added.
Change #976
* MyEnv: Error codes fixed and note for mod 256 added.
Change #975
* MyEnv: Connect string URI updated to new scheme.
Change #974
* MyEnv: Function getInstanceInfo added to myEnv library.
Change #973
* MyEnv: Library function extractVersion and getVersionFromMysqld cleaned a bit.
Better parameter names.
Change #971
* MyEnv: Github files LICENSE and README.md added.
Change #970
* Utilities: cluster_conflict.php, cluster_conflict.sh, galera_monitor.sh,
haproxy_maint.sh, group_replication_monitor.sh for Galera and Group
Replication cluster added.
Change #969
* MyEnv: CloudLinux added as a supported distribution.
Version 2.0.0
-------------
Change #966
* MyEnv: Template fixes for manual installation. CHANGELOG updated and release
tagged.
Change #965
* MyEnv: Docu bugs fixed. Installer Bug fixed.
Change #963
* MyEnv: README and CHANGELOG updated.
Change #962
* MyEnv: Tests and bugs fixed, testsuite passed.
Change #958
* MyEnv: Fixes in new database check function, unix file socket must be used
differently.
Change #957
* MyEnv: mysqladmin ping database health check was replaced by socket probing.
Change #955
* MyEnv: Variable log_warnings reverted in template for MariaDB.
Change #953
* MyEnv installer: Cosmetic typo in installer fixed.
Change #952
* MyEnv: Fix rc numbers.
Change #951
* Utilities: mysql-create-instance.sh and mysql-remove-instancec.sh removed.
Change #950
* MyEnv installer: Angel question returned wrong result in installation.
Change #949
* MyEnv: Adapted build instructions and copyright year.
Change #948
* MyEnv: showMyEnvVersion finished.
Change #947
* MyEnv: Some more product versions added.
Change #946
* MyEnv: Version and revision for myenv implemented.
Change #944
* MyEnv: Version script added.
Change #942
* MyEnv installer: Error for failed my.cnf creationg caught and made more vi-
sible.
Change #941
* MyEnv installer: Error on wrong my.cnf location caught. Bug #161
Change #939
* MyEnv: All package advices adapted for PHP 7 in Ubuntu.
Change #938
* MyEnv: Bug with systemd unit files fixed.
Change #937
* MyEnv: More strict MyEnv configuration checking.
Change #936
* MyEnv: Made all queries on I_S MySQL 8.0 compatible.
Change #935
* MyEnv packaging: Distribution terminology for SUSE LINUX added.
Change #934
* MyEnv: Made variables for MySQL 8.0 ready.
Change #933
* MyEnv: Ownership problem of log file with systemd solved.
Change #932
* MyEnv: Error code handling improved.
Change #931
* MyEnv: Some error handling cosmetics.
Change #930
* MyEnv: Replace dot / '.' with keyword source to make it more explanatory.
Change #929
* MyEnv: Missing type mysqld added back.
Change #928
* MyEnv: Some error message cosmetics and fix of default key in instance sec-
tions.
Change #927
* MyEnv: Check for DD in MySQL 8.0 is fixed.
Change #926
* MyEnv: Cosmetic typo in myEnv start function fixed.
Change #925
* MyEnv: Some new variabels for crash safe replication, GTID and Group Repli-
cation added to template.
Change #924
* MyEnv: my.cnf template updated do disallowd memory SE.
Change #921.1.3
* MyEnv: OEM agent documentation improved
Change #921.1.2
* MyEnv: OEM agent status grep pattern adapted for OEM 12.
Change #921.1.1
* MyEnv: GR parameters added to my.cnf template.
Change #922
* MyEnv packaging: Use current "Makefile" for "last" export, minor cleanup.
Change #920
* MyEnv packaging: Always use the Makefile of the revision to be exported.
Change #918
* Utilities: keepalived scripts added.
Change #917
* Utilities: insert_test.php made more standard complient.
Change #915
* MyEnv packaging: Protect MySQL instances (DEB packages):
No service stop/start on upgrade, and no un-install while there are any.
* Utilities: utl/insert_test.sh: Let "$MYSQL_TCP_PORT" override the "port" de-
fault of 3306, if set.
Change #914
* Utilities: /insert_test.sh: Add an optional "--sleep" parameter.
Change #913
* MyEnv packaging: Protect MySQL instances (RPM packages):
No service stop/start on upgrade, and no un-install while there are any.
Change #912
* MyEnv packaging: Include new "bin/getInstanceNames.php" in the distribution,
improve alphabetic ordering of file names in "Makefile".
Change #906
* MyEnv: Systemd unit file gets "mkdir /var/run/mysqld".
Change #901 .. #905
* MyEnv packaging: Add packaging of DEB format (Debian, Ubuntu).
Packages are universal, maintainer scripts check for SysV init vs systemd.
Change #899 .. #900
* MyEnv packaging: Maintain "NOTES-packaging", include them in the export.
Change #897
* MyEnv packaging: RPM spec file: Add code to handle an existing 'mysql' user;
make distribution strings more general.
Change #896
* MyEnv packaging: Put a release number into "tpl/profile.template"
so that we can verify the ".bash_profile" upgrade.
Change #893
* MyEnv packaging: RPM spec file: Add upgrade + uninstall handling to the
scriptlets,
MyEnv unit file: fix service settings.
Change #882 .. #891
* MyEnv packaging: Add packaging: RPMs for RedHat 6 + 7 and SLES 11 + 12
This includes a spec file, (de)installation scriptlets,
and fixes to the integration into systemd.
Change #876
* MyEnv installer: Fix ugly log file name replace in my.cnf replace in instal-
ler.
Change #875
* MyEnv installer: port and socket bugs in installer fixed.
Change #874
* MyEnv installer: strip bug fixed in installer.
Change #873
* MyEnv: myenv.inc has debug now for tmp files.
Change #871
* MyEnv installer: purge-data implemented for delete instance in installer and
some better option checks added.
Change #870
* MyEnv: variables_order is handed over correctly through wrapper now.
Change #869
* MyEnv: Bug 168 fixed, instance detection is now done on ibd file as well for
8.0 compatibilty reasons.
Change #867
* MyEnv: variables_order was included in the scripts.
Change #866
* MyEnv: P_S.events_statements_history_long is very good to have so enable id in
template.
Change #865
* Utilities: test table extended.
Change #863
* MyEnv: my.cnf.template to newest level.
Change #862
* Utilities: mysqlstat utility added.
Change #857
* MyEnv installer: Port question fixed.
Change #856
* MyEnv: my.cnf template broght to the newest state.
Change #855
* MyEnv: Check for old templates fixed.
Change #852
* MyEnv: myenv.server move to tpl and various minor bugs fixed.
Change #851
* MyEnv: Some bugs around aliases/variables fixed.
Change #850
* MyEnv: Changes from fpmmm merged.
Change #849
* MyEnv: Fixes to work with PHP 7.
Change #847
* MyEnv installer: mycg hook implemented.
Change #846
* MyEnv installer: cgroups integrated into installer.
Change #845
* MyEnv: aliases.conf and variables.conf made more user friendly.
Change #844
* MyEnv installer: Angel question and socket check added.
Change #843
* MyEnv: Aliases changed, templates substitution introduced.
Change #842
* MyEnv installer: mkdir for new instancedir added.
Change #841
* MyEnv installer: instancedir introduced.
Change #840
* MyEnv installer: Port conflict is only reported once during creation.
Change #838
* MyEnv: Bind address output made nicer for up.
Change #836
* MyEnv: SystemD integration completed.
Change #830
* MyEnv installer: Installation should be SystemD aware on CentOS and Ubuntu
now.
Change #829
* MyEnv: Gathering of distribution version added.
Change #828
* MyEnv: Systemd unit file added.
Change #827
* MyEnv: Bug in stopping all databases fixed.
* Testsuite: Tests added.
Change #826
* MyEnv: MySQL variable innodb_flush_log_at_trx_commit recommendation changed to
2 because 0 seems to have no advantage any more.
Change #825
* MyEnv: Function posix_uname check added to checkMyEnvRequirements.
Change #824
* Testsuite: Some tests from other project added here.
Change #823
* MyEnv installer: Fixed two errors (PHP Fatal error: 'break' not in the 'loop'
or 'switch' context).
Change #821
* MyEnv: Function fgets error caugth correctly now.
Change #820
* MyEnv: Function extractBranch added
error messages improved
CentOS support improved
test case prepared
Change #817
* MyEnv: MySQL variable innodb_tmpdir added to template
Change #816
* MyEnv: MySQL variable super_read_only added to the my.cnf template.
Version 1.3.1
-------------
Change #815
* MyEnv: CHANGELOG updated and release tagged.
Change #813
* MyEnv: README updated.
Change #812
* MyEnv: Bash function bootstrap added.
Change #811
* MyEnv: Galera options --bootstrap --new-cluster and start methode bootstrap
was implemented. Typo fixed.
Change #810
* MyEnv installer: Default as instance name set to blacklist.
Change #809
* MyEnv: New 5.7 variables added and 5.6 variables to avoid nasty warnings in
the error log added to the my.cnf template. Further new file system structure
was prepared.
Change #808
* MyEnv: MySQL 5.7 variables for error log behaviour added.
Change #807
* MyEnv: Comment for log_bin added to my.cnf template.
Change #806
* MyEnv: Ulimit problem fixed rude in myenv init script.
Change #805
* Utilities: insert_test.sh now has optional parameters for user, host etc.
Change #804
* MyEnv: Wsrep_provider for CentOS added in my.cnf template.
Change #803
* Utilities: Test table prepared for explicit_defaults_for_timestamp configura-
tion.
Change #801
* MyEnv installer: Typo fixed in help of installMyEnv.
Change #799
* MyEnv: Cgroup template imporved.
Change #798
* MyEnv: Typo fixed.
Change #794
* MyEnv: Cgroup howto improved and config example added.
Version 1.3.0
-------------
Change #793
* MyEnv: CHANGELOG updated and release tagged.
Change #792
* MyEnv: Tests passed, CHANGELOG updated.
Change #791
* MyEnv: cgroups template completed.
Change #790
* Utilities: rc bug fixed in block_galera_node.sh
Change #789 [merge]
* MyEnv: Make scripts made more generic.
Change #787
* MyEnv installer: sys schema added to hideschema in installer.
Change #786
* MyEnv: cgroups report configuration errors to make problem obvious.
Change #785
* MyEnv installer: angel and default section are not attached to each section
any more during installation.
Change #784
* Testsuite: Test for new function added.
Change #783
* MyEnv installer: Installer made ready for MySQL 5.7.
Change #781
* MyEnv installer: Installer is automatizable now and delete works automatized.
Change #780
* MyEnv installer: Bug related to Mac OSX in installer fixed.
Change #779
* Utilities: ORDER BY added to GROUP BY to follow 5.6 deprecation recommendation
in query_bench.php.
Change #778
* MyEnv: Too verbose error message in case of missing my.cnf moved to debug log-
ging (mgb).
Change #777
* MyEnv: MyEnv warning how to fix problem made more clear.
Make file updated.
Change #776
* MyEnv: Note added and sql_mode in my.cnf template adapted.
Change #775
* Utilities: insert_test.sh made more clear where record comes from.
Change #774
* MyEnv: cgroups cpuset replaced by cpu.
Change #773
* MyEnv: cgroups conf file path fixed.