Skip to content

Commit

Permalink
Build "Bump @wordpress/block-editor from 14.8.0 to 14.9.0 (#3012)" (9…
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 12, 2024
1 parent 126b33a commit c584744
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@wordpress/api-fetch": "^7.14.0",
"@wordpress/babel-preset-default": "^7.42.0",
"@wordpress/block-editor": "^14.8.0",
"@wordpress/block-editor": "^14.9.0",
"@wordpress/blocks": "^14.3.0",
"@wordpress/components": "^28.13.0",
"@wordpress/compose": "^7.13.0",
Expand Down
11 changes: 7 additions & 4 deletions vendor/composer/InstalledVersions.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ private static function getInstalled()
}

$installed = array();
$copiedLocalDir = false;

if (self::$canGetVendors) {
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
Expand All @@ -330,9 +331,11 @@ private static function getInstalled()
} elseif (is_file($vendorDir.'/composer/installed.php')) {
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require $vendorDir.'/composer/installed.php';
$installed[] = self::$installedByVendor[$vendorDir] = $required;
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
self::$installed = $installed[count($installed) - 1];
self::$installedByVendor[$vendorDir] = $required;
$installed[] = $required;
if (strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
self::$installed = $required;
$copiedLocalDir = true;
}
}
}
Expand All @@ -350,7 +353,7 @@ private static function getInstalled()
}
}

if (self::$installed !== array()) {
if (self::$installed !== array() && !$copiedLocalDir) {
$installed[] = self::$installed;
}

Expand Down
4 changes: 2 additions & 2 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'parsely/wp-parsely',
'pretty_version' => 'dev-develop',
'version' => 'dev-develop',
'reference' => '94bdfdee36c847304614914ff7579b0f9b443bb6',
'reference' => '126b33a074703c04622e386f442c003d86248876',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -22,7 +22,7 @@
'parsely/wp-parsely' => array(
'pretty_version' => 'dev-develop',
'version' => 'dev-develop',
'reference' => '94bdfdee36c847304614914ff7579b0f9b443bb6',
'reference' => '126b33a074703c04622e386f442c003d86248876',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down

0 comments on commit c584744

Please sign in to comment.