Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Requirements for Linux:
#### Currently supported MySQL versions

- If using the system installed MySQL server: 8.0.11 and newer
- If not using the system installed MySQL server: 8.0.39, 8.0.40, 8.1.0, 8.2.0, 8.3.0, 8.4.2, 8.4.3, 9.0.1, 9.1.0
- If not using the system installed MySQL server: 8.0.39 - 8.0.41, 8.1.0 - 8.3.0, 8.4.2 - 8.4.4, and 9.0.1 - 9.2.0

## Example Usage - Application Code

Expand Down
105 changes: 105 additions & 0 deletions src/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,109 @@
[
{
"version": "9.2.0",
"arch": "arm64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-9.2/mysql-9.2.0-macos15-arm64.tar.gz"
},
{
"version": "9.2.0",
"arch": "x64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-9.2/mysql-9.2.0-macos15-x86_64.tar.gz"
},
{
"version": "9.2.0",
"arch": "x64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-9.2/mysql-9.2.0-linux-glibc2.17-x86_64-minimal.tar.xz"
},
{
"version": "9.2.0",
"arch": "arm64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-9.2/mysql-9.2.0-linux-glibc2.17-aarch64-minimal.tar.xz"
},
{
"version": "9.2.0",
"arch": "x64",
"os": "win32",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-9.2/mysql-9.2.0-winx64.zip"
},
{
"version": "8.4.4",
"arch": "arm64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.4/mysql-8.4.4-macos15-arm64.tar.gz"
},
{
"version": "8.4.4",
"arch": "x64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.4/mysql-8.4.4-macos15-x86_64.tar.gz"
},
{
"version": "8.4.4",
"arch": "x64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.4/mysql-8.4.4-linux-glibc2.17-x86_64-minimal.tar.xz"
},
{
"version": "8.4.4",
"arch": "arm64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.4/mysql-8.4.4-linux-glibc2.17-aarch64-minimal.tar.xz"
},
{
"version": "8.4.4",
"arch": "x64",
"os": "win32",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.4/mysql-8.4.4-winx64.zip"
},
{
"version": "8.0.41",
"arch": "arm64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.41-macos15-arm64.tar.gz"
},
{
"version": "8.0.41",
"arch": "x64",
"os": "darwin",
"osKernelVersionsSupported": ">=22",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.41-macos15-x86_64.tar.gz"
},
{
"version": "8.0.41",
"arch": "x64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.41-linux-glibc2.17-x86_64-minimal.tar.xz"
},
{
"version": "8.0.41",
"arch": "arm64",
"os": "linux",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.41-linux-glibc2.17-aarch64-minimal.tar.xz"
},
{
"version": "8.0.41",
"arch": "x64",
"os": "win32",
"osKernelVersionsSupported": "*",
"url": "https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.41-winx64.zip"
},
{
"version": "9.1.0",
"arch": "arm64",
Expand Down
2 changes: 1 addition & 1 deletion tests/versions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { randomUUID } from 'crypto';
import { ServerOptions } from '../types';
import { normalize } from 'path';

const versions = ['8.0.39', '8.0.40', '8.1.0', '8.2.0', '8.3.0', '8.4.2', '8.4.3', '9.0.1', '9.1.0']
const versions = ['8.0.39', '8.0.40', '8.0.41', '8.1.0', '8.2.0', '8.3.0', '8.4.2', '8.4.3', '8.4.4', '9.0.1', '9.1.0', '9.2.0']
const usernames = ['root', 'dbuser']

const GitHubActionsTempFolder = process.platform === 'win32' ? 'C:\\Users\\RUNNER~1\\mysqlmsn' : '/tmp/mysqlmsn'
Expand Down
Loading