This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Create aggregated SQL views for default EAV entity types in Magento: | |
* - dev_category | |
* - dev_product | |
* - dev_customer | |
* - dev_address | |
* | |
* Each view has the primary entity table, plus associated EAV values (eav_int, eav_text, etc). | |
* This is meant as a development tool to quickly see or select scoped data for a given entity. | |
* Do not use these for any runtime code, and be careful about how many rows you fetch at once. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SECURITY & VALIDATION CHANGES: | |
1. app/code/Magento/Customer/Controller/Account/EditPost.php | |
- Removed file attribute deletion functionality for security | |
2. app/code/Magento/Config/Plugin/Model/Config/Backend/LocalePlugin.php | |
- Added new plugin to validate currency code values | |
3. app/code/Magento/Directory/Model/Config/Backend/WeightUnit.php | |
- Added new backend model to validate weight unit values |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Create patch helper files" | |
on: | |
workflow_dispatch: | |
inputs: | |
defaultBranch: | |
description: 'Select the branch that is used as a base' | |
required: true | |
default: 'main' | |
phpVersion: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector; | |
use Rector\Config\RectorConfig; | |
return static function (RectorConfig $rectorConfig): void { | |
$rectorConfig->rule(CompleteDynamicPropertiesRector::class); | |
// Define directories to check | |
$directories = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PHP_VERSION=7.4.2 | |
# Command lines tools | |
xcode-select --install | |
# Install dependencies | |
brew install wget autoconf openssl lzlib curl imap-uw readline postgresql gettext libxslt libiconv bison pkg-config krb5 bzip2 openldap tidy-html5 | |
# Dirs |