diff --git a/.gitignore b/.gitignore index 48e8d3d5495..310500bfc45 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,5 @@ ignore Rakefile Gemfile Gemfile.lock +/vagrant/.vagrant +!/vagrant/bootstrap.sh \ No newline at end of file diff --git a/Gemfile b/Gemfile index 0b8d713bc1f..52ec5d7eb7a 100644 --- a/Gemfile +++ b/Gemfile @@ -2,3 +2,4 @@ source 'https://rubygems.org' gem 'github-pages', '38' gem 'rouge' +gem 'jekyll-last-modified-at' diff --git a/Gemfile.lock b/Gemfile.lock index 0e302371228..2ad201ec352 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -72,6 +72,8 @@ GEM coffee-script (~> 2.2) jekyll-feed (0.3.0) jekyll-gist (1.3.5) + jekyll-last-modified-at (0.3.4) + jekyll jekyll-mentions (0.2.1) html-pipeline (~> 1.9.0) jekyll (~> 2.0) @@ -133,6 +135,7 @@ PLATFORMS DEPENDENCIES github-pages (= 38) + jekyll-last-modified-at rouge BUNDLED WITH diff --git a/README.md b/README.md index 95338d06942..73e98c0344c 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,40 @@ Welcome! This site contains the latest Magento developer documentation for ongoing Magento 2.0 releases. -To contribute, please fork the develop branch. We won't accept pull requests into master. +Test -# Building this site +To contribute, please fork the 2.0 branch and submit any PRs to this same branch as well. -You can build this site yourself using Jekyll. Here's how: +# Build this site using Jekyll +To preview your work before submitting it to us, you can view the site locally using [Jekyll][jekyll]. + +## Update (May 10, 2016) +The devdocs site now displays the last modified date of each topic on the right side of the page. This provides you a handy way of seeing what's new on our site. + +If you're currently building this site, you must update your Gemfile to include a new Gem, [`jekyll-last-modified-at`][jekyll-last-modified-at]. Otherwise, you cannot run Jekyll locally. + +To update your Gemfile, enter the following command at a command prompt: + + bundle install + +(If the command fails, try `sudo bundle install`.) + +## Mac OS X prerequisites + +El Capitan and later versions of Mac OS X require additional steps prior to installation due to security improvements. + +Change to the `devdocs` root directory and enter the following commands to install and run Jekyll: ```bash -# Copy the sample config file and name it "config.yml" -$ cp _config.devdocs.yml _config.yml +# Install Bundler into /usr/local/bin directory instead of protected /usr/bin +$ sudo gem install bundler -n /usr/local/bin +``` +# Build this site + +To build this site using Jekyll: + +```bash # Install dependencies $ bundle install @@ -19,10 +43,24 @@ $ bundle install $ bin/jekyll serve ``` +# Build this site using Vagrant +To simplify the process of building this site locally using Jekyll, we enable you to run a ready-made Vagrant container that has everything you need. + +To use it, see the [Vagrant README](vagrant/README.md). + + +# Questions If you have questions, open an issue and ask us. We're looking forward to hearing from you! -* Follow @MagentoDevDocs +* [Follow @MagentoDevDocs][twitter] + +* [E-mail us][e-mail] + + + -* E-mail us +[jekyll]: https://jekyllrb.com +[jekyll-last-modified-at]: https://rubygems.org/gems/jekyll-last-modified-at +[twitter]: https://twitter.com/MagentoDevDocs +[e-mail]: mailto:DL-Magento-Doc-Feedback@magento.com -* Visit our documentation site, built on GitHub using [Jekyll](http://jekyllrb.com/). diff --git a/_config.yml b/_config.yml index f9ec31f1238..a22efd35968 100644 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,9 @@ # Site settings encoding: "utf-8" title: Magento 2 Developer Documentation -email: mailto:DL-Magento-Doc-Feedback@ebay.com -description: Magento 2 Developer Guide +email: mailto:DL-Magento-Doc-Feedback@magento.com +description: > # this means to ignore newlines until "baseurl:" + Magento 2 Developer Guide. baseurl: "/" # url: "https://github.com/magento/devdocs" # the base hostname & protocol for your site # twitter_username: magento @@ -10,16 +11,38 @@ baseurl: "/" markdown_ext: "markdown,mkdown,mkdn,mkd,md" +# 2.0.0 variables gdeurl: "/guides/v2.0/" -githuburl: "https://github.com/magento/devdocs/tree/develop/guides/v2.0/" +githuburl: "https://github.com/magento/devdocs/tree/2.0/guides/v2.0/" +mage2000url: "https://github.com/magento/magento2/blob/2.0/" + +# 1.x variables +m1xgdeurl: "/guides/m1x/" +m1xgithuburl: "https://github.com/magento/devdocs/tree/2.0/guides/m1x/" + +# 2.1.0 variables +gdeurl21: "/guides/v2.1/" +githuburl21: "https://github.com/magento/devdocs/tree/2.1/guides/v2.1/" +mage2100url: "https://github.com/magento/magento2/blob/2.1/" + +# 2.2.0 variables +gdeurl22: "/guides/v2.2/" +githuburl22: "https://github.com/magento/devdocs/tree/2.2/guides/v2.2/" +mage2200url: "https://github.com/magento/magento2/blob/2.2/" + +# 2.3.0 variables + +gdeurl23: "/guides/v2.3/" +githuburl23: "https://github.com/magento/devdocs/tree/2.3/guides/v2.3/" +mage2300url: "https://github.com/magento/magento2/blob/2.3/" + +# Other variables namem2fedg: "Magento 2 Frontend Developer's Guide" namem2devgde: "Magento 2 Developer's Guide" namem2apiref: "Magento 2 API Reference" namem2install: "Magento 2 Installation Guide" -mage2000url: "https://github.com/magento/magento2/blob/develop/" + # toc_baseurl: "https://github.corp.ebay.com/pages/Magento/devdocs_internal" -m1xgdeurl: "/guides/m1x/" -m1xgithuburl: "https://github.com/magento/devdocs/tree/develop/guides/m1x/" # Build settings markdown: kramdown @@ -28,6 +51,7 @@ highlighter: pygments incremental: true gems: - - jekyll-redirect-from + - 'jekyll-redirect-from' + - 'jekyll-last-modified-at' -exclude: ['scss','bin','node_modules'] +exclude: ['scss','bin','node_modules','vendor'] diff --git a/_includes/browsers/supported-browsers.md b/_includes/browsers/supported-browsers.md new file mode 100644 index 00000000000..7e1ca55a75c --- /dev/null +++ b/_includes/browsers/supported-browsers.md @@ -0,0 +1,18 @@ +
+ +Internet Explorer and Microsoft Edge (Windows) + +* Storefront: Internet Explorer 9 or later +* Magento Admin: Internet Explorer 11 or later, Microsoft Edge, latest–1 + +All other browsers (both storefront and Admin) + +* Magento Admin: Internet Explorer 11 or later, Microsoft Edge, latest–1 +* Firefox latest, latest–1 (any operating system) +* Chrome latest, latest–1 (any operating system) +* Safari latest, latest–1 (Mac OS) +* Safari Mobile for iPad 2, iPad Mini, iPad with Retina Display (iOS 7 or later), for desktop storefront +* Safari Mobile for iPhone 4 or later; iOS 7 or later, for mobile storefront +* Chrome for mobile latest–1 (Android 4 or later) for mobile storefront + +where *latest–1* means one major version earlier than the latest released version. \ No newline at end of file diff --git a/_includes/changes/ce_changes.html b/_includes/changes/ce_changes.html new file mode 100644 index 00000000000..5e83d0aa19d --- /dev/null +++ b/_includes/changes/ce_changes.html @@ -0,0 +1,2980 @@ + +

