diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ae45556..c284c7de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ RECENT CHANGES ============== +7.3.1 +----- + +- Fix: dev:console broken after psysh update (by Christian Münch) + 7.3.0 ----- diff --git a/composer.lock b/composer.lock index 3e9f7adf..628da3ab 100644 --- a/composer.lock +++ b/composer.lock @@ -2171,16 +2171,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.4.29", + "version": "v5.4.35", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65" + "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65", - "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ce4685b30e47d94dfc990c5566285ff99ddf012b", + "reference": "ce4685b30e47d94dfc990c5566285ff99ddf012b", "shasum": "" }, "require": { @@ -2240,7 +2240,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.29" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.35" }, "funding": [ { @@ -2256,7 +2256,7 @@ "type": "tidelift" } ], - "time": "2023-09-12T10:09:58+00:00" + "time": "2024-01-23T14:28:09+00:00" }, { "name": "symfony/yaml", @@ -5697,5 +5697,5 @@ "platform-overrides": { "php": "7.4.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.2.0" } diff --git a/src/N98/Magento/Application.php b/src/N98/Magento/Application.php index fe06be18..ad9566b2 100644 --- a/src/N98/Magento/Application.php +++ b/src/N98/Magento/Application.php @@ -47,7 +47,7 @@ class Application extends BaseApplication /** * @var string */ - const APP_VERSION = '7.3.0'; + const APP_VERSION = '7.3.1'; /** * @var int diff --git a/src/N98/Magento/Command/Developer/ConsoleCommand.php b/src/N98/Magento/Command/Developer/ConsoleCommand.php index 638c5f08..251e0347 100644 --- a/src/N98/Magento/Command/Developer/ConsoleCommand.php +++ b/src/N98/Magento/Command/Developer/ConsoleCommand.php @@ -97,11 +97,9 @@ protected function execute(InputInterface $input, OutputInterface $output) error_reporting(E_ERROR | E_WARNING | E_PARSE); $config = new Configuration(); - $php5Parser = new Parser\Php5(new Lexer\Emulative()); - $php7Parser = new Parser\Php7(new Lexer\Emulative()); + $php8Parser = new Parser\Php8(new Lexer\Emulative()); - $parser = new Parser\Multiple([$php5Parser, $php7Parser]); - $cleaner = new CodeCleaner($parser); + $cleaner = new CodeCleaner($php8Parser); $config->setCodeCleaner($cleaner); $consoleOutput = new ShellOutput(); diff --git a/version.txt b/version.txt index 15020207..643916c0 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -7.3.0 +7.3.1