Skip to content

Commit d46c05d

Browse files
committed
Last updates
1 parent fb4ea3f commit d46c05d

5 files changed

Lines changed: 20 additions & 24 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ test_db/**
1616
result*
1717
result_*
1818
sql/*.sql
19-
sql/*.csv
19+
sql/*.csv
20+
cve.csv

FEATURES.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ Features list for option: --feature (dev only)
22
---
33

44

5-
* calculations
6-
* compare_tuner_version
7-
* cpu_cores
85
* cve_recommendations
9-
* grep_file_contents
106
* log_file_recommendations
117
* make_recommendations
128
* mariadb_aria
@@ -17,7 +13,6 @@ Features list for option: --feature (dev only)
1713
* mariadb_threadpool
1814
* mariadb_tokudb
1915
* mariadb_xtradb
20-
* merge_hash
2116
* mysql_databases
2217
* mysql_indexes
2318
* mysql_innodb
@@ -29,14 +24,8 @@ Features list for option: --feature (dev only)
2924
* mysql_table_structures
3025
* mysql_tables
3126
* mysql_triggers
32-
* mysql_version_eq
33-
* mysql_version_ge
34-
* mysql_version_le
3527
* mysql_views
36-
* os_setup
37-
* pretty_uptime
3828
* security_recommendations
3929
* system_recommendations
40-
* update_tuner_version
4130
* validate_mysql_version
4231
* validate_tuner_version

Makefile

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,41 @@ installdep_debian:
2626
tidy:
2727
dos2unix ./mysqltuner.pl
2828
perltidy -b ./mysqltuner.pl
29-
# git add ./mysqltuner.pl
30-
# git commit -m "Indenting mysqltuner at $(shell date --iso=seconds)"
29+
git add ./mysqltuner.pl
30+
git commit -m "Indenting mysqltuner at $(shell date --iso=seconds)"
3131

3232
generate_usage:
3333
pod2markdown mysqltuner.pl >USAGE.md
34-
# git add ./USAGE.md
35-
# git commit -m "Generate USAGE.md at $(shell date --iso=seconds)"
34+
git add ./USAGE.md
35+
git commit -m "Generate USAGE.md at $(shell date --iso=seconds)"
3636

3737
generate_cve:
3838
perl ./build/updateCVElist.pl
39-
# git add ./vulnerabilities.csv
40-
# git commit -m "Generate CVE list at $(shell date --iso=seconds)"
39+
git add ./vulnerabilities.csv
40+
git commit -m "Generate CVE list at $(shell date --iso=seconds)"
4141

4242
generate_features:
4343
perl ./build/genFeatures.sh
44-
# git add ./FEATURES.md
45-
# git commit -m "Generate FEATURES.md at $(shell date --iso=seconds)"
44+
git add ./FEATURES.md
45+
git commit -m "Generate FEATURES.md at $(shell date --iso=seconds)"
4646

4747
increment_sub_version:
4848
@echo "Incrementing sub version from $(VERSION) to $(UPDATE_SUB_VERSION)"
4949
sed -i "s/$(VERSION)/$(UPDATE_SUB_VERSION)/" mysqltuner.pl *.md
50+
git add ./*.md ./mysqltuner.pl
51+
git commit -m "Generate $(UPDATE_SUB_VERSION) sub version at $(shell date --iso=seconds)"
5052

5153
increment_minor_version:
5254
@echo "Incrementing minor version from $(VERSION) to $(UPDATE_MINOR_VERSION)"
5355
sed -i "s/$(VERSION)/$(UPDATE_MINOR_VERSION)/" mysqltuner.pl *.md
56+
git add ./*.md ./mysqltuner.pl
57+
git commit -m "Generate $(UPDATE_SUB_VERSION) minor version at $(shell date --iso=seconds)"
5458

5559
increment_major_version:
5660
@echo "Incrementing major version from $(VERSION) to $(UPDATE_MAJOR_VERSION)"
5761
sed -i "s/$(VERSION)/$(UPDATE_MAJOR_VERSION)/" mysqltuner.pl *.md
62+
git add ./*.md ./mysqltuner.pl
63+
git commit -m "Generate $(UPDATE_SUB_VERSION) major version at $(shell date --iso=seconds)"
5864

5965
push:
6066
git push

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NAME
22

3-
MySQLTuner 2.2.7 - MySQL High Performance Tuning Script
3+
MySQLTuner 2.2.9 - MySQL High Performance Tuning Script
44

55
# IMPORTANT USAGE GUIDELINES
66

mysqltuner.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env perl
2-
# mysqltuner.pl - Version 2.2.8
2+
# mysqltuner.pl - Version 2.2.9
33
# High Performance MySQL Tuning Script
44
# Copyright (C) 2015-2023 Jean-Marie Renouard - jmrenouard@gmail.com
55
# Copyright (C) 2006-2023 Major Hayden - major@mhtx.net
@@ -57,7 +57,7 @@ package main;
5757
#use Env;
5858

5959
# Set up a few variables for use in the script
60-
my $tunerversion = "2.2.8";
60+
my $tunerversion = "2.2.9";
6161
my ( @adjvars, @generalrec );
6262

6363
# Set defaults
@@ -7357,7 +7357,7 @@ sub which {
73577357
73587358
=head1 NAME
73597359
7360-
MySQLTuner 2.2.8 - MySQL High Performance Tuning Script
7360+
MySQLTuner 2.2.9 - MySQL High Performance Tuning Script
73617361
73627362
=head1 IMPORTANT USAGE GUIDELINES
73637363

0 commit comments

Comments
 (0)