Class

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TargetWhat Changed
Magento\Framework\App\Response\XFrameOptPluginClass was removed.
Magento\Framework\App\Cache\Type\WebapiClass was removed.
Magento\Weee\Observer\Total\Webapi\ItemObserverClass was removed.
Magento\User\Observer\Backend\CheckAdminPasswordChangeObserverClass was removed.
Magento\Theme\Observer\ThemeRegistrationObserverClass was removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\EditClass was removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\FormClass was removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\TabsClass was removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\MainClass was removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Main\Renderer\CheckboxClass was removed.
Magento\ProductVideo\Setup\UpgradeDataClass was removed.
Magento\ProductVideo\Model\Plugin\BaseImageClass was removed.
Magento\ProductVideo\Model\Plugin\ExternalVideoEntryProcessorClass was removed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\AbstractFilterValidatorClass was removed.
Magento\PageCache\Observer\InvalidateCacheIfChangedClass was removed.
Magento\PageCache\Model\App\FrontController\MessageBoxClass was removed.
Magento\OfflineShipping\Observer\SalesRule\ActionsTabPrepareFormObserverClass was removed.
Magento\Indexer\Model\Processor\InvalidateCacheClass was removed.
Magento\GoogleOptimizer\Observer\Block\Category\AddGoogleExperimentTabObserverClass was removed.
Magento\GoogleOptimizer\Block\Adminhtml\Catalog\Category\Edit\Tab\GoogleoptimizerClass was removed.
Magento\Downloadable\Model\Plugin\AfterProductLoadClass was removed.
Magento\Downloadable\Model\Plugin\AroundProductRepositorySaveClass was removed.
Magento\ConfigurableProduct\Model\Product\VariationMediaAttributesClass was removed.
Magento\ConfigurableProduct\Model\Plugin\AfterProductLoadClass was removed.
Magento\Cms\Block\Adminhtml\Page\EditClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\FormClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\TabsClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\Tab\ContentClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\Tab\DesignClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\Tab\MainClass was removed.
Magento\Cms\Block\Adminhtml\Page\Edit\Tab\MetaClass was removed.
Magento\Cms\Block\Adminhtml\Block\EditClass was removed.
Magento\Cms\Block\Adminhtml\Block\Edit\FormClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\EditClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\FormClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\JsClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\TabsClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\Tab\ActionsClass was removed.
Magento\CatalogRule\Block\Adminhtml\Promo\Catalog\Edit\Tab\MainClass was removed.
Magento\CatalogInventory\Observer\AddStockStatusToCollectionObserverClass was removed.
Magento\Catalog\Observer\AddCatalogToTopmenuItemsObserverClass was removed.
Magento\Catalog\Model\Webapi\Product\Option\Type\File\ValidatorClass was removed.
Magento\Catalog\Model\ResourceModel\Product\Attribute\Backend\MediaClass was removed.
Magento\Catalog\Model\Product\Attribute\Backend\AbstractMediaClass was removed.
Magento\Catalog\Model\Product\Attribute\Backend\MediaClass was removed.
Magento\Catalog\Model\Indexer\Product\AffectCacheClass was removed.
Magento\Catalog\Model\Indexer\Category\AffectCacheClass was removed.
Magento\Catalog\Model\Indexer\Category\Product\Plugin\IndexerStateClass was removed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\BaseImageClass was removed.
Magento\Catalog\Block\Adminhtml\Category\TabsClass was removed.
Magento\Catalog\Block\Adminhtml\Category\Tab\AttributesClass was removed.
Magento\Catalog\Block\Adminhtml\Category\Tab\DesignClass was removed.
Magento\Catalog\Block\Adminhtml\Category\Edit\FormClass was removed.
Magento\Bundle\Model\Plugin\BundleLoadOptionsClass was removed.
Magento\Bundle\Model\Plugin\BundleSaveOptionsClass was removed.
Magento\Braintree\Observer\DeleteBraintreeCustomerClass was removed.
Magento\Braintree\Observer\ProcessBraintreeAddressClass was removed.
Magento\Braintree\Observer\ProcessBraintreePaymentClass was removed.
Magento\Braintree\Model\CheckoutClass was removed.
Magento\Braintree\Model\ConfigClass was removed.
Magento\Braintree\Model\ConfigProviderClass was removed.
Magento\Braintree\Model\PaymentMethodClass was removed.
Magento\Braintree\Model\VaultClass was removed.
Magento\Braintree\Model\System\Config\Source\CountryClass was removed.
Magento\Braintree\Model\System\Config\Backend\CountrycreditcardClass was removed.
Magento\Braintree\Model\System\Config\Backend\UsevaultClass was removed.
Magento\Braintree\Model\Source\CaptureActionClass was removed.
Magento\Braintree\Model\Source\CcTypeClass was removed.
Magento\Braintree\Model\Source\EnvironmentClass was removed.
Magento\Braintree\Model\Source\PaymentActionClass was removed.
Magento\Braintree\Model\Plugin\Sales\Order\PaymentPluginClass was removed.
Magento\Braintree\Model\PaymentMethod\PayPalClass was removed.
Magento\Braintree\Model\ConfigProvider\PayPalClass was removed.
Magento\Braintree\Model\Config\CcClass was removed.
Magento\Braintree\Model\Config\PayPalClass was removed.
Magento\Braintree\Model\Adapter\BraintreeClientTokenClass was removed.
Magento\Braintree\Model\Adapter\BraintreeConfigurationClass was removed.
Magento\Braintree\Model\Adapter\BraintreeCreditCardClass was removed.
Magento\Braintree\Model\Adapter\BraintreeCustomerClass was removed.
Magento\Braintree\Model\Adapter\BraintreePaymentMethodClass was removed.
Magento\Braintree\Model\Adapter\BraintreeTransactionClass was removed.
Magento\Braintree\Helper\CreateorderClass was removed.
Magento\Braintree\Helper\DataClass was removed.
Magento\Braintree\Helper\ErrorClass was removed.
Magento\Braintree\Controller\MyCreditCardsClass was removed.
Magento\Braintree\Controller\PayPalClass was removed.
Magento\Braintree\Controller\PayPal\PlaceOrderClass was removed.
Magento\Braintree\Controller\PayPal\ReviewClass was removed.
Magento\Braintree\Controller\PayPal\SaveShippingMethodClass was removed.
Magento\Braintree\Controller\Creditcard\AjaxSaveClass was removed.
Magento\Braintree\Controller\Creditcard\DeleteClass was removed.
Magento\Braintree\Controller\Creditcard\DeleteConfirmClass was removed.
Magento\Braintree\Controller\Creditcard\EditClass was removed.
Magento\Braintree\Controller\Creditcard\GenerateClass was removed.
Magento\Braintree\Controller\Creditcard\IndexClass was removed.
Magento\Braintree\Controller\Creditcard\NewCardClass was removed.
Magento\Braintree\Controller\Creditcard\SaveClass was removed.
Magento\Braintree\Block\DatajsClass was removed.
Magento\Braintree\Block\PayPal\ShortcutClass was removed.
Magento\Braintree\Block\Info\PayPalClass was removed.
Magento\Braintree\Block\Directory\DataClass was removed.
Magento\Braintree\Block\Creditcard\ManagementClass was removed.
Magento\Braintree\Block\Checkout\ReviewClass was removed.
Magento\Braintree\Block\Adminhtml\Form\Field\CctypesClass was removed.
Magento\Braintree\Block\Adminhtml\Form\Field\CountrycreditcardClass was removed.
Magento\Framework\Url::__construct[public] Method parameter changed.
Magento\Framework\View\Template\Html\Minifier::__construct[public] Method parameter changed.
Magento\Framework\View\Template\Html\Minifier::$rootDirectory[protected] Property has been removed.
Magento\Framework\View\Element\UiComponent\Context::__construct[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\DataProvider\DataProvider::__construct[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\DataProvider\FilterPool::applyFilters[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\DataProvider\FulltextFilter::apply[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\DataProvider\RegularFilter::apply[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollector::__construct[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollector::$filesystem[protected] Property has been removed.
Magento\Framework\View\Design\FileResolution\Fallback\Resolver\Alternative::__construct[public] Method parameter changed.
Magento\Framework\View\Design\FileResolution\Fallback\Resolver\Simple::__construct[public] Method parameter changed.
Magento\Framework\View\Design\FileResolution\Fallback\Resolver\Simple::$rootDirectory[protected] Property has been removed.
Magento\Framework\View\Asset\Source::__construct[public] Method parameter changed.
Magento\Framework\Validator\Factory::__construct[public] Method parameter changed.
Magento\Framework\Search\Adapter\Mysql\Aggregation\Builder::__construct[public] Method parameter changed.
Magento\Framework\ObjectManager\Relations\Runtime::__construct[public] Method parameter changed.
Magento\Framework\ObjectManager\Definition\Compiled::__construct[public] Method parameter changed.
Magento\Framework\ObjectManager\Definition\Runtime::__construct[public] Method parameter changed.
Magento\Framework\Model\ResourceModel\AbstractResource::$_commitCallbacks[protected] Property has been removed.
Magento\Framework\Model\ResourceModel\Type\Db\Pdo\Mysql::__construct[public] Method parameter changed.
Magento\Framework\Model\ResourceModel\Db\AbstractDb::afterLoad[public] Method parameter changed.
Magento\Framework\Data\Form\FormKey::__construct[public] Method parameter changed.
Magento\Framework\Data\Form\Filter\Date::__construct[public] Method parameter changed.
Magento\Framework\DB\Select::__construct[public] Method parameter changed.
Magento\Framework\DB\Adapter\Pdo\Mysql::__construct[public] Method parameter changed.
Magento\Framework\Composer\ComposerInformation::__construct[public] Method parameter changed.
Magento\Framework\App\Cron::__construct[public] Method parameter changed.
Magento\Framework\App\Cron::$_eventManager[protected] Property has been removed.
Magento\Framework\App\View\Asset\Publisher::__construct[public] Method parameter changed.
Magento\Framework\App\Config\Value::afterLoad[public] Method has been removed.
Magento\Framework\App\Action\Plugin\Design::aroundDispatch[public] Method has been removed.
Magento\Framework\App\Action\Plugin\Design::__construct[public] Method parameter changed.
Magento\Framework\Api\DataObjectHelper::setComplexValue[protected] Method parameter changed.
Magento\Wishlist\Controller\Index\Add::__construct[public] Method parameter changed.
Magento\Wishlist\Controller\Index\Cart::__construct[public] Method parameter changed.
Magento\Wishlist\Controller\Index\Fromcart::__construct[public] Method parameter changed.
Magento\Wishlist\Controller\Index\Remove::__construct[public] Method parameter changed.
Magento\Wishlist\Controller\Index\UpdateItemOptions::__construct[public] Method parameter changed.
Magento\Widget\Controller\Adminhtml\Widget\Instance::_isAllowed[protected] Method has been removed.
Magento\Webapi\Model\AbstractSchemaGenerator::__construct[public] Method parameter changed.
Magento\Webapi\Model\AbstractSchemaGenerator::$storeManager[protected] Property has been removed.
Magento\Webapi\Model\Config::__construct[public] Method parameter changed.
Magento\Webapi\Model\ServiceMetadata::__construct[public] Method parameter changed.
Magento\Webapi\Model\Soap\Server::__construct[public] Method parameter changed.
Magento\Webapi\Model\Soap\Wsdl\Generator::__construct[public] Method parameter changed.
Magento\Webapi\Model\Rest\Swagger\Generator::__construct[public] Method parameter changed.
Magento\Webapi\Model\Plugin\Manager::__construct[public] Method parameter changed.
Magento\Webapi\Model\Plugin\Manager::$_integrationConfig[protected] Property has been removed.
Magento\Webapi\Controller\Rest::isAllowed[protected] Method has been removed.
Magento\Webapi\Controller\Rest::__construct[public] Method parameter changed.
Magento\Webapi\Controller\Rest::$_authorization[protected] Property has been removed.
Magento\Webapi\Controller\Soap::_getAccessToken[protected] Method has been removed.
Magento\Webapi\Controller\Soap\Request\Handler::__construct[public] Method parameter changed.
Magento\Webapi\Controller\Soap\Request\Handler::$_authorization[protected] Property has been removed.
Magento\Variable\Controller\Adminhtml\System\Variable::_isAllowed[protected] Method has been removed.
Magento\User\Observer\Backend\TrackAdminNewPasswordObserver::__construct[public] Method parameter changed.
Magento\User\Observer\Backend\TrackAdminNewPasswordObserver::$encryptor[protected] Property has been removed.
Magento\User\Controller\Adminhtml\Locks::_isAllowed[protected] Method has been removed.
Magento\User\Controller\Adminhtml\User::_isAllowed[protected] Method has been removed.
Magento\User\Controller\Adminhtml\User\Role::_isAllowed[protected] Method has been removed.
Magento\User\Block\Role\Tab\Edit::_construct[protected] Method has been removed.
Magento\User\Block\Role\Tab\Edit::__construct[public] Method parameter changed.
Magento\UrlRewrite\Controller\Adminhtml\Url\Rewrite::_isAllowed[protected] Method has been removed.
Magento\Ui\DataProvider\EavValidationRules::$validationRul[protected] Property has been removed.
Magento\Ui\Component\Listing\Columns::prepare[public] Method has been removed.
Magento\Ui\Component\Layout\Tabs::addWrappedBlock[protected] Method parameter changed.
Magento\Ui\Component\Layout\Tabs::$component[protected] Property has been removed.
Magento\Ui\Component\Layout\Tabs::$namespace[protected] Property has been removed.
Magento\Ui\Component\Layout\Tabs::$uiComponentFactory[protected] Property has been removed.
Magento\Ui\Component\Form\Fieldset::__construct[public] Method has been removed.
Magento\Ui\Component\Form\Fieldset::prepare[public] Method has been removed.
Magento\Ui\Component\Form\Fieldset::prepareField[protected] Method has been removed.
Magento\Ui\Component\Form\Fieldset::updateField[protected] Method has been removed.
Magento\Ui\Component\Form\Fieldset::updateDataScope[protected] Method has been removed.
Magento\Ui\Component\Form\Fieldset::$fieldsInContainers[protected] Property has been removed.
Magento\Ui\Component\Form\Element\Select::__construct[public] Method has been removed.
Magento\Ui\Component\Form\Element\Select::prepare[public] Method has been removed.
Magento\Ui\Component\Form\Element\Select::$options[protected] Property has been removed.
Magento\Theme\Setup\InstallData::createThemeResource[public] Method has been removed.
Magento\Theme\Setup\InstallData::createTheme[public] Method has been removed.
Magento\Theme\Setup\InstallData::__construct[public] Method parameter changed.
Magento\Theme\Model\Uploader\Service::__construct[public] Method parameter changed.
Magento\Theme\Model\Theme\ThemeProvider::__construct[public] Method parameter changed.
Magento\Theme\Model\Theme\Plugin\Registration::__construct[public] Method parameter changed.
Magento\Theme\Controller\Adminhtml\System\Design\Theme::_isAllowed[protected] Method has been removed.
Magento\TaxImportExport\Controller\Adminhtml\Rate::_isAllowed[protected] Method has been removed.
Magento\TaxImportExport\Controller\Adminhtml\Rate\ImportExport::_isAllowed[protected] Method has been removed.
Magento\Tax\Controller\Adminhtml\Rate::_isAllowed[protected] Method has been removed.
Magento\Tax\Controller\Adminhtml\Rule::_isAllowed[protected] Method has been removed.
Magento\Tax\Controller\Adminhtml\Tax::_isAllowed[protected] Method has been removed.
Magento\Swatches\Helper\Data::prepareVariationCollection[protected] Method has been removed.
Magento\Swatches\Helper\Data::getProductMedia[protected] Method has been removed.
Magento\Swatches\Helper\Data::createSwatchProduct[protected] Method has been removed.
Magento\Swatches\Helper\Data::__construct[public] Method parameter changed.
Magento\Swatches\Helper\Data::loadFirstVariationWithSwatchImage[public] Method parameter changed.
Magento\Swatches\Helper\Data::loadVariationByFallback[public] Method parameter changed.
Magento\Swatches\Helper\Data::loadFirstVariationWithImage[public] Method parameter changed.
Magento\Swatches\Helper\Data::getProductMediaGallery[public] Method parameter changed.
Magento\Swatches\Helper\Data::$model[protected] Property has been removed.
Magento\Swatches\Helper\Data::$configurable[protected] Property has been removed.
Magento\Swatches\Helper\Data::CATALOG_PRODUCT_MEDIA_PATHConstant has been removed.
Magento\Swatches\Controller\Adminhtml\Iframe\Show::_isAllowed[protected] Method has been removed.
Magento\Swatches\Block\Product\Renderer\Configurable::getAllOptionsIdsFromAttributeArray[protected] Method has been removed.
Magento\Swatches\Block\Product\Renderer\Configurable::EMPTY_IMAGE_VALUEConstant has been removed.
Magento\Store\Model\Plugin\StoreCookie::aroundDispatch[public] Method has been removed.
Magento\Store\App\FrontController\Plugin\RequestPreprocessor::_isBaseUrlCheckEnabled[protected] Method has been removed.
Magento\Store\App\FrontController\Plugin\RequestPreprocessor::_isBaseUrlCorrect[protected] Method has been removed.
Magento\Sitemap\Model\ResourceModel\Catalog\Category::__construct[public] Method parameter changed.
Magento\Sitemap\Model\ResourceModel\Catalog\Product::_getMediaGalleryModel[protected] Method has been removed.
Magento\Sitemap\Model\ResourceModel\Catalog\Product::__construct[public] Method parameter changed.
Magento\Sitemap\Model\ResourceModel\Catalog\Product::$_mediaGalleryModel[protected] Property has been removed.
Magento\Sitemap\Model\ResourceModel\Catalog\Product::$_mediaAttribute[protected] Property has been removed.
Magento\Sitemap\Model\ResourceModel\Catalog\Product::$_eavConfigFactory[protected] Property has been removed.
Magento\Sitemap\Controller\Adminhtml\Sitemap::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Shipment\MassPrintShippingLabel::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\AddComment::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\AddTrack::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\CreateLabel::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\Email::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\GetShippingItemsGrid::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\MassPrintShippingLabel::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\NewAction::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\PrintLabel::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\PrintPackage::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\RemoveTrack::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\Save::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\Start::_isAllowed[protected] Method has been removed.
Magento\Shipping\Controller\Adminhtml\Order\Shipment\View::_isAllowed[protected] Method has been removed.
Magento\Search\Helper\Data::__construct[public] Method parameter changed.
Magento\Search\Helper\Data::$_suggestData[protected] Property has been removed.
Magento\Search\Helper\Data::$_query[protected] Property has been removed.
Magento\Search\Helper\Data::$_queryText[protected] Property has been removed.
Magento\Search\Helper\Data::$_scopeConfig[protected] Property has been removed.
Magento\Search\Helper\Data::$_queryFactory[protected] Property has been removed.
Magento\Search\Helper\Data::$_escaper[protected] Property has been removed.
Magento\Search\Helper\Data::$_storeManager[protected] Property has been removed.
Magento\Search\Controller\Adminhtml\Term::_isAllowed[protected] Method has been removed.
Magento\Search\Controller\Adminhtml\Term\Report::_isAllowed[protected] Method has been removed.
Magento\SalesRule\Model\ResourceModel\Rule::_afterLoad[protected] Method has been removed.
Magento\SalesRule\Controller\Adminhtml\Promo\Quote::_isAllowed[protected] Method has been removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Coupons::__construct[public] Method has been removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Coupons::_isEditing[protected] Method has been removed.
Magento\SalesRule\Block\Adminhtml\Promo\Quote\Edit\Tab\Coupons::$_coreRegistry[protected] Property has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_PAYMENTConstant has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_ORDERConstant has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_AUTHConstant has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_CAPTUREConstant has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_VOIDConstant has been removed.
Magento\Sales\Model\Order\Payment\Transaction::TYPE_REFUNDConstant has been removed.
Magento\Sales\Controller\Adminhtml\Order::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Transactions::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Transactions\Fetch::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment\Index::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment\Pdfshipments::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment\PrintAction::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Shipment\AbstractShipment\View::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\AddComment::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Address::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\AddressSave::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Cancel::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemos::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Email::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Hold::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\ReviewPayment::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Status::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Unhold::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\View::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Invoice\NewAction::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Invoice\Save::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\AddConfigured::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\Cancel::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\ConfigureProductToAdd::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\ConfigureQuoteItems::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\Index::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\LoadBlock::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\ProcessData::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\Reorder::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\Save::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\ShowUpdateResult::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Edit\Start::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\AddComment::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\Cancel::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\NewAction::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\Save::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\Start::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\UpdateQty::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\View::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Order\Creditmemo\Void::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\Email::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\Grid::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\Index::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\Pdfinvoices::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\PrintAction::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\Email::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\Grid::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\Index::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\Pdfcreditmemos::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\PrintAction::_isAllowed[protected] Method has been removed.
Magento\Sales\Controller\Adminhtml\Creditmemo\AbstractCreditmemo\View::_isAllowed[protected] Method has been removed.
Magento\Review\Controller\Adminhtml\Rating::_isAllowed[protected] Method has been removed.
Magento\RequireJs\Block\Html\Head\Config::_toHtml[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Index::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Statistics::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\Downloads::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportDownloadsCsv::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportDownloadsExcel::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportLowstockCsv::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportLowstockExcel::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportSoldCsv::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportSoldExcel::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportViewedCsv::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\ExportViewedExcel::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\Lowstock::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\Sold::_isAllowed[protected] Method has been removed.
Magento\Reports\Controller\Adminhtml\Report\Product\Viewed::_isAllowed[protected] Method has been removed.
Magento\Quote\Model\Quote\Item\Repository::getBuyRequest[protected] Method has been removed.
Magento\Quote\Model\Quote\Item\Repository::addCustomOptionsToBuyRequest[protected] Method has been removed.
Magento\Quote\Model\Quote\Item\Repository::applyCustomOptions[protected] Method has been removed.
Magento\Quote\Model\Quote\Item\Repository::addProductOptions[protected] Method has been removed.
Magento\ProductVideo\Model\Plugin\ExternalVideoResourceBackend::afterDuplicate[public] Method parameter changed.
Magento\Persistent\Observer\EmulateCustomerObserver::__construct[public] Method parameter changed.
Magento\Paypal\Model\ExpressConfigProvider::__construct[public] Method parameter changed.
Magento\Paypal\Model\Hostedpro::_setPaymentFormUrl[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro::_buildFormUrlRequest[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro::_sendFormUrlRequest[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro::_buildBasicRequest[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro::_getUrl[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro::$_hostedproRequestFactory[protected] Property has been removed.
Magento\Paypal\Model\Payflow\Transparent::__construct[public] Method parameter changed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\AVSResponse::validate[public] Method parameter changed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\CVV2Match::isValidationOff[protected] Method has been removed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\CVV2Match::validate[public] Method parameter changed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\ResponseValidator::validate[public] Method parameter changed.
Magento\Paypal\Model\Payflow\Service\Response\Validator\SecureToken::validate[public] Method parameter changed.
Magento\Paypal\Model\Hostedpro\Request::_getAmountData[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::_getPaymentData[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::_getOrderData[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::_getShippingAddress[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::_getBillingAddress[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::_formatPrice[protected] Method has been removed.
Magento\Paypal\Model\Hostedpro\Request::setOrder[public] Method parameter changed.
Magento\Paypal\Model\Hostedpro\Request::$_order[protected] Property has been removed.
Magento\Paypal\Model\Hostedpro\Request::$_paymentMethod[protected] Property has been removed.
Magento\Paypal\Model\Hostedpro\Request::$_buttonVarFormat[protected] Property has been removed.
Magento\Paypal\Model\Hostedpro\Request::$_notButtonVars[protected] Property has been removed.
Magento\Paypal\Model\Hostedpro\Request::$_customerAddress[protected] Property has been removed.
Magento\Paypal\Model\Hostedpro\Request::$_taxData[protected] Property has been removed.
Magento\Paypal\Model\Api\AbstractApi::_filterAmount[protected] Method has been removed.
Magento\Paypal\Controller\Transparent\Response::__construct[public] Method parameter changed.
Magento\Paypal\Controller\Adminhtml\Paypal\Reports::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Paypal\Reports\Details::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Paypal\Reports\Fetch::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Paypal\Reports\Index::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement\Cancel::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement\Delete::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement\Grid::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement\Index::_isAllowed[protected] Method has been removed.
Magento\Paypal\Controller\Adminhtml\Billing\Agreement\View::_isAllowed[protected] Method has been removed.
Magento\Paypal\Block\Express\Shortcut::__construct[public] Method parameter changed.
Magento\Paypal\Block\Express\Shortcut::$_paypalData[protected] Property has been removed.
Magento\Paypal\Block\Express\Shortcut::$currentCustomer[protected] Property has been removed.
Magento\Paypal\Block\Adminhtml\System\Config\Field\Hidden::_decorateRowHtml[protected] Method parameter changed.
Magento\Payment\Model\Method\Cc::assignData[public] Method has been removed.
Magento\Payment\Gateway\Command\GatewayCommand::__construct[public] Method parameter changed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::_loadDirectoryCountries[protected] Method has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::_loadDirectoryRegions[protected] Method has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::_getImportRow[protected] Method has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::_parseDecimalValue[protected] Method has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::__construct[public] Method parameter changed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_coreConfig[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_logger[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_storeManager[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_carrierTablerate[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_countryCollectionFactory[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_regionCollectionFactory[protected] Property has been removed.
Magento\OfflineShipping\Model\ResourceModel\Carrier\Tablerate::$_filesystem[protected] Property has been removed.
Magento\OfflineShipping\Model\Carrier\Flatrate::__construct[public] Method parameter changed.
Magento\Newsletter\Controller\Adminhtml\Problem::_isAllowed[protected] Method has been removed.
Magento\Newsletter\Controller\Adminhtml\Queue::_isAllowed[protected] Method has been removed.
Magento\Newsletter\Controller\Adminhtml\Subscriber::_isAllowed[protected] Method has been removed.
Magento\Newsletter\Controller\Adminhtml\Template::_isAllowed[protected] Method has been removed.
Magento\Marketplace\Controller\Adminhtml\Index::_isAllowed[protected] Method has been removed.
Magento\Marketplace\Controller\Adminhtml\Partners::_isAllowed[protected] Method has been removed.
Magento\Integration\Model\ConfigBasedIntegrationManager::__construct[public] Method parameter changed.
Magento\Integration\Model\ConfigBasedIntegrationManager::$_integrationService[protected] Property has been removed.
Magento\Integration\Model\ConfigBasedIntegrationManager::$_integrationConfig[protected] Property has been removed.
Magento\Integration\Model\Plugin\Integration::__construct[public] Method parameter changed.
Magento\Integration\Controller\Adminhtml\Integration::_isAllowed[protected] Method has been removed.
Magento\ImportExport\Controller\Adminhtml\Export::_isAllowed[protected] Method has been removed.
Magento\ImportExport\Controller\Adminhtml\History::_isAllowed[protected] Method has been removed.
Magento\ImportExport\Controller\Adminhtml\Import::_isAllowed[protected] Method has been removed.
Magento\GroupedProduct\Pricing\Price\ConfiguredPrice::getAmount[public] Method has been removed.
Magento\GroupedProduct\Model\ResourceModel\Product\Link::saveGroupedLinks[public] Method has been removed.
Magento\GroupedProduct\Model\Product\Type\Grouped::save[public] Method has been removed.
Magento\GroupedProduct\Controller\Adminhtml\Edit\Popup::_isAllowed[protected] Method has been removed.
Magento\GiftMessage\Model\Plugin\OrderGet::aroundGet[public] Method has been removed.
Magento\GiftMessage\Model\Plugin\OrderSave::aroundSave[public] Method has been removed.
Magento\EncryptionKey\Model\ResourceModel\Key\Change::__construct[public] Method parameter changed.
Magento\EncryptionKey\Controller\Adminhtml\Crypt\Key::_isAllowed[protected] Method has been removed.
Magento\Email\Controller\Adminhtml\Email\Template::_isAllowed[protected] Method has been removed.
Magento\Eav\Model\ResourceModel\Entity\Attribute\Group::TAB_GENERAL_CODEConstant has been removed.
Magento\Eav\Model\ResourceModel\Entity\Attribute\Group::TAB_IMAGE_MANAGEMENT_CODEConstant has been removed.
Magento\Eav\Model\Entity\AbstractEntity::_getDefaultAttribute[protected] Method has been removed.
Magento\Eav\Model\Entity\AbstractEntity::$_defaultAttributes[protected] Property has been removed.
Magento\Downloadable\Model\Product\Type::save[public] Method has been removed.
Magento\Downloadable\Model\Product\Type::beforeSave[public] Method has been removed.
Magento\Downloadable\Controller\Adminhtml\Downloadable\File::_isAllowed[protected] Method has been removed.
Magento\Downloadable\Block\Sales\Order\Email\Items\Downloadable::__construct[public] Method parameter changed.
Magento\Downloadable\Block\Sales\Order\Email\Items\Downloadable::$urlGenerator[protected] Property has been removed.
Magento\Directory\Model\ResourceModel\Country\Collection::__construct[public] Method parameter changed.
Magento\Directory\Model\Currency\Import\Webservicex::$_httpClient[protected] Property has been removed.
Magento\Directory\Model\Currency\Import\Webservicex::$_scopeConfig[protected] Property has been removed.
Magento\Developer\Console\Command\XmlCatalogGenerateCommand::__construct[public] Method parameter changed.
Magento\Deploy\Model\Filesystem::__construct[public] Method parameter changed.
Magento\CustomerImportExport\Model\Import\Address::__construct[public] Method parameter changed.
Magento\Customer\Observer\AfterAddressSaveObserver::__construct[public] Method parameter changed.
Magento\Customer\Model\Metadata\CachedMetadata::$attributeMetadataCache[protected] Property has been removed.
Magento\Customer\Model\Metadata\CachedMetadata::$attributesCache[protected] Property has been removed.
Magento\Customer\Model\Metadata\CachedMetadata::$allAttributeMetadataCache[protected] Property has been removed.
Magento\Customer\Model\Metadata\CachedMetadata::$customAttributesMetadataCache[protected] Property has been removed.
Magento\Customer\Model\Account\Redirect::__construct[public] Method parameter changed.
Magento\Customer\Model\Account\Redirect::$resultRedirectFactory[protected] Property has been removed.
Magento\Customer\Controller\Adminhtml\Group::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Index::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Wishlist\Product\Composite\Wishlist::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Online\Index::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Index\AbstractMassAction::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Index\InlineEdit::_isAllowed[protected] Method has been removed.
Magento\Customer\Controller\Adminhtml\Index\Save::$_formFactory[protected] Property has been removed.
Magento\Customer\Controller\Adminhtml\Cart\Product\Composite\Cart::_isAllowed[protected] Method has been removed.
Magento\Customer\Block\Widget\Dob::__construct[public] Method parameter changed.
Magento\Customer\Block\Address\Renderer\DefaultRenderer::getFormat[public] Method parameter changed.
Magento\CurrencySymbol\Controller\Adminhtml\System\Currency::_isAllowed[protected] Method has been removed.
Magento\CurrencySymbol\Controller\Adminhtml\System\Currencysymbol::_isAllowed[protected] Method has been removed.
Magento\Cron\Observer\ProcessCronQueueObserver::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Model\OptionRepository::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable::saveProducts[public] Method parameter changed.
Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable::$_catalogProductRelation[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\VariationHandler::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Model\Product\VariationHandler::$media[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\VariationHandler::$variationMediaAttributes[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\Type\Configurable::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Model\Product\Type\Configurable::$_usedProductAttributeIds[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\Type\Configurable::$_usedProductAttributes[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\Type\Configurable::$_configurableAttributeFactory[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Product\Type\Configurable::$_typeConfigurableFactory[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave::saveConfigurableProductOptions[protected] Method has been removed.
Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave::saveConfigurableProductLinks[protected] Method has been removed.
Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave::$optionRepository[protected] Property has been removed.
Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave::$typeConfigurableFactory[protected] Property has been removed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Configurable::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Configurable::afterInitialize[public] Method parameter changed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Configurable::$productType[protected] Property has been removed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute\CreateOptions::_isAllowed[protected] Method has been removed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute\GetAttributes::_isAllowed[protected] Method has been removed.
Magento\ConfigurableProduct\Controller\Adminhtml\Product\Attribute\SuggestConfigurableAttributes::_isAllowed[protected] Method has been removed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps\Bulk::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Steps\Bulk::$variationMediaAttributes[protected] Property has been removed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Tab\Variations\Config::isConfigurableProduct[public] Method has been removed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Tab\Variations\Config::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Tab\Variations\Config\Matrix::__construct[public] Method parameter changed.
Magento\ConfigurableProduct\Block\Adminhtml\Product\Edit\Tab\Variations\Config\Matrix::$_coreRegistry[protected] Property has been removed.
Magento\Config\Block\System\Config\Form\Field::_decorateRowHtml[protected] Method parameter changed.
Magento\Cms\Model\Wysiwyg\Config::__construct[public] Method parameter changed.
Magento\Cms\Model\ResourceModel\AbstractCollection::__construct[public] Method parameter changed.
Magento\Cms\Model\ResourceModel\Block::_beforeDelete[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Block::_afterSave[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Block::_afterLoad[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Block::__construct[public] Method parameter changed.
Magento\Cms\Model\ResourceModel\Page::_beforeDelete[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Page::_afterSave[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Page::_afterLoad[protected] Method has been removed.
Magento\Cms\Model\ResourceModel\Page::__construct[public] Method parameter changed.
Magento\Cms\Model\ResourceModel\Page\Grid\Collection::getAllIds[public] Method has been removed.
Magento\Cms\Model\ResourceModel\Page\Grid\Collection::__construct[public] Method parameter changed.
Magento\Cms\Model\ResourceModel\Block\Grid\Collection::__construct[public] Method parameter changed.
Magento\Cms\Controller\Adminhtml\Block::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Wysiwyg\Images::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\Delete::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\Edit::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\Index::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\NewAction::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\Save::_isAllowed[protected] Method has been removed.
Magento\Cms\Controller\Adminhtml\Page\Save::__construct[public] Method parameter changed.
Magento\CheckoutAgreements\Controller\Adminhtml\Agreement::_isAllowed[protected] Method has been removed.
Magento\CatalogWidget\Controller\Adminhtml\Product\Widget::_isAllowed[protected] Method has been removed.
Magento\CatalogUrlRewrite\Plugin\Catalog\Block\Adminhtml\Category\Tab\Attributes::afterSetForm[public] Method has been removed.
Magento\CatalogUrlRewrite\Observer\AfterImportDataObserver::cleanOverriddenUrlKey[protected] Method has been removed.
Magento\CatalogUrlRewrite\Observer\AfterImportDataObserver::__construct[public] Method parameter changed.
Magento\CatalogUrlRewrite\Observer\AfterImportDataObserver::$urlKeyAttribute[protected] Property has been removed.
Magento\CatalogUrlRewrite\Observer\AfterImportDataObserver::$entityStoresToCheckOverridden[protected] Property has been removed.
Magento\CatalogSearch\Model\Source\Weight::$_weights[protected] Property has been removed.
Magento\CatalogSearch\Model\Search\IndexBuilder::__construct[public] Method parameter changed.
Magento\CatalogSearch\Model\Indexer\IndexerHandler::__construct[public] Method parameter changed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::rebuildIndex[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getSearchableProducts[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::deleteIndex[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getProductAttributes[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getProductChildIds[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::prepareProductIndex[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getAttributeValue[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getStoreDate[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::getIterator[protected] Method has been removed.
Magento\CatalogSearch\Model\Indexer\Fulltext\Action\Full::__construct[public] Method parameter changed.
Magento\CatalogRule\Model\ResourceModel\Rule::_afterLoad[protected] Method has been removed.
Magento\CatalogRule\Model\ResourceModel\Rule::_afterSave[protected] Method has been removed.
Magento\CatalogRule\Model\ResourceModel\Rule::$_associatedEntitiesMap[protected] Property has been removed.
Magento\CatalogRule\Model\Indexer\IndexBuilder::getRuleProductsStmt[protected] Method parameter changed.
Magento\CatalogRule\Controller\Adminhtml\Promo\Catalog::_isAllowed[protected] Method has been removed.
Magento\CatalogRule\Controller\Adminhtml\Promo\Index::_isAllowed[protected] Method has been removed.
Magento\CatalogRule\Controller\Adminhtml\Promo\Widget::_isAllowed[protected] Method has been removed.
Magento\CatalogInventory\Model\StockRegistryProvider::$stocks[protected] Property has been removed.
Magento\CatalogInventory\Model\StockRegistryProvider::$stockItems[protected] Property has been removed.
Magento\CatalogInventory\Model\StockRegistryProvider::$stockStatuses[protected] Property has been removed.
Magento\CatalogInventory\Model\Plugin\AroundProductRepositorySave::__construct[public] Method parameter changed.
Magento\CatalogImportExport\Model\Import\Product::_saveProductEntity[protected] Method has been removed.
Magento\CatalogImportExport\Model\Import\Product::getBunchImages[protected] Method has been removed.
Magento\CatalogImportExport\Model\Import\Product::__construct[public] Method parameter changed.
Magento\Catalog\Setup\UpgradeData::__construct[public] Method parameter changed.
Magento\Catalog\Plugin\Model\Product\Action\UpdateAttributesFlushCache::aroundUpdateAttributes[public] Method has been removed.
Magento\Catalog\Model\Product::getGalleryAttributeBackend[public] Method has been removed.
Magento\Catalog\Model\Product::$_options[protected] Property has been removed.
Magento\Catalog\Model\Product::$optionsInitialized[protected] Property has been removed.
Magento\Catalog\Model\ProductRepository::$optionConverter[protected] Property has been removed.
Magento\Catalog\Model\ProductRepository::$contentValidator[protected] Property has been removed.
Magento\Catalog\Model\ProductRepository::$mimeTypeExtensionMap[protected] Property has been removed.
Magento\Catalog\Model\ResourceModel\AbstractResource::_setAttributeValue[protected] Method has been removed.
Magento\Catalog\Model\ResourceModel\AbstractResource::_isAttributeValueEmpty[protected] Method has been removed.
Magento\Catalog\Model\ResourceModel\AbstractResource::load[public] Method has been removed.
Magento\Catalog\Model\ResourceModel\AbstractResource::$_attributes[protected] Property has been removed.
Magento\Catalog\Model\ResourceModel\Product::getAssignedImages[public] Method has been removed.
Magento\Catalog\Model\Product\Option::saveOptions[public] Method has been removed.
Magento\Catalog\Model\Product\Option\Type\File\ValidatorFile::__construct[public] Method parameter changed.
Magento\Catalog\Model\Product\Gallery\GalleryManagement::getGalleryAttributeBackend[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Category::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product\Attribute::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product\Set::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product\SuggestAttributes::__construct[public] Method parameter changed.
Magento\Catalog\Controller\Adminhtml\Product\Group\Save::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product\Gallery\Upload::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Product\Attribute\Save::__construct[public] Method parameter changed.
Magento\Catalog\Controller\Adminhtml\Product\Action\Attribute::_isAllowed[protected] Method has been removed.
Magento\Catalog\Controller\Adminhtml\Category\Save::__construct[public] Method parameter changed.
Magento\Catalog\Controller\Adminhtml\Category\Wysiwyg::_isAllowed[protected] Method has been removed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery::getLabel[public] Method has been removed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery::getAttributeReadonly[public] Method has been removed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery::__construct[public] Method parameter changed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery::$_storeManager[protected] Property has been removed.
Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Gallery::$_layout[protected] Property has been removed.
Magento\Catalog\Block\Adminhtml\Category\Edit::_construct[protected] Method has been removed.
Magento\Catalog\Block\Adminhtml\Category\Edit::$_template[protected] Property has been removed.
Magento\Bundle\Model\Product\Type::save[public] Method has been removed.
Magento\Bundle\Controller\Adminhtml\Product\Initialization\Helper\Plugin\Bundle::__construct[public] Method parameter changed.
Magento\Braintree\Observer\AddPaypalShortcuts::__construct[public] Method has been removed.
Magento\Braintree\Observer\AddPaypalShortcuts::$paypalConfig[protected] Property has been removed.
Magento\Braintree\Observer\AddPaypalShortcuts::$methodPayPal[protected] Property has been removed.
Magento\Braintree\Block\Form::_construct[protected] Method has been removed.
Magento\Braintree\Block\Form::setMethodInfo[public] Method has been removed.
Magento\Braintree\Block\Form::getStoredCards[public] Method has been removed.
Magento\Braintree\Block\Form::canSaveCard[public] Method has been removed.
Magento\Braintree\Block\Form::isCustomerLoggedIn[public] Method has been removed.
Magento\Braintree\Block\Form::isCcDetectionEnabled[public] Method has been removed.
Magento\Braintree\Block\Form::useVault[public] Method has been removed.
Magento\Braintree\Block\Form::is3dSecureEnabled[public] Method has been removed.
Magento\Braintree\Block\Form::getBraintreeDataJs[public] Method has been removed.
Magento\Braintree\Block\Form::isFraudDetectionEnabled[public] Method has been removed.
Magento\Braintree\Block\Form::getConfigData[public] Method has been removed.
Magento\Braintree\Block\Form::getClientToken[public] Method has been removed.
Magento\Braintree\Block\Form::getTodayMonth[public] Method has been removed.
Magento\Braintree\Block\Form::getTodayYear[public] Method has been removed.
Magento\Braintree\Block\Form::__construct[public] Method parameter changed.
Magento\Braintree\Block\Form::$vault[protected] Property has been removed.
Magento\Braintree\Block\Form::$config[protected] Property has been removed.
Magento\Braintree\Block\Form::$onepage[protected] Property has been removed.
Magento\Braintree\Block\Form::$checkoutSession[protected] Property has been removed.
Magento\Braintree\Block\Form::$customerSession[protected] Property has been removed.
Magento\Braintree\Block\Form::$dataHelper[protected] Property has been removed.
Magento\Braintree\Block\Info::__construct[public] Method has been removed.
Magento\Braintree\Block\Info::getCcTypeName[protected] Method has been removed.
Magento\Braintree\Block\Info::_prepareSpecificInformation[protected] Method has been removed.
Magento\Braintree\Block\Info::getChildHtml[public] Method has been removed.
Magento\Braintree\Block\Info::$paymentConfig[protected] Property has been removed.
Magento\Braintree\Block\Adminhtml\Form\Field\Countries::_getCountries[protected] Method has been removed.
Magento\Braintree\Block\Adminhtml\Form\Field\Countries::__construct[public] Method parameter changed.
Magento\Braintree\Block\Adminhtml\Form\Field\Countries::$countries[protected] Property has been removed.
Magento\Braintree\Block\Adminhtml\Form\Field\Countries::$countrySource[protected] Property has been removed.
Magento\Braintree\Block\Adminhtml\Form\Field\Countries::$countryCollectionFactory[protected] Property has been removed.
Magento\Backup\Controller\Adminhtml\Index::_isAllowed[protected] Method has been removed.
Magento\Backend\Model\Url::__construct[public] Method parameter changed.
Magento\Backend\Model\Locale\Manager::__construct[public] Method parameter changed.
Magento\Backend\Controller\Adminhtml\Cache::_isAllowed[protected] Method has been removed.
Magento\Backend\Controller\Adminhtml\Dashboard::_isAllowed[protected] Method has been removed.
Magento\Backend\Controller\Adminhtml\System::_isAllowed[protected] Method has been removed.
Magento\Backend\Controller\Adminhtml\System\Account::_isAllowed[protected] Method has been removed.
Magento\Backend\Controller\Adminhtml\System\Design::_isAllowed[protected] Method has been removed.
Magento\Backend\Controller\Adminhtml\System\Store::_isAllowed[protected] Method has been removed.
Magento\AdminNotification\Controller\Adminhtml\Notification::_isAllowed[protected] Method has been removed.
Magento\AdminNotification\Controller\Adminhtml\Notification\MarkAsRead::_isAllowed[protected] Method has been removed.
Magento\AdminNotification\Controller\Adminhtml\Notification\MassMarkAsRead::_isAllowed[protected] Method has been removed.
Magento\AdminNotification\Controller\Adminhtml\Notification\MassRemove::_isAllowed[protected] Method has been removed.
Magento\AdminNotification\Controller\Adminhtml\Notification\Remove::_isAllowed[protected] Method has been removed.
Magento\Vault\Model\PaymentTokenRepositoryProxyClass was added.
Magento\Vault\Model\Ui\TokensConfigProviderClass was added.
Magento\Vault\Model\Ui\Adminhtml\TokensConfigProviderClass was added.
Magento\Vault\Block\AbstractCardRendererClass was added.
Magento\Payment\Observer\AbstractDataAssignObserverClass was added.
Magento\Payment\Model\CcConfigProviderClass was added.
Magento\Payment\Gateway\Validator\AbstractValidatorClass was added.
Magento\Payment\Gateway\Validator\CountryValidatorClass was added.
Magento\Payment\Gateway\Validator\ValidatorCompositeClass was added.
Magento\Payment\Gateway\Validator\ValidatorPoolClass was added.
Magento\Payment\Gateway\Response\HandlerChainClass was added.
Magento\Payment\Gateway\Request\BuilderCompositeClass was added.
Magento\Payment\Gateway\Http\ClientExceptionClass was added.
Magento\Payment\Gateway\Http\ConverterExceptionClass was added.
Magento\Payment\Gateway\Http\TransferBuilderClass was added.
Magento\Payment\Gateway\Http\Converter\HtmlFormConverterClass was added.
Magento\Payment\Gateway\Http\Converter\Soap\ObjectToArrayConverterClass was added.
Magento\Payment\Gateway\Http\Client\SoapClass was added.
Magento\Payment\Gateway\Http\Client\ZendClass was added.
Magento\Payment\Gateway\Command\CommandExceptionClass was added.
Magento\Payment\Gateway\Command\CommandManagerClass was added.
Magento\Payment\Gateway\Command\CommandManagerPoolClass was added.
Magento\Payment\Gateway\Command\CommandPoolClass was added.
Magento\Payment\Gateway\Command\GatewayCommandClass was added.
Magento\Payment\Block\ConfigurableInfoClass was added.
Magento\Catalog\Ui\DataProvider\Product\Form\Modifier\EavClass was added.
Magento\Catalog\Model\Product\Type\AbstractTypeClass was added.
+ +

Interface

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TargetWhat Changed
Magento\Payment\Model\MethodInterface::setStore[public] Method has been added.
Magento\Payment\Model\MethodInterface::getStore[public] Method has been added.
Magento\Payment\Model\MethodInterface::canUseInternal[public] Method has been added.
Magento\Payment\Model\MethodInterface::canUseCheckout[public] Method has been added.
Magento\Payment\Model\MethodInterface::canUseForCountry[public] Method has been added.
Magento\Payment\Model\MethodInterface::canUseForCurrency[public] Method has been added.
Magento\Payment\Model\MethodInterface::getConfigData[public] Method has been added.
Magento\Payment\Model\MethodInterface::isAvailable[public] Method has been added.
Magento\Payment\Model\MethodInterface::isActive[public] Method has been added.
Magento\Cms\Api\Data\PageInterface::getMetaTitle[public] Method has been added.
Magento\Cms\Api\Data\PageInterface::setMetaTitle[public] Method has been added.
Magento\Catalog\Api\CategoryLinkManagementInterface::assignProductToCategories[public] Method has been added.
Magento\Catalog\Api\ProductCustomOptionRepositoryInterface::getProductOptions[public] Method has been added.
Magento\Catalog\Api\ProductCustomOptionRepositoryInterface::duplicate[public] Method has been added.
Magento\Catalog\Api\ProductLinkRepositoryInterface::getList[public] Method has been added.
Magento\Framework\AppInterface::VERSIONConstant has been removed.
Magento\Framework\View\Element\UiComponent\ContextInterface::addHtmlBlocks[public] Method has been added.
Magento\Framework\View\Element\UiComponent\ContextInterface::getUiComponentFactory[public] Method has been added.
Magento\Framework\View\Element\UiComponent\DataProvider\FilterApplierInterface::apply[public] Method parameter changed.
Magento\Framework\View\Element\UiComponent\Control\ActionPoolInterface::addHtmlBlock[public] Method has been added.
Magento\Framework\Stdlib\DateTime\TimezoneInterface::convertConfigTimeToUtc[public] Method has been added.
Magento\Framework\Setup\SetupInterface::getTablePlaceholder[public] Method has been added.
Magento\Framework\DB\Adapter\AdapterInterface::getAutoIncrementField[public] Method has been added.
Magento\Framework\App\ScopeInterface::getScopeType[public] Method has been added.
Magento\Framework\App\ScopeInterface::getScopeTypeName[public] Method has been added.
Magento\Framework\App\ScopeInterface::getName[public] Method has been added.
Magento\Paypal\Model\Payflow\Service\Response\ValidatorInterface::validate[public] Method parameter changed.
Magento\Cms\Api\Data\PageInterface::getMetaTitle[public] Method has been added.
Magento\Cms\Api\Data\PageInterface::setMetaTitle[public] Method has been added.
Magento\Catalog\Api\CategoryLinkManagementInterface::assignProductToCategories[public] Method has been added.
Magento\Catalog\Api\ProductCustomOptionRepositoryInterface::getProductOptions[public] Method has been added.
Magento\Catalog\Api\ProductCustomOptionRepositoryInterface::duplicate[public] Method has been added.
Magento\Catalog\Api\ProductLinkRepositoryInterface::getList[public] Method has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_PAYMENTConstant has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_ORDERConstant has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_AUTHConstant has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_CAPTUREConstant has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_VOIDConstant has been added.
Magento\Sales\Api\Data\TransactionInterface::TYPE_REFUNDConstant has been added.
Magento\Quote\Api\Data\CartInterface::KEY_ENTITY_IDConstant has been added.
Magento\Cms\Api\Data\PageInterface::META_TITLEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_TIER_PRICE_FIELD_PRICEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_HAS_WEIGHTConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SPECIAL_PRICEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_PRICEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_TIER_PRICE_FIELD_PRICE_QTYConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SHORT_DESCRIPTIONConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SEO_FIELD_META_TITLEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_STATUSConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_NAMEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SKUConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SEO_FIELD_META_KEYWORDConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_DESCRIPTIONConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_COSTConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SEO_FIELD_URL_KEYConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_TIER_PRICEConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_SEO_FIELD_META_DESCRIPTIONConstant has been added.
Magento\Catalog\Api\Data\ProductAttributeInterface::CODE_WEIGHTConstant has been added.
Magento\Framework\Console\CommandListInterfaceInterface was added.
Magento\Framework\Config\DesignResolverInterfaceInterface was added.
Magento\Vault\Model\VaultPaymentInterfaceInterface was added.
Magento\Vault\Model\Ui\TokenUiComponentInterfaceInterface was added.
Magento\Vault\Model\Ui\TokenUiComponentProviderInterfaceInterface was added.
Magento\Vault\Block\CardRendererInterfaceInterface was added.
Magento\Vault\Block\TokenRendererInterfaceInterface was added.
Magento\Vault\Api\PaymentTokenManagementInterfaceInterface was added.
Magento\Vault\Api\PaymentTokenRepositoryInterfaceInterface was added.
Magento\Vault\Api\Data\PaymentTokenInterfaceInterface was added.
Magento\Vault\Api\Data\PaymentTokenSearchResultsInterfaceInterface was added.
Magento\Theme\Api\DesignConfigRepositoryInterfaceInterface was added.
Magento\Theme\Api\Data\DesignConfigDataInterfaceInterface was added.
Magento\Theme\Api\Data\DesignConfigInterfaceInterface was added.
Magento\Search\Api\SynonymAnalyzerInterfaceInterface was added.
Magento\Search\Api\SynonymGroupRepositoryInterfaceInterface was added.
Magento\Search\Api\Data\SynonymGroupInterfaceInterface was added.
Magento\Quote\Api\GuestShipmentEstimationInterfaceInterface was added.
Magento\Quote\Api\ShipmentEstimationInterfaceInterface was added.
Magento\Payment\Gateway\CommandInterfaceInterface was added.
Magento\Payment\Gateway\ConfigFactoryInterfaceInterface was added.
Magento\Payment\Gateway\ConfigInterfaceInterface was added.
Magento\Payment\Gateway\Validator\ResultInterfaceInterface was added.
Magento\Payment\Gateway\Validator\ValidatorInterfaceInterface was added.
Magento\Payment\Gateway\Validator\ValidatorPoolInterfaceInterface was added.
Magento\Payment\Gateway\Response\HandlerInterfaceInterface was added.
Magento\Payment\Gateway\Request\BuilderInterfaceInterface was added.
Magento\Payment\Gateway\Http\ClientInterfaceInterface was added.
Magento\Payment\Gateway\Http\ConverterInterfaceInterface was added.
Magento\Payment\Gateway\Http\TransferFactoryInterfaceInterface was added.
Magento\Payment\Gateway\Http\TransferInterfaceInterface was added.
Magento\Payment\Gateway\Data\AddressAdapterInterfaceInterface was added.
Magento\Payment\Gateway\Data\OrderAdapterInterfaceInterface was added.
Magento\Payment\Gateway\Data\PaymentDataObjectInterfaceInterface was added.
Magento\Payment\Gateway\Config\ValueHandlerInterfaceInterface was added.
Magento\Payment\Gateway\Config\ValueHandlerPoolInterfaceInterface was added.
Magento\Payment\Gateway\Command\CommandManagerInterfaceInterface was added.
Magento\Payment\Gateway\Command\CommandManagerPoolInterfaceInterface was added.
Magento\Payment\Gateway\Command\CommandPoolInterfaceInterface was added.
Magento\Payment\Gateway\Command\ResultInterfaceInterface was added.
Magento\Customer\Api\CustomerNameGenerationInterfaceInterface was added.
Magento\Checkout\Model\ConfigProviderInterfaceInterface was added.
Magento\CatalogRule\Api\CatalogRuleRepositoryInterfaceInterface was added.
Magento\CatalogRule\Api\Data\ConditionInterfaceInterface was added.
Magento\CatalogRule\Api\Data\RuleInterfaceInterface was added.
diff --git a/_includes/changes/ee_changes.html b/_includes/changes/ee_changes.html new file mode 100644 index 00000000000..68ab06f9973 --- /dev/null +++ b/_includes/changes/ee_changes.html @@ -0,0 +1,1052 @@ + +

Class

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TargetWhat Changed
Magento\Framework\MessageQueue\PublisherFactoryClass was removed.
Magento\Framework\MessageQueue\PublisherProxyClass was removed.
Magento\Framework\MessageQueue\Config\ConverterClass was removed.
Magento\Framework\MessageQueue\Config\ReaderClass was removed.
Magento\Framework\MessageQueue\Config\SchemaLocatorClass was removed.
Magento\VisualMerchandiser\Block\Adminhtml\Category\PluginClass was removed.
Magento\VisualMerchandiser\Block\Adminhtml\Category\Tab\MerchandiserClass was removed.
Magento\VisualMerchandiser\Block\Adminhtml\Category\Tab\Merchandiser\GridClass was removed.
Magento\VisualMerchandiser\Block\Adminhtml\Category\Tab\Merchandiser\TileClass was removed.
Magento\VersionsCms\Setup\InstallDataClass was removed.
Magento\VersionsCms\Observer\Backend\AdminUserDeleteAfterObserverClass was removed.
Magento\VersionsCms\Observer\Backend\PrepareFormObserverClass was removed.
Magento\VersionsCms\Observer\Backend\RemoveVersionCallbackClass was removed.
Magento\VersionsCms\Model\ConfigClass was removed.
Magento\VersionsCms\Model\IncrementClass was removed.
Magento\VersionsCms\Model\Source\VersioningClass was removed.
Magento\VersionsCms\Model\ResourceModel\Page\RevisionClass was removed.
Magento\VersionsCms\Model\ResourceModel\Page\VersionClass was removed.
Magento\VersionsCms\Model\ResourceModel\Page\Version\CollectionClass was removed.
Magento\VersionsCms\Model\ResourceModel\Page\Revision\CollectionClass was removed.
Magento\VersionsCms\Model\ResourceModel\Page\Collection\AbstractCollectionClass was removed.
Magento\VersionsCms\Model\Plugin\CmsPageClass was removed.
Magento\VersionsCms\Model\Page\RevisionClass was removed.
Magento\VersionsCms\Model\Page\RevisionManagementClass was removed.
Magento\VersionsCms\Model\Page\RevisionProviderClass was removed.
Magento\VersionsCms\Model\Page\RevisionRepositoryClass was removed.
Magento\VersionsCms\Model\Page\VersionClass was removed.
Magento\VersionsCms\Model\Page\VersionRepositoryClass was removed.
Magento\VersionsCms\Controller\Page\Revision\DropClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\MassDeleteVersionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\VersionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\DeleteClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\EditClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\MassDeleteRevisionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\MassDeleteVersionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\NewActionClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\RevisionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\SaveClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\VersionProviderClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Version\VersionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\DeleteClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\EditClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\MassDeleteVersionsClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\NewActionClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\PreviewClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\PublishClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\SaveClass was removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Revision\VersionsClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\PageClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\EditClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Version\EditClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Version\Edit\FormClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Version\Edit\RevisionsClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\EditClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\FormClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\InfoClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\TabsClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\Tab\ContentClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\Tab\DesignClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Revision\Edit\Tab\MetaClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Preview\ButtonsClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Preview\FormClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Preview\RevisionClass was removed.
Magento\VersionsCms\Block\Adminhtml\Cms\Page\Edit\Tab\VersionsClass was removed.
Magento\VersionsCms\App\PreviewClass was removed.
Magento\VersionsCms\App\FrontController\AdminSessionPluginClass was removed.
Magento\VersionsCms\App\Action\Plugin\DesignClass was removed.
Magento\Solr\Model\ResourceModel\IndexClass was removed.
Magento\Solr\Model\Indexer\Fulltext\Plugin\CustomerGroupClass was removed.
Magento\Solr\Model\Client\SolariumFactoryClass was removed.
Magento\Solr\Controller\Adminhtml\Search\System\Config\TestConnection\PingClass was removed.
Magento\Reward\Observer\PrepareSalesruleFormClass was removed.
Magento\PromotionPermissions\Block\Adminhtml\Promo\Quote\Edit\PluginClass was removed.
Magento\PromotionPermissions\Block\Adminhtml\Promo\Catalog\Edit\PluginClass was removed.
Magento\PricePermissions\Observer\AdminhtmlCatalogProductEditPrepareFormObserverClass was removed.
Magento\PersistentHistory\Observer\SkipWebsiteRestrictionObserverClass was removed.
Magento\CatalogPermissions\Model\Indexer\Plugin\IndexerStateClass was removed.
Magento\CatalogPermissions\Model\Adminhtml\AddPermissionTabOnCategoryEditPageObserverClass was removed.
Magento\CatalogEvent\Block\Adminhtml\Catalog\Category\Edit\ButtonsClass was removed.
Magento\Banner\Block\Adminhtml\Permission\MonitorClass was removed.
Magento\Amqp\Setup\InstallDataClass was removed.
Magento\Framework\MessageQueue\BatchConsumer::configure[public] Method has been removed.
Magento\Framework\MessageQueue\BatchConsumer::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\Consumer::configure[public] Method has been removed.
Magento\Framework\MessageQueue\Consumer::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\ConsumerConfiguration::getCallback[public] Method has been removed.
Magento\Framework\MessageQueue\ConsumerConfiguration::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\ConsumerConfiguration::CALLBACKConstant has been removed.
Magento\Framework\MessageQueue\ConsumerFactory::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\MessageEncoder::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\MessageEncoder::getTopicSchema[protected] Method parameter changed.
Magento\Framework\MessageQueue\MessageEncoder::convertMessage[protected] Method parameter changed.
Magento\Framework\MessageQueue\Publisher::__construct[public] Method parameter changed.
Magento\Framework\MessageQueue\Config\Data::getExchangeByTopic[public] Method has been removed.
Magento\Framework\MessageQueue\Config\Data::getQueuesByTopic[public] Method has been removed.
Magento\Framework\MessageQueue\Config\Data::getConnectionByTopic[public] Method has been removed.
Magento\Framework\MessageQueue\Config\Data::getConnectionByConsumer[public] Method has been removed.
Magento\Framework\MessageQueue\Config\Data::getMessageSchemaType[public] Method has been removed.
Magento\Framework\MessageQueue\Config\Data::__construct[public] Method parameter changed.
Magento\VisualMerchandiser\Controller\Adminhtml\Position::_isAllowed[protected] Method has been removed.
Magento\VisualMerchandiser\Controller\Adminhtml\Products\MassAssign::add[protected] Method has been removed.
Magento\VisualMerchandiser\Controller\Adminhtml\Products\MassAssign::remove[protected] Method has been removed.
Magento\VisualMerchandiser\Controller\Adminhtml\Products\MassAssign::__construct[public] Method parameter changed.
Magento\VisualMerchandiser\Controller\Adminhtml\Products\MassAssign::$cache[protected] Property has been removed.
Magento\VisualMerchandiser\Controller\Adminhtml\Products\MassAssign::$cacheKey[protected] Property has been removed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveAfterObserver::createNewInitialVersionRevision[protected] Method has been removed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveAfterObserver::__construct[public] Method parameter changed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveAfterObserver::$pageVersionFactory[protected] Property has been removed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveAfterObserver::$backendAuthSession[protected] Property has been removed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveBeforeObserver::__construct[public] Method parameter changed.
Magento\VersionsCms\Observer\Backend\CmsPageSaveBeforeObserver::$config[protected] Property has been removed.
Magento\VersionsCms\Model\Logging::postDispatchCmsRevisionPreview[public] Method has been removed.
Magento\VersionsCms\Model\Logging::postDispatchCmsRevisionPublish[public] Method has been removed.
Magento\VersionsCms\Model\ResourceModel\Hierarchy\Node::__construct[public] Method parameter changed.
Magento\VersionsCms\Model\ResourceModel\Hierarchy\Node\Collection::__construct[public] Method parameter changed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Hierarchy::_isAllowed[protected] Method has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::__construct[public] Method has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::execute[public] Method has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::$pageLoader[protected] Property has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::$_handles[protected] Property has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::$_cmsConfig[protected] Property has been removed.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\Edit::$resultPageFactory[protected] Property has been removed.
Magento\TargetRule\Controller\Adminhtml\Targetrule::_isAllowed[protected] Method has been removed.
Magento\Support\Model\Report::__construct[public] Method parameter changed.
Magento\Support\Model\ResourceModel\Report\DataCount\ProductAttributes::$catalogConnection[protected] Property has been removed.
Magento\Support\Model\Report\DataProvider::__construct[public] Method parameter changed.
Magento\Support\Model\Report\Group\General\DataCountSection::$storeConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$taxConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$customerConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$customerSegmentConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$orderConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$catalogConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$salesRuleConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$targetRuleConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$cmsConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$bannerConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\General\DataCountSection::$urlRewriteConnection[protected] Property has been removed.
Magento\Support\Model\Report\Group\Data\AbstractDataGroup::__construct[public] Method parameter changed.
Magento\Support\Model\Report\Group\Data\AbstractDuplicateSection::getInfoDuplicateAttributeById[protected] Method parameter changed.
Magento\Support\Controller\Adminhtml\Backup::_isAllowed[protected] Method has been removed.
Magento\Support\Controller\Adminhtml\Report::_isAllowed[protected] Method has been removed.
Magento\Support\Controller\Adminhtml\Backup\Download::__construct[public] Method parameter changed.
Magento\Support\Controller\Adminhtml\Backup\Download::$file[protected] Property has been removed.
Magento\Solr\SearchAdapter\ConnectionManager::__construct[public] Method parameter changed.
Magento\Solr\Model\Indexer\IndexerHandler::__construct[public] Method parameter changed.
Magento\Solr\Model\Adapter\AbstractAdapter::__construct[public] Method parameter changed.
Magento\Solr\Model\Adapter\DocumentDataMapper::$dateFormats[protected] Property has been removed.
Magento\Solr\Model\Adapter\FieldMapper::__construct[public] Method parameter changed.
Magento\Solr\Helper\Data::isThirdPartyEngineAvailable[public] Method has been removed.
Magento\Solr\Helper\Data::$_isThirdPartyEngineAvailable[protected] Property has been removed.
Magento\Solr\Block\Adminhtml\System\Config\TestConnection::_prepareLayout[protected] Method has been removed.
Magento\Solr\Block\Adminhtml\System\Config\TestConnection::render[public] Method has been removed.
Magento\Solr\Block\Adminhtml\System\Config\TestConnection::_getElementHtml[protected] Method has been removed.
Magento\ScheduledImportExport\Controller\Adminhtml\Scheduled\Operation::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\Add::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\Creditmemos::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\Invoices::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\MassAdd::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\MassRemove::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\Remove::_isAllowed[protected] Method has been removed.
Magento\SalesArchive\Controller\Adminhtml\Archive\Shipments::_isAllowed[protected] Method has been removed.
Magento\Rma\Controller\Adminhtml\Rma::_isAllowed[protected] Method has been removed.
Magento\Rma\Controller\Adminhtml\Rma\Item\Attribute::_isAllowed[protected] Method has been removed.
Magento\Reward\Controller\Adminhtml\Reward\Rate::_isAllowed[protected] Method has been removed.
Magento\Reward\Controller\Adminhtml\Customer\Reward::_isAllowed[protected] Method has been removed.
Magento\ResourceConnections\DB\ConnectionAdapter\Mysql::__construct[public] Method parameter changed.
Magento\ResourceConnections\DB\ConnectionAdapter\Mysql\Builder::build[public] Method parameter changed.
Magento\ResourceConnections\DB\Adapter\Pdo\MysqlProxy::__construct[public] Method parameter changed.
Magento\Reminder\Controller\Adminhtml\Reminder::__construct[public] Method parameter changed.
Magento\PricePermissions\Observer\AdminhtmlBlockHtmlBeforeObserver::_hidePriceElements[protected] Method has been removed.
Magento\PersistentHistory\Model\CustomerEmulator::__construct[public] Method parameter changed.
Magento\PersistentHistory\Model\Observer::emulateCompareProductsBlock[public] Method has been removed.
Magento\PersistentHistory\Model\Observer::initReorderSidebar[public] Method parameter changed.
Magento\MysqlMq\Setup\InstallData::__construct[public] Method parameter changed.
Magento\MysqlMq\Model\Driver\Exchange::__construct[public] Method parameter changed.
Magento\MysqlMq\Model\Driver\Queue::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Add::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Copyitem::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Copyitems::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Deletewishlist::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Editwishlist::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Moveitem::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Index\Moveitems::__construct[public] Method parameter changed.
Magento\MultipleWishlist\Controller\Adminhtml\Report\Customer\Wishlist::_isAllowed[protected] Method has been removed.
Magento\MessageQueue\Console\ConsumerListCommand::__construct[public] Method parameter changed.
Magento\MessageQueue\Console\StartConsumerCommand::__construct[public] Method parameter changed.
Magento\Logging\Controller\Adminhtml\Logging\Archive::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\ArchiveGrid::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\Details::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\Download::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\ExportCsv::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\ExportXml::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\Grid::_isAllowed[protected] Method has been removed.
Magento\Logging\Controller\Adminhtml\Logging\Index::_isAllowed[protected] Method has been removed.
Magento\GiftWrapping\Setup\UpgradeData::__construct[public] Method parameter changed.
Magento\GiftWrapping\Controller\Adminhtml\Giftwrapping::_isAllowed[protected] Method has been removed.
Magento\GiftRegistry\Helper\Data::__construct[public] Method parameter changed.
Magento\GiftRegistry\Helper\Data::$productRepository[protected] Property has been removed.
Magento\GiftRegistry\Controller\Adminhtml\Giftregistry::_isAllowed[protected] Method has been removed.
Magento\GiftRegistry\Controller\Adminhtml\Giftregistry\Customer::_isAllowed[protected] Method has been removed.
Magento\GiftCardAccount\Controller\Adminhtml\Giftcardaccount::_isAllowed[protected] Method has been removed.
Magento\GiftCard\Pricing\Price\ConfiguredPrice::getAmount[public] Method has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::__construct[public] Method has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::afterLoad[public] Method has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::afterSave[public] Method has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::afterDelete[public] Method has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::$_storeManager[protected] Property has been removed.
Magento\GiftCard\Model\Attribute\Backend\Giftcard\Amount::$_directoryHelper[protected] Property has been removed.
Magento\Doc\Document\Content::$writeFactory[protected] Property has been removed.
Magento\CustomerSegment\Model\Segment\Condition\Segment::__construct[public] Method parameter changed.
Magento\CustomerCustomAttributes\Controller\Adminhtml\Customer\Attribute::_isAllowed[protected] Method has been removed.
Magento\CustomerCustomAttributes\Controller\Adminhtml\Customer\Address\Attribute::_isAllowed[protected] Method has been removed.
Magento\CustomerBalance\Controller\Adminhtml\Customerbalance::_isAllowed[protected] Method has been removed.
Magento\CatalogPermissions\Observer\CheckQuotePermissionsObserver::_initPermissionsOnQuoteItems[protected] Method parameter changed.
Magento\CatalogPermissions\Model\Indexer\AbstractAction::__construct[public] Method parameter changed.
Magento\CatalogPermissions\Model\Indexer\Category\Action\Rows::__construct[public] Method parameter changed.
Magento\CatalogPermissions\Block\Adminhtml\Catalog\Category\Tab\Permissions::canShowTab[public] Method has been removed.
Magento\CatalogPermissions\Block\Adminhtml\Catalog\Category\Tab\Permissions::isHidden[public] Method has been removed.
Magento\CatalogEvent\Model\ResourceModel\Event::__construct[public] Method parameter changed.
Magento\CatalogEvent\Model\ResourceModel\Event\Collection::__construct[public] Method parameter changed.
Magento\CatalogEvent\Controller\Adminhtml\Catalog\Event::_isAllowed[protected] Method has been removed.
Magento\CatalogEvent\Block\Event\AbstractEvent::__construct[public] Method parameter changed.
Magento\CatalogEvent\Block\Event\AbstractEvent::$_localeResolver[protected] Property has been removed.
Magento\CatalogEvent\Block\Event\Lister::__construct[public] Method parameter changed.
Magento\CatalogEvent\Block\Catalog\Product\Event::__construct[public] Method parameter changed.
Magento\CatalogEvent\Block\Catalog\Category\Event::__construct[public] Method parameter changed.
Magento\Banner\Controller\Adminhtml\Banner::_isAllowed[protected] Method has been removed.
Magento\Amqp\Model\Exchange::__construct[public] Method parameter changed.
Magento\Amqp\Model\Queue::__construct[public] Method parameter changed.
Magento\Amqp\Model\Topology::__construct[public] Method parameter changed.
Magento\AdminGws\Model\Blocks::widgetCatalogEventCategoryEditButtons[public] Method has been removed.
+ +

Interface

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TargetWhat Changed
Magento\GiftCard\Api\Data\GiftcardAmountInterface::getAttributeId[public] Method has been added.
Magento\GiftCard\Api\Data\GiftcardAmountInterface::setAttributeId[public] Method has been added.
Magento\VersionsCms\Controller\Adminhtml\Cms\Page\RevisionInterfaceInterface was removed.
Magento\VersionsCms\Api\PageRevisionManagementInterfaceInterface was removed.
Magento\VersionsCms\Api\PageRevisionRepositoryInterfaceInterface was removed.
Magento\VersionsCms\Api\PageVersionRepositoryInterfaceInterface was removed.
Magento\VersionsCms\Api\Data\PageRevisionInterfaceInterface was removed.
Magento\VersionsCms\Api\Data\PageRevisionSearchResultsInterfaceInterface was removed.
Magento\VersionsCms\Api\Data\PageVersionInterfaceInterface was removed.
Magento\VersionsCms\Api\Data\PageVersionSearchResultsInterfaceInterface was removed.
Magento\Solr\Model\Client\FactoryInterfaceInterface was removed.
Magento\Solr\Helper\ClientOptionsInterfaceInterface was removed.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getCallback[public] Method has been removed.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getType[public] Method has been added.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getHandlers[public] Method has been added.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getTopicNames[public] Method has been added.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getMessageSchemaType[public] Method has been added.
Magento\Framework\MessageQueue\ConsumerConfigurationInterface::getQueue[public] Method has been added.
Magento\Framework\MessageQueue\ConsumerInterface::configure[public] Method has been removed.
Magento\Framework\MessageQueue\QueueInterface::push[public] Method has been added.
Magento\GiftCardAccount\Api\GuestGiftCardAccountManagementInterface::deleteByQuoteId[public] Method has been added.
Magento\GiftCard\Api\Data\GiftcardAmountInterface::getAttributeId[public] Method has been added.
Magento\GiftCard\Api\Data\GiftcardAmountInterface::setAttributeId[public] Method has been added.
Magento\Staging\Api\UpdateRepositoryInterfaceInterface was added.
Magento\Staging\Api\VersionCookieManagerInterfaceInterface was added.
Magento\Staging\Api\Data\UpdateInterfaceInterface was added.
Magento\Staging\Api\Data\UpdateSearchResultInterfaceInterface was added.
diff --git a/_includes/cloud/cli-get-started.md b/_includes/cloud/cli-get-started.md new file mode 100644 index 00000000000..4baa44efd41 --- /dev/null +++ b/_includes/cloud/cli-get-started.md @@ -0,0 +1,26 @@ +
+ +1. Log in to the server on which your SSH keys are located. +2. Log in to your project: + + magento-cloud login +3. List your projects: + + magento-cloud project:list +4. If necessary, clone a project. + + magento-cloud project:get +4. Change to a project directory. + + For example if your project is named Magento 2, `cd magento-2` +4. List environments in the project: + + magento-cloud environment:list +6. Check out an environment: + + magento-cloud environment:checkout + + To create a new environment, use `magento-cloud environment:branch ` +7. Create a [snapshot]({{ site.gdeurl }}cloud/admin/admin-snap.html) of the environment. + + magento-cloud snapshot:create -e \ No newline at end of file diff --git a/_includes/config/locate-session.md b/_includes/config/locate-session.md new file mode 100644 index 00000000000..50f7cd3a466 --- /dev/null +++ b/_includes/config/locate-session.md @@ -0,0 +1,26 @@ +
+ +## Locate your session storage {#session-where} +This topic discusses how to locate where your session files are stored. The Magento application uses the following logic to store session files: + +* If you configured memcached, sessions are stored in RAM; for more information, see [Use memcached for session storage]({{ site.gdeurl }}config-guide/memcache/memcache.html). +* If you're using the default file-based session storage, we store sessions in the following locations in the order shown: + + 1. Directory defined in [`env.php`](#session-where-env) + 2. Directory defined in [`php.ini`](#session-where-phpini) + 3. `/var/session` directory + +### `env.php` example {#session-where-env} +A sample snippet from `/app/etc/env.php` follows: + + 'session' => + array ( + 'save' => 'files', + 'save_path' => '/var/www/session', + ), + +The preceding example stores session files in `/var/www/session` + +### `php.ini` example {#session-where-phpini} +As a user with `root` privileges, open your `php.ini` file and search for the value of `session.save_path`. This identifies where sessions are stored. + diff --git a/_includes/config/setup-cron.md b/_includes/config/setup-cron.md index b4e66a79c82..db3e455b9c3 100644 --- a/_includes/config/setup-cron.md +++ b/_includes/config/setup-cron.md @@ -6,7 +6,7 @@ Magento uses cron for two sets of tasks, and for each, cron can be run with a di * The general cron job that reindexes indexers, generates e-mails, generates the sitemap, and so on, typically runs as the PHP command-line user's `php.ini` * Two other cron jobs are used by the Component Manager and System Upgrade utilities. Those commands must use the web server's `php.ini`. -If you're not very experienced with running cron, you can run all commands with the web server's configuration; however, we leave the decision up to you. +If you're not experienced with running cron, you can run all commands with the web server's configuration; however, we leave the decision up to you. #### Find the web server configuration @@ -14,15 +14,14 @@ To find the web server configuration, run a -#### Find the PHP command-line configuration -To display the PHP command-line configuration, enter +#### Find the PHP binary and php.ini path +To display the path to your PHP binary, enter - php -i | grep php.ini + which php A sample result follows: - Configuration File (php.ini) Path => /etc/php5/cli - Loaded Configuration File => /etc/php5/cli/php.ini + /usr/bin/php #### Create the cron job @@ -36,21 +35,24 @@ For example, A text editor displays. (You might need to choose a text editor first.) - */1 * * * * php -c /bin/magento cron:run - */1 * * * * php -c /update/cron.php - */1 * * * * php -c /bin/magento setup:cron:run + * * * * * -c /bin/magento cron:run | grep -v "Ran jobs by schedule" >> /var/log/magento.cron.log + * * * * * -c /update/cron.php >> /var/log/update.cron.log + * * * * * -c /bin/magento setup:cron:run >> /var/log/setup.cron.log -where `` is the path to a `php.ini` file to use for the cron job. +where - -(To confirm which `.ini` file the web server uses, create a .) +* `` is the absolute file system path to your PHP binary +* `` is the path to a `php.ini` file to use for the cron job +* `| grep -v "Ran jobs by schedule"` filters this message from the log, making any errors easier to spot The first command (`magento cron:run`) reindexes indexers, send automated e-mails, generates the sitemap, and so on. Usually it's associated with the PHP command line `.ini` file. The other two commands are used by the Component Manager and System Upgrade. -For example, if you installed Magento in `/var/www/html/magento2` and all commands use the web server's `php.ini`, enter +For example, if the PHP binary is located in `/usr/bin`, you installed Magento in `/var/www/html/magento2`, and all commands use the web server's `/etc/php5/apache2/php.ini`, enter + +Example: - */1 * * * * php -c /etc/php5/cli/apache2 /var/www/html/magento2/bin/magento cron:run - */1 * * * * php -c /etc/php5/cli/apache2 /var/www/html/magento2/update/cron.php - */1 * * * * php -c /etc/php5/cli/apache2 /var/www/html/magento2/bin/magento setup:cron:run + * * * * * /usr/bin/php -c /etc/php5/apache2/php.ini /var/www/magento2/bin/magento cron:run | grep -v "Ran jobs by schedule" >> /var/www/magento2/var/log/magento.cron.log + * * * * * /usr/bin/php -c /etc/php5/apache2/php.ini /var/www/magento2/update/cron.php >> /var/www/magento2/var/log/update.cron.log + * * * * * /usr/bin/php -c /etc/php5/apache2/php.ini /var/www/magento2/bin/magento setup:cron:run >> /var/www/magento2/var/log/setup.cron.log -Save your changes to the crontab and exit the editor. \ No newline at end of file +Save your changes to the crontab and exit the editor. diff --git a/_includes/config/split-db.md b/_includes/config/split-db.md new file mode 100644 index 00000000000..df435d395a4 --- /dev/null +++ b/_includes/config/split-db.md @@ -0,0 +1,67 @@ +
+ +## Set up additional master databases {#config-ee-multidb-master-masters} +Create checkout and OMS master databases as follows: + +1. Log in to your database server as any user. +2. Enter the following command to get to a MySQL command prompt: + + mysql -u root -p + +3. Enter the MySQL `root` user's password when prompted. +4. Enter the following commands in the order shown to create database instances named `magento_checkout` and `magento_oms` with the same user names and passwords: + + create database magento_checkout; + GRANT ALL ON magento_checkout.* TO magento_checkout@localhost IDENTIFIED BY 'magento_checkout'; + + create database magento_oms; + GRANT ALL ON magento_oms.* TO magento_oms@localhost IDENTIFIED BY 'magento_oms'; + +5. Enter `exit` to quit the command prompt. + +6. Verify the databases, one at a time: + + Checkout database: + + mysql -u magento_checkout -p + exit + + Order management database: + + mysql -u magento_oms -p + exit + + If the MySQL monitor displays, you created the database properly. If an error displays, repeat the preceding commands. + +## Configure Magento EE to use the master databases {#config-ee-multidb-master-cli} +After setting up a total of three master databases, use the Magento command line to configure Magento to use them. (The command sets up database connections and distributes tables among the master databases.) + +### First steps + +{% include install/first-steps-cli.html %} + +

Configure the checkout database

+Command syntax: + + magento setup:db-schema:split-quote --host="" --dbname="" --username="" --password="" + +For example, + + magento setup:db-schema:split-quote --host="localhost" --dbname="magento_checkout" --username="magento_checkout" --password="magento_checkout" + +The following message displays to confirm a successful setup: + + Migration has been finished successfully! + +

Configure the OMS database

+Command syntax: + + magento setup:db-schema:split-sales --host="" --dbname="" --username="" --password="" + +For example, + + magento setup:db-schema:split-sales --host="localhost" --dbname="magento_oms" --username="magento_oms" --password="magento_oms" + +The following message displays to confirm a successful setup: + + Migration has been finished successfully! \ No newline at end of file diff --git a/_includes/footer.html b/_includes/footer.html index 0d959852709..bb070c78fb7 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -8,95 +8,91 @@