Skip to content

Commit 2929ad0

Browse files
committed
transpile version 4.4.2
1 parent 4081b1c commit 2929ad0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [unreleased] Unreleased
66

7+
### Fixed
8+
9+
- Avoid duplicated definition issue in `GenerateWPUnit` command.
10+
- Update MySQL server class download URLs
11+
712
## [3.7.11] 2024-12-09;
813

914
### Fixed

src/Command/GenerateWPUnit.php

-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ protected function getGenerator(array $config, string $class): AbstractGenerator
137137
protected function configure(): void
138138
{
139139
$this->setDefinition([
140-
new InputArgument('suite', InputArgument::REQUIRED, 'suite where tests will be put'),
141-
new InputArgument('class', InputArgument::REQUIRED, 'class name'),
142140
new InputOption('config', 'c', InputOption::VALUE_OPTIONAL, 'Use custom path for config'),
143141
]);
144142
parent::configure();

src/ManagedProcess/MysqlServer.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -486,17 +486,17 @@ public function getArchiveUrl(): string
486486

487487
if ($operatingSystem === MachineInformation::OS_DARWIN) {
488488
return $architecture === 'arm64' ?
489-
'https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.2-macos14-arm64.tar.gz'
490-
: 'https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.2-macos14-x86_64.tar.gz';
489+
'https://downloads.mysql.com/archives/get/p/23/file/mysql-8.4.3-macos14-arm64.tar.gz'
490+
: 'https://downloads.mysql.com/archives/get/p/23/file/mysql-8.4.3-macos14-x86_64.tar.gz';
491491
}
492492

493493
if ($operatingSystem === MachineInformation::OS_LINUX) {
494494
return $architecture === 'arm64' ?
495-
'https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.2-linux-glibc2.17-aarch64-minimal.tar.xz'
496-
: 'https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.2-linux-glibc2.17-x86_64-minimal.tar.xz';
495+
'https://downloads.mysql.com/archives/get/p/23/file/mysql-8.4.3-linux-glibc2.17-aarch64-minimal.tar'
496+
: 'https://downloads.mysql.com/archives/get/p/23/file/mysql-8.4.3-linux-glibc2.17-x86_64-minimal.tar';
497497
}
498498

499-
return 'https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.2-winx64.zip';
499+
return 'https://downloads.mysql.com/archives/get/p/23/file/mysql-8.4.3-winx64.zip';
500500
}
501501

502502
public function getArchivePath(bool $normalize = false): string

0 commit comments

Comments
 (0)