From f4cf2d2c27759eed8af8e5bcde7558ecd718ae88 Mon Sep 17 00:00:00 2001 From: Bear Date: Fri, 7 Jul 2023 08:55:08 -0500 Subject: [PATCH 1/6] 8.0.33 release --- bin/mysql8.0.33/bearsampp.conf | 10 +++++++ bin/mysql8.0.33/init.bat | 3 ++ bin/mysql8.0.33/my.ini | 55 ++++++++++++++++++++++++++++++++++ bin/mysql8.0.33/my.ini.ber | 55 ++++++++++++++++++++++++++++++++++ build.properties | 2 +- 5 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 bin/mysql8.0.33/bearsampp.conf create mode 100644 bin/mysql8.0.33/init.bat create mode 100644 bin/mysql8.0.33/my.ini create mode 100644 bin/mysql8.0.33/my.ini.ber diff --git a/bin/mysql8.0.33/bearsampp.conf b/bin/mysql8.0.33/bearsampp.conf new file mode 100644 index 0000000..f71b726 --- /dev/null +++ b/bin/mysql8.0.33/bearsampp.conf @@ -0,0 +1,10 @@ +mysqlVersion = "8.0.33" +mysqlExe = "bin/mysqld.exe" +mysqlCliExe = "bin/mysql.exe" +mysqlAdmin = "bin/mysqladmin.exe" +mysqlConf = "my.ini" +mysqlPort = "3306" +mysqlRootUser = "root" +mysqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/mysql8.0.33/init.bat b/bin/mysql8.0.33/init.bat new file mode 100644 index 0000000..b114f48 --- /dev/null +++ b/bin/mysql8.0.33/init.bat @@ -0,0 +1,3 @@ +@ECHO OFF + +%~dp0bin\mysqld.exe --initialize-insecure diff --git a/bin/mysql8.0.33/my.ini b/bin/mysql8.0.33/my.ini new file mode 100644 index 0000000..c9306f2 --- /dev/null +++ b/bin/mysql8.0.33/my.ini @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.33 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.33/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/bin/mysql8.0.33/my.ini.ber b/bin/mysql8.0.33/my.ini.ber new file mode 100644 index 0000000..c9306f2 --- /dev/null +++ b/bin/mysql8.0.33/my.ini.ber @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.33 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.33/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/build.properties b/build.properties index daa955a..d9d1fd9 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = mysql -bundle.release = 2023.3.5 +bundle.release = 2023.7.7 bundle.type = bins bundle.format = 7z From 60a81f3c71be08447eb22539595c5401d91fec66 Mon Sep 17 00:00:00 2001 From: Jacob Waisner Date: Sun, 9 Jul 2023 17:58:21 -0500 Subject: [PATCH 2/6] Update releases.properties for 8.0.33 --- releases.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/releases.properties b/releases.properties index b5927df..054e7f5 100644 --- a/releases.properties +++ b/releases.properties @@ -4,3 +4,4 @@ 8.0.30 = https://github.com/Bearsampp/module-mysql/releases/download/2022.08.29/bearsampp-mysql-8.0.30-2022.08.29.7z 8.0.31 = https://github.com/Bearsampp/module-mysql/releases/download/2022.10.28/bearsampp-mysql-8.0.31-2022.10.29.7z 8.0.32 = https://github.com/Bearsampp/module-mysql/releases/download/2023.3.5/bearsampp-mysql-8.0.32-2023.3.5.7z +8.0.33 = https://github.com/Bearsampp/module-mysql/releases/download/2023.7.7/bearsampp-mysql-8.0.33-2023.7.7.7z From 307b368e276262221d73529f27206a4962c1b145 Mon Sep 17 00:00:00 2001 From: Jacob Waisner Date: Wed, 10 Apr 2024 23:19:16 -0500 Subject: [PATCH 3/6] Update for 8.0.36 and 8.3.0 --- bin/mysql8.0.36/bearsampp.conf | 10 +++++++ bin/mysql8.0.36/init.bat | 3 ++ bin/mysql8.0.36/my.ini | 55 ++++++++++++++++++++++++++++++++++ bin/mysql8.0.36/my.ini.ber | 55 ++++++++++++++++++++++++++++++++++ bin/mysql8.3.0/bearsampp.conf | 10 +++++++ bin/mysql8.3.0/init.bat | 3 ++ bin/mysql8.3.0/my.ini | 55 ++++++++++++++++++++++++++++++++++ bin/mysql8.3.0/my.ini.ber | 55 ++++++++++++++++++++++++++++++++++ build.properties | 2 +- releases.properties | 2 ++ 10 files changed, 249 insertions(+), 1 deletion(-) create mode 100644 bin/mysql8.0.36/bearsampp.conf create mode 100644 bin/mysql8.0.36/init.bat create mode 100644 bin/mysql8.0.36/my.ini create mode 100644 bin/mysql8.0.36/my.ini.ber create mode 100644 bin/mysql8.3.0/bearsampp.conf create mode 100644 bin/mysql8.3.0/init.bat create mode 100644 bin/mysql8.3.0/my.ini create mode 100644 bin/mysql8.3.0/my.ini.ber diff --git a/bin/mysql8.0.36/bearsampp.conf b/bin/mysql8.0.36/bearsampp.conf new file mode 100644 index 0000000..7d3c002 --- /dev/null +++ b/bin/mysql8.0.36/bearsampp.conf @@ -0,0 +1,10 @@ +mysqlVersion = "8.0.36" +mysqlExe = "bin/mysqld.exe" +mysqlCliExe = "bin/mysql.exe" +mysqlAdmin = "bin/mysqladmin.exe" +mysqlConf = "my.ini" +mysqlPort = "3306" +mysqlRootUser = "root" +mysqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/mysql8.0.36/init.bat b/bin/mysql8.0.36/init.bat new file mode 100644 index 0000000..b114f48 --- /dev/null +++ b/bin/mysql8.0.36/init.bat @@ -0,0 +1,3 @@ +@ECHO OFF + +%~dp0bin\mysqld.exe --initialize-insecure diff --git a/bin/mysql8.0.36/my.ini b/bin/mysql8.0.36/my.ini new file mode 100644 index 0000000..64b36be --- /dev/null +++ b/bin/mysql8.0.36/my.ini @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.36 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.36/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/bin/mysql8.0.36/my.ini.ber b/bin/mysql8.0.36/my.ini.ber new file mode 100644 index 0000000..64b36be --- /dev/null +++ b/bin/mysql8.0.36/my.ini.ber @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.36 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.0.36/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/bin/mysql8.3.0/bearsampp.conf b/bin/mysql8.3.0/bearsampp.conf new file mode 100644 index 0000000..518e8b9 --- /dev/null +++ b/bin/mysql8.3.0/bearsampp.conf @@ -0,0 +1,10 @@ +mysqlVersion = "8.3.0" +mysqlExe = "bin/mysqld.exe" +mysqlCliExe = "bin/mysql.exe" +mysqlAdmin = "bin/mysqladmin.exe" +mysqlConf = "my.ini" +mysqlPort = "3306" +mysqlRootUser = "root" +mysqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/mysql8.3.0/init.bat b/bin/mysql8.3.0/init.bat new file mode 100644 index 0000000..b114f48 --- /dev/null +++ b/bin/mysql8.3.0/init.bat @@ -0,0 +1,3 @@ +@ECHO OFF + +%~dp0bin\mysqld.exe --initialize-insecure diff --git a/bin/mysql8.3.0/my.ini b/bin/mysql8.3.0/my.ini new file mode 100644 index 0000000..89c3cf5 --- /dev/null +++ b/bin/mysql8.3.0/my.ini @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.3.0 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.3.0/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/bin/mysql8.3.0/my.ini.ber b/bin/mysql8.3.0/my.ini.ber new file mode 100644 index 0000000..89c3cf5 --- /dev/null +++ b/bin/mysql8.3.0/my.ini.ber @@ -0,0 +1,55 @@ +[client] +port = 3306 +socket = /tmp/mysql.sock + +[mysqld] +port = 3306 +socket = ~BEARSAMPP_LIN_PATH~/tmp/mysql.sock +key_buffer_size = 16M +max_allowed_packet = 1M + +sort_buffer_size = 512K +net_buffer_length = 8K +read_buffer_size = 256K +read_rnd_buffer_size = 512K +myisam_sort_buffer_size = 8M +basedir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.3.0 +log-error=~BEARSAMPP_LIN_PATH~/logs/mysql.log +datadir=~BEARSAMPP_LIN_PATH~/bin/mysql/mysql8.3.0/data + +skip-federated + +server-id = 1 + +innodb_buffer_pool_size = 16M +innodb_log_file_size = 5M +innodb_log_buffer_size = 8M +#innodb_flush_log_at_trx_commit = 1 +#innodb_lock_wait_timeout = 50 + +sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO +default_authentication_plugin=mysql_native_password +character-set-server=UTF8MB4 + +[mysqldump] +quick +max_allowed_packet = 16M + +[mysql] +no-auto-rehash +#safe-updates + +[isamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[myisamchk] +key_buffer_size = 20M +sort_buffer_size = 20M +read_buffer = 2M +write_buffer = 2M + +[mysqlhotcopy] +interactive-timeout diff --git a/build.properties b/build.properties index d9d1fd9..f29fa10 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = mysql -bundle.release = 2023.7.7 +bundle.release = 2024.4.10 bundle.type = bins bundle.format = 7z diff --git a/releases.properties b/releases.properties index 054e7f5..159b1dd 100644 --- a/releases.properties +++ b/releases.properties @@ -5,3 +5,5 @@ 8.0.31 = https://github.com/Bearsampp/module-mysql/releases/download/2022.10.28/bearsampp-mysql-8.0.31-2022.10.29.7z 8.0.32 = https://github.com/Bearsampp/module-mysql/releases/download/2023.3.5/bearsampp-mysql-8.0.32-2023.3.5.7z 8.0.33 = https://github.com/Bearsampp/module-mysql/releases/download/2023.7.7/bearsampp-mysql-8.0.33-2023.7.7.7z +8.0.36 = https://github.com/Bearsampp/module-mysql/releases/download/2024.4.10/bearsampp-mysql-8.0.36-2024.4.10.7z +8.3.0 = https://github.com/Bearsampp/module-mysql/releases/download/2024.4.10/bearsampp-mysql-8.3.0-2024.4.10.7z From e9ff5fa39d7458585dbe896f99255a1bcf7c6e94 Mon Sep 17 00:00:00 2001 From: N6REJ Date: Wed, 24 Apr 2024 09:47:16 +0000 Subject: [PATCH 4/6] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github'?= =?UTF-8?q?=20with=20remote=20'.common'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/labels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/labels.yml b/.github/labels.yml index b6f8475..79670c9 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -9,9 +9,9 @@ description: "For known bugs" from_name: "bug" - # Urgent - name: "Blocker :triangular_flag_on_post:" - color: "FFFFFF" - description: "Release blocker" + name: "Urgent :bomb:" + color: "ED7014" + description: "Urgent" - # dependencies name: "dependencies :man_cook:" color: "0366d6" @@ -67,7 +67,7 @@ - # Blocker name: "Blocker :triangular_flag_on_post:" color: "ff0000" - description: "Urgent bug, blocking release" + description: "Show Stopper" - # Website name: "Website :technologist:" color: "FFFFFF" From fbe2ac4796698d987a39a7d3914360a7f59a4823 Mon Sep 17 00:00:00 2001 From: N6REJ Date: Wed, 24 Apr 2024 10:04:02 +0000 Subject: [PATCH 5/6] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.gitignore?= =?UTF-8?q?'=20with=20remote=20'.gitignore.common'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index da1a012..54e84ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,6 @@ # Jetbrains /*.iml /.idea -/.idea/.gitignore -/.idea/deployment.xml -/.idea/discord.xml -/.idea/module-perl.iml -/.idea/modules.xml -/.idea/php.xml -/.idea/vcs.xml # Bearsampp /.dev @@ -16,3 +9,6 @@ .vscode/ .vs/ .vsc/ + +# ignore "current" directories +/**/current From 644e34994b4b98388799af22341780f6cb0d7174 Mon Sep 17 00:00:00 2001 From: N6REJ Date: Tue, 30 Apr 2024 03:12:38 +0000 Subject: [PATCH 6/6] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.editorcon?= =?UTF-8?q?fig'=20with=20remote=20'.editorconfig'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 5fe54ca..2bbe8ef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,7 +6,7 @@ root = true [*] charset = utf-8 -indent_size = 2 +indent_size = 4 indent_style = space end_of_line = lf insert_final_newline = true