diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..40f57587
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,22 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.{yml,yaml,json}]
+indent_size = 2
+
+[{composer, auth}.json]
+indent_size = 4
+
+[db_schema_whitelist.json]
+indent_size = 4
+trim_trailing_whitespace = false
diff --git a/.env b/.env
index 2c73905a..10891415 100644
--- a/.env
+++ b/.env
@@ -14,14 +14,14 @@ WARDEN_REDIS=1
ELASTICSEARCH_VERSION=7.16
DB_DISTRIBUTION=mariadb
-DB_DISTRIBUTION_VERSION=10.3
+DB_DISTRIBUTION_VERSION=10.6
NODE_VERSION=12
COMPOSER_VERSION=2.2
-PHP_VERSION=8.1
+PHP_VERSION=8.2
PHP_XDEBUG_3=1
-RABBITMQ_VERSION=3.8
-REDIS_VERSION=5.0
-VARNISH_VERSION=6.0
+RABBITMQ_VERSION=3.11
+REDIS_VERSION=7.0
+VARNISH_VERSION=7.1
WARDEN_SYNC_IGNORE=
diff --git a/.gitignore b/.gitignore
index f3784ee1..c4ecc9b8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -72,3 +72,8 @@ atlassian*
/generated/*
!/generated/.htaccess
.DS_Store
+
+/bin/*
+/dev/*
+/lib/*
+/setup/*
diff --git a/.htaccess b/.htaccess
new file mode 100644
index 00000000..ae929f8b
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,7 @@
+RewriteEngine on
+RewriteCond %{REQUEST_URI} !^/pub/
+RewriteCond %{REQUEST_URI} !^/setup/
+RewriteCond %{REQUEST_URI} !^/update/
+RewriteCond %{REQUEST_URI} !^/dev/
+RewriteRule .* /pub/$0 [L]
+DirectoryIndex index.php
diff --git a/.htaccess.sample b/.htaccess.sample
new file mode 100644
index 00000000..776f9046
--- /dev/null
+++ b/.htaccess.sample
@@ -0,0 +1,393 @@
+############################################
+## overrides deployment configuration mode value
+## use command bin/magento deploy:mode:set to switch modes
+
+# SetEnv MAGE_MODE developer
+
+############################################
+## uncomment these lines for CGI mode
+## make sure to specify the correct cgi php binary file name
+## it might be /cgi-bin/php-cgi
+
+# Action php5-cgi /cgi-bin/php5-cgi
+# AddHandler php5-cgi .php
+
+############################################
+## GoDaddy specific options
+
+# Options -MultiViews
+
+## you might also need to add this line to php.ini
+## cgi.fix_pathinfo = 1
+## if it still doesn't work, rename php.ini to php5.ini
+
+############################################
+## this line is specific for 1and1 hosting
+
+ #AddType x-mapp-php5 .php
+ #AddHandler x-mapp-php5 .php
+
+############################################
+## enable usage of methods arguments in backtrace
+
+ SetEnv MAGE_DEBUG_SHOW_ARGS 1
+
+############################################
+## default index file
+
+ DirectoryIndex index.php
+
+############################################
+## adjust memory limit
+
+ php_value memory_limit 756M
+ php_value max_execution_time 18000
+
+############################################
+## disable automatic session start
+## before autoload was initialized
+
+ php_flag session.auto_start off
+
+############################################
+## enable resulting html compression
+
+ #php_flag zlib.output_compression on
+
+###########################################
+## disable user agent verification to not break multiple image upload
+
+ php_flag suhosin.session.cryptua off
+
+
+###########################################
+## disable POST processing to not break multiple image upload
+
+ SecFilterEngine Off
+ SecFilterScanPOST Off
+
+
+
+
+############################################
+## enable apache served files compression
+## http://developer.yahoo.com/performance/rules.html#gzip
+
+ # Insert filter on all content
+ ###SetOutputFilter DEFLATE
+ # Insert filter on selected content types only
+ #AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/x-javascript application/json image/svg+xml
+
+ # Netscape 4.x has some problems...
+ #BrowserMatch ^Mozilla/4 gzip-only-text/html
+
+ # Netscape 4.06-4.08 have some more problems
+ #BrowserMatch ^Mozilla/4\.0[678] no-gzip
+
+ # MSIE masquerades as Netscape, but it is fine
+ #BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
+
+ # Don't compress images
+ #SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
+
+ # Make sure proxies don't deliver the wrong content
+ #Header append Vary User-Agent env=!dont-vary
+
+
+
+
+
+############################################
+## make HTTPS env vars available for CGI mode
+
+ SSLOptions StdEnvVars
+
+
+
+############################################
+## workaround for Apache 2.4.6 CentOS build when working via ProxyPassMatch with HHVM (or any other)
+## Please, set it on virtual host configuration level
+
+## SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
+############################################
+
+
+
+############################################
+## enable rewrites
+
+ # The following line has better security but add some performance overhead - see https://httpd.apache.org/docs/2.4/en/misc/perf-tuning.html
+ Options -FollowSymLinks +SymLinksIfOwnerMatch
+ RewriteEngine on
+
+############################################
+## you can put here your magento root folder
+## path relative to web root
+
+ #RewriteBase /magento/
+
+############################################
+## workaround for HTTP authorization
+## in CGI environment
+
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+
+############################################
+## TRACE and TRACK HTTP methods disabled to prevent XSS attacks
+
+ RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
+ RewriteRule .* - [L,R=405]
+
+############################################
+## redirect for mobile user agents
+
+ #RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$
+ #RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
+ #RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302]
+
+############################################
+## never rewrite for existing files, directories and links
+
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-l
+
+############################################
+## rewrite everything else to index.php
+
+ RewriteRule .* index.php [L]
+
+
+
+
+############################################
+## Prevent character encoding issues from server overrides
+## If you still have problems, use the second line instead
+
+ AddDefaultCharset Off
+ #AddDefaultCharset UTF-8
+ AddType 'text/html; charset=UTF-8' html
+
+
+
+############################################
+## Add default Expires header
+## http://developer.yahoo.com/performance/rules.html#expires
+
+ ExpiresDefault "access plus 1 year"
+ ExpiresByType text/html A0
+ ExpiresByType text/plain A0
+
+
+
+###########################################
+## Deny access to root files to hide sensitive application information
+ RedirectMatch 403 /\.git
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+
+ order allow,deny
+ deny from all
+
+ = 2.4>
+ Require all denied
+
+
+
+# For 404s and 403s that aren't handled by the application, show plain 404 response
+ErrorDocument 404 /pub/errors/404.php
+ErrorDocument 403 /pub/errors/404.php
+
+################################
+## If running in cluster environment, uncomment this
+## http://developer.yahoo.com/performance/rules.html#etags
+
+ #FileETag none
+
+# ######################################################################
+# # INTERNET EXPLORER #
+# ######################################################################
+
+# ----------------------------------------------------------------------
+# | Document modes |
+# ----------------------------------------------------------------------
+
+# Force Internet Explorer 8/9/10 to render pages in the highest mode
+# available in the various cases when it may not.
+#
+# https://hsivonen.fi/doctype/#ie8
+#
+# (!) Starting with Internet Explorer 11, document modes are deprecated.
+# If your business still relies on older web apps and services that were
+# designed for older versions of Internet Explorer, you might want to
+# consider enabling `Enterprise Mode` throughout your company.
+#
+# https://msdn.microsoft.com/en-us/library/ie/bg182625.aspx#docmode
+# http://blogs.msdn.com/b/ie/archive/2014/04/02/stay-up-to-date-with-enterprise-mode-for-internet-explorer-11.aspx
+
+
+
+ Header set X-UA-Compatible "IE=edge"
+
+ # `mod_headers` cannot match based on the content-type, however,
+ # the `X-UA-Compatible` response header should be send only for
+ # HTML documents and not for the other resources.
+
+
+ Header unset X-UA-Compatible
+
+
+
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
new file mode 100644
index 00000000..30fcfc86
--- /dev/null
+++ b/.php-cs-fixer.dist.php
@@ -0,0 +1,47 @@
+name('*.phtml')
+ ->exclude('dev/tests/integration/tmp')
+ ->exclude('dev/tests/integration/var')
+ ->exclude('lib/internal/Cm')
+ ->exclude('lib/internal/Credis')
+ ->exclude('lib/internal/Less')
+ ->exclude('lib/internal/LinLibertineFont')
+ ->exclude('pub/media')
+ ->exclude('pub/static')
+ ->exclude('setup/vendor')
+ ->exclude('var');
+
+$config = new PhpCsFixer\Config();
+$config->setFinder($finder)
+ ->setRules([
+ '@PSR2' => true,
+ 'array_syntax' => ['syntax' => 'short'],
+ 'concat_space' => ['spacing' => 'one'],
+ 'include' => true,
+ 'new_with_braces' => true,
+ 'no_empty_statement' => true,
+ 'no_extra_blank_lines' => true,
+ 'no_leading_import_slash' => true,
+ 'no_leading_namespace_whitespace' => true,
+ 'no_multiline_whitespace_around_double_arrow' => true,
+ 'multiline_whitespace_before_semicolons' => true,
+ 'no_singleline_whitespace_before_semicolons' => true,
+ 'no_trailing_comma_in_singleline_array' => true,
+ 'no_unused_imports' => true,
+ 'no_whitespace_in_blank_line' => true,
+ 'object_operator_without_whitespace' => true,
+ 'ordered_imports' => true,
+ 'standardize_not_equals' => true,
+ 'ternary_operator_spaces' => true,
+ ]);
+return $config;
diff --git a/.user.ini b/.user.ini
new file mode 100644
index 00000000..bfc3a86d
--- /dev/null
+++ b/.user.ini
@@ -0,0 +1,4 @@
+memory_limit = 756M
+max_execution_time = 18000
+session.auto_start = off
+suhosin.session.cryptua = off
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 00000000..919f3f02
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,7977 @@
+2.4.0
+=============
+* GitHub issues:
+ * [#24229](https://github.com/magento/magento2/issues/24229) -- Unable to enable maintenance mode when env.php is read only (fixed in [magento/magento2#25790](https://github.com/magento/magento2/pull/25790))
+ * [#22416](https://github.com/magento/magento2/issues/22416) -- Coupling beetwen Magento_Checkout::js/view/shipping.js:validateShippingInformation() and layout definition or view. (fixed in [magento/magento2#25541](https://github.com/magento/magento2/pull/25541))
+ * [#25739](https://github.com/magento/magento2/issues/25739) -- grunt clean does not clean generated folder (fixed in [magento/magento2#25765](https://github.com/magento/magento2/pull/25765))
+ * [#25654](https://github.com/magento/magento2/issues/25654) -- Magento OpenGraph meta description / title content bleeding (fixed in [magento/magento2#25655](https://github.com/magento/magento2/pull/25655))
+ * [#25731](https://github.com/magento/magento2/issues/25731) -- queue_consumer.xml doesn't allow numbers in handler class (fixed in [magento/magento2#25952](https://github.com/magento/magento2/pull/25952))
+ * [#25935](https://github.com/magento/magento2/issues/25935) -- Email address mismatch with text in iPad(768) view (fixed in [magento/magento2#25942](https://github.com/magento/magento2/pull/25942))
+ * [#25931](https://github.com/magento/magento2/issues/25931) -- Refresh Statistics: Updated At = Null should be display as "Never" instead of "undefined". (fixed in [magento/magento2#25932](https://github.com/magento/magento2/pull/25932))
+ * [#25925](https://github.com/magento/magento2/issues/25925) -- Dupplicate Records when sorting column in Content->Themes Grid (fixed in [magento/magento2#25926](https://github.com/magento/magento2/pull/25926))
+ * [#25917](https://github.com/magento/magento2/issues/25917) -- Admin confirm password input doesn't inherit needed styles (fixed in [magento/magento2#25918](https://github.com/magento/magento2/pull/25918))
+ * [#25911](https://github.com/magento/magento2/issues/25911) -- Category - Notice on incorrect price filter GET param (fixed in [magento/magento2#25912](https://github.com/magento/magento2/pull/25912))
+ * [#25893](https://github.com/magento/magento2/issues/25893) -- A "500 (Internal Server Error)" appears in Developer Console if Delete the image that is added to Page Content (fixed in [magento/magento2#25924](https://github.com/magento/magento2/pull/25924))
+ * [#25896](https://github.com/magento/magento2/issues/25896) -- Cannot create folder using only letters (fixed in [magento/magento2#25904](https://github.com/magento/magento2/pull/25904))
+ * [#24713](https://github.com/magento/magento2/issues/24713) -- Symbol of the Belarusian currency BYR is outdated (fixed in [magento/magento2#25723](https://github.com/magento/magento2/pull/25723))
+ * [#19805](https://github.com/magento/magento2/issues/19805) -- Sales order Address Information edit form layout design improvement. (fixed in [magento/magento2#25699](https://github.com/magento/magento2/pull/25699))
+ * [#23481](https://github.com/magento/magento2/issues/23481) -- Billing/Shipping Address edit form design update from order backend (fixed in [magento/magento2#25699](https://github.com/magento/magento2/pull/25699))
+ * [#25972](https://github.com/magento/magento2/issues/25972) -- Not required spacing in submenu on hover desktop (fixed in [magento/magento2#25973](https://github.com/magento/magento2/pull/25973))
+ * [#25586](https://github.com/magento/magento2/issues/25586) -- Mixins are not applied for advanced bundled modules (fixed in [magento/magento2#25587](https://github.com/magento/magento2/pull/25587))
+ * [#20379](https://github.com/magento/magento2/issues/20379) -- calendar icon not aligned inside the textbox in Add Design Change page (fixed in [magento/magento2#26063](https://github.com/magento/magento2/pull/26063))
+ * [#18687](https://github.com/magento/magento2/issues/18687) -- Left Side Back End Menu Design fix (fixed in [magento/magento2#26034](https://github.com/magento/magento2/pull/26034))
+ * [#24025](https://github.com/magento/magento2/issues/24025) -- Slow Performance of ProductMetadata::getVersion (fixed in [magento/magento2#26001](https://github.com/magento/magento2/pull/26001))
+ * [#100](https://github.com/magento/partners-magento2ee/issues/100) -- Users can see Negotiable Quotes from other Company (fixed in [magento/magento2#25940](https://github.com/magento/magento2/pull/25940) and [magento/partners-magento2ee#134](https://github.com/magento/partners-magento2ee/pull/134))
+ * [#24357](https://github.com/magento/magento2/issues/24357) -- Eav sort order by attribute option_id (fixed in [magento/magento2#24360](https://github.com/magento/magento2/pull/24360))
+ * [#25930](https://github.com/magento/magento2/issues/25930) -- Integration Success Message Text Overflow Issue in Admin (fixed in [magento/magento2#26011](https://github.com/magento/magento2/pull/26011))
+ * [#25433](https://github.com/magento/magento2/issues/25433) -- Close (X) not working when error come for qty (fixed in [magento/magento2#25759](https://github.com/magento/magento2/pull/25759))
+ * [#26155](https://github.com/magento/magento2/issues/26155) -- Table quote column customer_note uses wrong type (fixed in [magento/magento2#26160](https://github.com/magento/magento2/pull/26160))
+ * [#761](https://github.com/magento/magento2/issues/761) -- A more verbose message when the db is not up to date. (fixed in [magento/magento2#25864](https://github.com/magento/magento2/pull/25864))
+ * [#25974](https://github.com/magento/magento2/issues/25974) -- Amount of characters on a 'Area' Customizable Option counted differently on backend/frontend (fixed in [magento/magento2#26033](https://github.com/magento/magento2/pull/26033))
+ * [#25674](https://github.com/magento/magento2/issues/25674) -- Elasticsearch version selections in admin are overly broad (fixed in [magento/magento2#25838](https://github.com/magento/magento2/pull/25838))
+ * [#13136](https://github.com/magento/magento2/issues/13136) -- Error in vendor/magento/module-shipping/Model/Config/Source/Allmethods.php - public function toOptionArray (fixed in [magento/magento2#25315](https://github.com/magento/magento2/pull/25315))
+ * [#22047](https://github.com/magento/magento2/issues/22047) -- Magento CRON Job Names are missing in NewRelic: "Transaction Names" (fixed in [magento/magento2#25957](https://github.com/magento/magento2/pull/25957))
+ * [#26164](https://github.com/magento/magento2/issues/26164) -- Underline should not display on hover for delete icon at shopping cart Internet explorer browser (fixed in [magento/magento2#26173](https://github.com/magento/magento2/pull/26173))
+ * [#24972](https://github.com/magento/magento2/issues/24972) -- Special Price class not added in configurable product page (fixed in [magento/magento2#26170](https://github.com/magento/magento2/pull/26170))
+ * [#25659](https://github.com/magento/magento2/issues/25659) -- Paypal Payments Pro IPN keeping payments marked as Pending Payment (fixed in [magento/magento2#25876](https://github.com/magento/magento2/pull/25876))
+ * [#18717](https://github.com/magento/magento2/issues/18717) -- UrlRewrite removes query string from url, if url has trailing slash (fixed in [magento/magento2#25603](https://github.com/magento/magento2/pull/25603))
+ * [#26176](https://github.com/magento/magento2/issues/26176) -- Footer Newsletter input field width is not identical in Internet Explorer/EDGE browser compared with chrome (fixed in [magento/magento2#26182](https://github.com/magento/magento2/pull/26182))
+ * [#25390](https://github.com/magento/magento2/issues/25390) -- UPS carrier model getting error when create plugin in to Magento 2.3.3 compatibility (fixed in [magento/magento2#26130](https://github.com/magento/magento2/pull/26130))
+ * [#26083](https://github.com/magento/magento2/issues/26083) -- Problem when trying to unset additional data in payment method. (fixed in [magento/magento2#26084](https://github.com/magento/magento2/pull/26084))
+ * [#26064](https://github.com/magento/magento2/issues/26064) -- Incorrect Error Message While Sharing Wish list more than Specified Email Address Value in Admin Configuration (fixed in [magento/magento2#26066](https://github.com/magento/magento2/pull/26066))
+ * [#14663](https://github.com/magento/magento2/issues/14663) -- Updating Customer through rest/all/V1/customers/:id resets group_id if group_id not passed in payload (fixed in [magento/magento2#25958](https://github.com/magento/magento2/pull/25958))
+ * [#20966](https://github.com/magento/magento2/issues/20966) -- Elastic Search 5 Indexing Performance Issue (fixed in [magento/magento2#25452](https://github.com/magento/magento2/pull/25452))
+ * [#21684](https://github.com/magento/magento2/issues/21684) -- Currency sign for "Layered Navigation Price Step" is not according to default settings (fixed in [magento/magento2#24815](https://github.com/magento/magento2/pull/24815))
+ * [#24468](https://github.com/magento/magento2/issues/24468) -- Export Coupon Code Grid redirect to DashBoard when create New Cart Price Rule (fixed in [magento/magento2#24471](https://github.com/magento/magento2/pull/24471))
+ * [#22856](https://github.com/magento/magento2/issues/22856) -- Catalog pricerules are not working with custom options as expected in Magento 2.3.0 product details page (fixed in [magento/magento2#22917](https://github.com/magento/magento2/pull/22917))
+ * [#14001](https://github.com/magento/magento2/issues/14001) -- M2.2.3 directory_country_region_name locale fix? 8bytes zh_Hans_CN(11bytes) ca_ES_VALENCIA(14bytes) (fixed in [magento/magento2#26268](https://github.com/magento/magento2/pull/26268))
+ * [#23521](https://github.com/magento/magento2/issues/23521) -- Unable to run \Magento\Downloadable\Test\Unit\Helper\DownloadTest without internet connection / dns resolution (fixed in [magento/magento2#26264](https://github.com/magento/magento2/pull/26264))
+ * [#25936](https://github.com/magento/magento2/issues/25936) -- Regular Price Label Alignment Issues in Frontend (fixed in [magento/magento2#26237](https://github.com/magento/magento2/pull/26237))
+ * [#26227](https://github.com/magento/magento2/issues/26227) -- Need some space between input and update button Minicart (fixed in [magento/magento2#26234](https://github.com/magento/magento2/pull/26234))
+ * [#26208](https://github.com/magento/magento2/issues/26208) -- Sorting issue for status column for Cache Management (fixed in [magento/magento2#26215](https://github.com/magento/magento2/pull/26215))
+ * [#26206](https://github.com/magento/magento2/issues/26206) -- Missing information about currently reindexed index on failure (fixed in [magento/magento2#26207](https://github.com/magento/magento2/pull/26207))
+ * [#26181](https://github.com/magento/magento2/issues/26181) -- Out of stock text is not aligned properly with add to cart button at list page in responsive (fixed in [magento/magento2#26183](https://github.com/magento/magento2/pull/26183))
+ * [#26168](https://github.com/magento/magento2/issues/26168) -- Input Checkbox Alignment Issue at checkout page in Safari Browser (fixed in [magento/magento2#26169](https://github.com/magento/magento2/pull/26169))
+ * [#19093](https://github.com/magento/magento2/issues/19093) -- API: salesOrderItemRepository does not include gift message (fixed in [magento/magento2#25946](https://github.com/magento/magento2/pull/25946))
+ * [#23350](https://github.com/magento/magento2/issues/23350) -- Add support for catching throwables in App/Bootstrap (fixed in [magento/magento2#25250](https://github.com/magento/magento2/pull/25250))
+ * [#26289](https://github.com/magento/magento2/issues/26289) -- Jump Datepicker in Catalog Price Rule (fixed in [magento/magento2#26290](https://github.com/magento/magento2/pull/26290))
+ * [#22964](https://github.com/magento/magento2/issues/22964) -- Unable to save any dates if the user interface locale is not english (US) in 2.3.1 (fixed in [magento/magento2#26270](https://github.com/magento/magento2/pull/26270))
+ * [#14913](https://github.com/magento/magento2/issues/14913) -- bookmark views become uneditable after deleting the first bookmark view. (fixed in [magento/magento2#26263](https://github.com/magento/magento2/pull/26263))
+ * [#26217](https://github.com/magento/magento2/issues/26217) -- Wrong fields selection while using fragments on GraphQL products query (fixed in [magento/magento2#26218](https://github.com/magento/magento2/pull/26218))
+ * [#23899](https://github.com/magento/magento2/issues/23899) -- system.xml file validation issue (fixed in [magento/magento2#25985](https://github.com/magento/magento2/pull/25985))
+ * [#14971](https://github.com/magento/magento2/issues/14971) -- Improper Handling of Pagination SEO (fixed in [magento/magento2#25337](https://github.com/magento/magento2/pull/25337))
+ * [#22988](https://github.com/magento/magento2/issues/22988) -- Wrong behavior of grid row and checkbox click (fixed in [magento/magento2#22990](https://github.com/magento/magento2/pull/22990))
+ * [#7065](https://github.com/magento/magento2/issues/7065) -- page.main.title is translating title (fixed in [magento/magento2#26269](https://github.com/magento/magento2/pull/26269))
+ * [#11209](https://github.com/magento/magento2/issues/11209) -- Wishlist Add grouped product Error (fixed in [magento/magento2#26258](https://github.com/magento/magento2/pull/26258))
+ * [#26235](https://github.com/magento/magento2/issues/26235) -- Both Menu spacing should be same (fixed in [magento/magento2#26238](https://github.com/magento/magento2/pull/26238))
+ * [#25130](https://github.com/magento/magento2/issues/25130) -- Issue with reorder when disabled reorder setting from admin (fixed in [magento/magento2#26051](https://github.com/magento/magento2/pull/26051))
+ * [#25881](https://github.com/magento/magento2/issues/25881) -- Admin panel is not accessible after limited permissions set to at least one admin account (fixed in [magento/magento2#25909](https://github.com/magento/magento2/pull/25909))
+ * [#25373](https://github.com/magento/magento2/issues/25373) -- The 'promotion' region of the minicart is never rendered (fixed in [magento/magento2#25375](https://github.com/magento/magento2/pull/25375))
+ * [#25278](https://github.com/magento/magento2/issues/25278) -- Incorrect @return type at getSourceModel in Eav\Attribute (fixed in [magento/magento2#25333](https://github.com/magento/magento2/pull/25333))
+ * [#25188](https://github.com/magento/magento2/issues/25188) -- Magento 2.3: Import fails if configurable attribute has an equal sign in its value (fixed in [magento/magento2#25194](https://github.com/magento/magento2/pull/25194))
+ * [#22304](https://github.com/magento/magento2/issues/22304) -- [Grouped product] Can´t add simple products to cart if one other is out of stock (fixed in [magento/magento2#24955](https://github.com/magento/magento2/pull/24955))
+ * [#26331](https://github.com/magento/magento2/issues/26331) -- [ MFTF ] Mess in ActionGroups: invalid names, multiple nodes. (fixed in [magento/partners-magento2ee#120](https://github.com/magento/partners-magento2ee/pull/120) and [magento/partners-magento2ee#108](https://github.com/magento/partners-magento2ee/pull/108) and [magento/partners-magento2ee#107](https://github.com/magento/partners-magento2ee/pull/107) and [magento/partners-magento2ee#106](https://github.com/magento/partners-magento2ee/pull/106) and [magento/partners-magento2ee#104](https://github.com/magento/partners-magento2ee/pull/104) and [magento/partners-magento2ee#105](https://github.com/magento/partners-magento2ee/pull/105) and [magento/partners-magento2ee#119](https://github.com/magento/partners-magento2ee/pull/119) and [magento/magento2#26323](https://github.com/magento/magento2/pull/26323) and [magento/magento2#26321](https://github.com/magento/magento2/pull/26321) and [magento/partners-magento2ee#111](https://github.com/magento/partners-magento2ee/pull/111) and [magento/magento2#26320](https://github.com/magento/magento2/pull/26320) and [magento/magento2#26319](https://github.com/magento/magento2/pull/26319) and [magento/partners-magento2ee#109](https://github.com/magento/partners-magento2ee/pull/109) and [magento/magento2#26322](https://github.com/magento/magento2/pull/26322) and [magento/partners-magento2ee#121](https://github.com/magento/partners-magento2ee/pull/121) and [magento/partners-magento2ee#117](https://github.com/magento/partners-magento2ee/pull/117) and [magento/partners-magento2ee#116](https://github.com/magento/partners-magento2ee/pull/116) and [magento/magento2#25828](https://github.com/magento/magento2/pull/25828) and [magento/magento2#26329](https://github.com/magento/magento2/pull/26329))
+ * [#22909](https://github.com/magento/partners-magento2ee/issues/22909) -- requirejs/domReady.js can severely delay rendering of content (fixed in [magento/magento2#23313](https://github.com/magento/magento2/pull/23313) and [magento/partners-magento2ee#50](https://github.com/magento/partners-magento2ee/pull/50))
+ * [#26396](https://github.com/magento/magento2/issues/26396) -- MFTF: Functional Tests are failing in Magento CI process (fixed in [magento/magento2#26407](https://github.com/magento/magento2/pull/26407) and [magento/magento2#26395](https://github.com/magento/magento2/pull/26395))
+ * [#26364](https://github.com/magento/magento2/issues/26364) -- Add to Compare link not showing in mobile view under 640px (fixed in [magento/magento2#26424](https://github.com/magento/magento2/pull/26424) and [magento/magento2#26365](https://github.com/magento/magento2/pull/26365))
+ * [#25968](https://github.com/magento/magento2/issues/25968) -- `getPrice()` returns a string when setting custom price in admin order (fixed in [magento/magento2#26313](https://github.com/magento/magento2/pull/26313))
+ * [#26612](https://github.com/magento/magento2/issues/26612) -- MFTF: StorefrontApplyPromoCodeDuringCheckoutTest is failing in CI process (fixed in [magento/magento2#26614](https://github.com/magento/magento2/pull/26614))
+ * [#26437](https://github.com/magento/magento2/issues/26437) -- Viewing customer shopping cart in admin shows all products in catalog when there is no active quote (fixed in [magento/magento2#26489](https://github.com/magento/magento2/pull/26489))
+ * [#26479](https://github.com/magento/magento2/issues/26479) -- Bug: AutoloaderRegistry::getAutoloader returns array (fixed in [magento/magento2#26480](https://github.com/magento/magento2/pull/26480))
+ * [#25162](https://github.com/magento/magento2/issues/25162) -- Message at Frontend has No HTML format (fixed in [magento/magento2#26455](https://github.com/magento/magento2/pull/26455))
+ * [#25761](https://github.com/magento/magento2/issues/25761) -- Site map doesn't include home page (fixed in [magento/magento2#26445](https://github.com/magento/magento2/pull/26445))
+ * [#18012](https://github.com/magento/magento2/issues/18012) -- Can not add string to underscore template using knockout (fixed in [magento/magento2#26435](https://github.com/magento/magento2/pull/26435))
+ * [#25300](https://github.com/magento/magento2/issues/25300) -- Mobile view issue on category page - Sort By label overlaps with Shop By button (fixed in [magento/magento2#26381](https://github.com/magento/magento2/pull/26381))
+ * [#26275](https://github.com/magento/magento2/issues/26275) -- Whitespace between label and required star on Checkout page (fixed in [magento/magento2#26285](https://github.com/magento/magento2/pull/26285))
+ * [#26065](https://github.com/magento/magento2/issues/26065) -- Performance of isSalable method check on configurable product (fixed in [magento/magento2#26071](https://github.com/magento/magento2/pull/26071))
+ * [#21014](https://github.com/magento/magento2/issues/21014) -- Gallery Thumbnail (left/right) Scroll Performance Android Chrome Sluggish and Unresponsive (fixed in [magento/magento2#25839](https://github.com/magento/magento2/pull/25839))
+ * [#10518](https://github.com/magento/magento2/issues/10518) -- Mobile product page image jumps (fixed in [magento/magento2#25385](https://github.com/magento/magento2/pull/25385))
+ * [#21717](https://github.com/magento/magento2/issues/21717) -- Product view page scrolls up randomly on mobile device (fixed in [magento/magento2#25385](https://github.com/magento/magento2/pull/25385))
+ * [#25962](https://github.com/magento/magento2/issues/25962) -- Radio alignment issue (fixed in [magento/magento2#25966](https://github.com/magento/magento2/pull/25966))
+ * [#9466](https://github.com/magento/magento2/issues/9466) -- Duplicating product copies product images couple of hundred times (fixed in [magento/magento2#25875](https://github.com/magento/magento2/pull/25875))
+ * [#17125](https://github.com/magento/magento2/issues/17125) -- x-magento-init initialisation not bound to happen in the right order. (fixed in [magento/magento2#25764](https://github.com/magento/magento2/pull/25764))
+ * [#26610](https://github.com/magento/magento2/issues/26610) -- MFTF: AdminAddingNewOptionsWithImagesAndPricesToConfigurableProductTest is failing in CI process (fixed in [magento/magento2#26611](https://github.com/magento/magento2/pull/26611))
+ * [#26240](https://github.com/magento/magento2/issues/26240) -- Minimum Advertised Price doesn't change for selected swatch option for configurable product (fixed in [magento/magento2#26241](https://github.com/magento/magento2/pull/26241) and [magento/magento2#26317](https://github.com/magento/magento2/pull/26317))
+ * [#17847](https://github.com/magento/magento2/issues/17847) -- Wrong State Title, Displaying Status Label Rather than State (fixed in [magento/magento2#26569](https://github.com/magento/magento2/pull/26569))
+ * [#21555](https://github.com/magento/magento2/issues/21555) -- Anonyomus classes in 2.3 (test data provider) (fixed in [magento/magento2#26533](https://github.com/magento/magento2/pull/26533))
+ * [#26532](https://github.com/magento/magento2/issues/26532) -- di:setup:compile fails with anonymous classes (fixed in [magento/magento2#26533](https://github.com/magento/magento2/pull/26533))
+ * [#26332](https://github.com/magento/magento2/issues/26332) -- BeforeOrderPaymentSaveObserver override payment insructions with wrong store view config (fixed in [magento/magento2#26399](https://github.com/magento/magento2/pull/26399))
+ * [#25591](https://github.com/magento/magento2/issues/25591) -- & character in SKUs is shown as & in current variations list on configurable products (fixed in [magento/magento2#26007](https://github.com/magento/magento2/pull/26007))
+ * [#13865](https://github.com/magento/magento2/issues/13865) -- Safari "Block all cookies" setting breaks JavaScript scripts (fixed in [magento/magento2#25324](https://github.com/magento/magento2/pull/25324))
+ * [#26375](https://github.com/magento/magento2/issues/26375) -- Switching billing address causes Javascript function text to render in front-end checkout payment section (fixed in [magento/magento2#26378](https://github.com/magento/magento2/pull/26378))
+ * [#25032](https://github.com/magento/magento2/issues/25032) -- Display some error "We can't update your Wish List right now." at wish list (fixed in [magento/magento2#25641](https://github.com/magento/magento2/pull/25641))
+ * [#8691](https://github.com/magento/magento2/issues/8691) -- Language pack inheritance order is incorrect (fixed in [magento/magento2#26420](https://github.com/magento/magento2/pull/26420))
+ * [#25195](https://github.com/magento/magento2/issues/25195) -- Issue with tier price 0 when saving product second time (fixed in [magento/magento2#26162](https://github.com/magento/magento2/pull/26162))
+ * [#26622](https://github.com/magento/magento2/issues/26622) -- Fixed cart discount calculated incorrectly when product first added to cart. (fixed in [magento/magento2#26623](https://github.com/magento/magento2/pull/26623))
+ * [#26543](https://github.com/magento/magento2/issues/26543) -- My Wish List Product not showing properly between >768px and <1023px (fixed in [magento/magento2#26546](https://github.com/magento/magento2/pull/26546))
+ * [#25268](https://github.com/magento/magento2/issues/25268) -- $order->getCustomer() returns NULL for registered customer (fixed in [magento/magento2#26423](https://github.com/magento/magento2/pull/26423))
+ * [#26338](https://github.com/magento/magento2/issues/26338) -- Code cleanup for module xml extra end tag removed (fixed in [magento/magento2#26339](https://github.com/magento/magento2/pull/26339))
+ * [#26760](https://github.com/magento/magento2/issues/26760) -- Validate html error when enable critical css (fixed in [magento/magento2#26764](https://github.com/magento/magento2/pull/26764))
+ * [#14885](https://github.com/magento/magento2/issues/14885) -- Refactoring: Code duplication EmailSender / ShipmentSender and so on (fixed in [magento/magento2#26714](https://github.com/magento/magento2/pull/26714))
+ * [#863](https://github.com/magento/magento2/issues/863) -- How to switch base,thumbnail images in magento 2 back end (fixed in [magento/magento2#26502](https://github.com/magento/magento2/pull/26502))
+ * [#26276](https://github.com/magento/magento2/issues/26276) -- Checkout. Quote Address Street cloning issue (fixed in [magento/magento2#26279](https://github.com/magento/magento2/pull/26279))
+ * [#26245](https://github.com/magento/magento2/issues/26245) -- Magento does not send an email about a refunded grouped product (fixed in [magento/magento2#26246](https://github.com/magento/magento2/pull/26246))
+ * [#26141](https://github.com/magento/magento2/issues/26141) -- Modal Popup and Custom subTitle erased (fixed in [magento/magento2#26142](https://github.com/magento/magento2/pull/26142))
+ * [#25487](https://github.com/magento/magento2/issues/25487) -- Redis cache grows unilimmited (fixed in [magento/magento2#25488](https://github.com/magento/magento2/pull/25488))
+ * [#25245](https://github.com/magento/magento2/issues/25245) -- Warning when Search Terms page is opened by clicking option at the footer (fixed in [magento/magento2#25246](https://github.com/magento/magento2/pull/25246))
+ * [#24842](https://github.com/magento/magento2/issues/24842) -- Unable to delete custom option file in admin order create (fixed in [magento/magento2#24843](https://github.com/magento/magento2/pull/24843))
+ * [#847](https://github.com/magento/magento2/issues/847) -- Use cursor: pointer for the product online switcher (fixed in [magento/magento2#25991](https://github.com/magento/magento2/pull/25991))
+ * [#26843](https://github.com/magento/magento2/issues/26843) -- es_US Spanish (United States ) Locale is not supported in Magento 2.3.4 (fixed in [magento/magento2#26857](https://github.com/magento/magento2/pull/26857))
+ * [#26054](https://github.com/magento/magento2/issues/26054) -- Do not duplicate SEO meta data when duplicating a product (fixed in [magento/magento2#26659](https://github.com/magento/magento2/pull/26659))
+ * [#26314](https://github.com/magento/magento2/issues/26314) -- Minimum Advertised Prices duplicates for all configurable products with price from selected swatch (fixed in [magento/magento2#26317](https://github.com/magento/magento2/pull/26317))
+ * [#24547](https://github.com/magento/magento2/issues/24547) -- Magento\Customer\Model\Account\Redirect::setRedirectCookie() not properly working (fixed in [magento/magento2#24612](https://github.com/magento/magento2/pull/24612))
+ * [#26675](https://github.com/magento/magento2/issues/26675) -- Date incorrect on pdf invoice (fixed in [magento/magento2#26701](https://github.com/magento/magento2/pull/26701))
+ * [#25675](https://github.com/magento/magento2/issues/25675) -- Unable add product to cart in Magento 2.3.3 backend when stock quantity is 1 - "The requested qty is not available" (fixed in [magento/magento2#26650](https://github.com/magento/magento2/pull/26650))
+ * [#26583](https://github.com/magento/magento2/issues/26583) -- Product Detail Page - Tier price (fixed & discount) save percentage displaying wrong calculation (fixed in [magento/magento2#26584](https://github.com/magento/magento2/pull/26584))
+ * [#25963](https://github.com/magento/magento2/issues/25963) -- Grid Export rendered data is not reflecting in the exported File, Displayed ID instead of Rendered Label (fixed in [magento/magento2#26523](https://github.com/magento/magento2/pull/26523))
+ * [#26416](https://github.com/magento/magento2/issues/26416) -- Compare Products section not showing in mobile view under 767px (fixed in [magento/magento2#26418](https://github.com/magento/magento2/pull/26418))
+ * [#25656](https://github.com/magento/magento2/issues/25656) -- M2.3.2 : Nullable getters in Service Contracts will throw a reflection error when used in the web API (fixed in [magento/magento2#25806](https://github.com/magento/magento2/pull/25806))
+ * [#24971](https://github.com/magento/magento2/issues/24971) -- Incorrect @var reference in docBlock of a class member variable (fixed in [magento/magento2#24976](https://github.com/magento/magento2/pull/24976))
+ * [#14958](https://github.com/magento/magento2/issues/14958) -- sale_sequence_* records are not removed on store view deletion (fixed in [magento/magento2#22296](https://github.com/magento/magento2/pull/22296))
+ * [#26607](https://github.com/magento/partners-magento2ee/issues/26607) -- MFTF: AdminReorderWithCatalogPriceTest is failing in CI process (fixed in [magento/magento2#26608](https://github.com/magento/magento2/pull/26608) and [magento/partners-magento2ee#135](https://github.com/magento/partners-magento2ee/pull/135))
+ * [#25856](https://github.com/magento/magento2/issues/25856) -- Ordered Products Report not grouping by configurable products variations (fixed in [magento/magento2#25858](https://github.com/magento/magento2/pull/25858))
+ * [#26973](https://github.com/magento/magento2/issues/26973) -- Fatal error on calling ImageFactory::create() for product_page_image_large (fixed in [magento/magento2#26974](https://github.com/magento/magento2/pull/26974))
+ * [#26917](https://github.com/magento/magento2/issues/26917) -- Tax rate Zip/Post range and check box alignment issue (fixed in [magento/magento2#26932](https://github.com/magento/magento2/pull/26932))
+ * [#26838](https://github.com/magento/magento2/issues/26838) -- Low stock report showing disabled products (fixed in [magento/magento2#26862](https://github.com/magento/magento2/pull/26862))
+ * [#26229](https://github.com/magento/magento2/issues/26229) -- Active menu is not set when opening admin path Marketing > User Content > Pending Reviews (fixed in [magento/magento2#26230](https://github.com/magento/magento2/pull/26230))
+ * [#25910](https://github.com/magento/magento2/issues/25910) -- Choose drop down not close when open another for upload file for swatch (fixed in [magento/magento2#26090](https://github.com/magento/magento2/pull/26090))
+ * [#13269](https://github.com/magento/magento2/issues/13269) -- Magento Framework Escaper - Critical log with special symbols (fixed in [magento/magento2#25895](https://github.com/magento/magento2/pull/25895))
+ * [#25738](https://github.com/magento/magento2/issues/25738) -- DOMDocument::loadHTML(): Tag date invalid in Entity (fixed in [magento/magento2#25895](https://github.com/magento/magento2/pull/25895))
+ * [#572](https://github.com/magento/magento2/issues/572) -- How do I: Bug tracking for Magento 1 + ideas for Magento 2 (fixed in [magento/magento2#25349](https://github.com/magento/magento2/pull/25349))
+ * [#26800](https://github.com/magento/magento2/issues/26800) -- Undefined variable $type in Product-Link Management (fixed in [magento/magento2#26979](https://github.com/magento/magento2/pull/26979))
+ * [#13252](https://github.com/magento/magento2/issues/13252) -- Fetching customer entity through API will not return 'is_subscribed' extension attribute (fixed in [magento/magento2#25311](https://github.com/magento/magento2/pull/25311))
+ * [#27044](https://github.com/magento/magento2/issues/27044) -- BUG: Category Repository get()'s argument `store_id` does not work (fixed in [magento/magento2#27048](https://github.com/magento/magento2/pull/27048))
+ * [#27040](https://github.com/magento/magento2/issues/27040) -- Images no longer responsive (fixed in [magento/magento2#27041](https://github.com/magento/magento2/pull/27041))
+ * [#17933](https://github.com/magento/magento2/issues/17933) -- Bank Transer Payment Instuctions switch back to default (fixed in [magento/magento2#26765](https://github.com/magento/magento2/pull/26765))
+ * [#23755](https://github.com/magento/magento2/issues/23755) -- Store view switcher is wrong , when each store views have different url. (fixed in [magento/magento2#26548](https://github.com/magento/magento2/pull/26548))
+ * [#26384](https://github.com/magento/magento2/issues/26384) -- Store switcher redirects to homepage for multistore setup with different domains (fixed in [magento/magento2#26548](https://github.com/magento/magento2/pull/26548))
+ * [#25243](https://github.com/magento/magento2/issues/25243) -- Numerical placeholder count in Phrase starts with %1, however js code assumes 0% (fixed in [magento/magento2#25359](https://github.com/magento/magento2/pull/25359))
+ * [#23619](https://github.com/magento/magento2/issues/23619) -- Less compilation extend 'mixin' has no matches (fixed in [magento/magento2#24003](https://github.com/magento/magento2/pull/24003))
+ * [#27032](https://github.com/magento/magento2/issues/27032) -- Add image lazy loading (fixed in [magento/magento2#27033](https://github.com/magento/magento2/pull/27033))
+ * [#25834](https://github.com/magento/magento2/issues/25834) -- Discount fixed amount whole cart applied mutiple time when customer use Check Out with Multiple Addresses (fixed in [magento/magento2#26419](https://github.com/magento/magento2/pull/26419))
+ * [#26989](https://github.com/magento/magento2/issues/26989) -- MFTF: Use Magento Cron for reindexing after creating data (fixed in [magento/magento2#26990](https://github.com/magento/magento2/pull/26990))
+ * [#27027](https://github.com/magento/magento2/issues/27027) -- Admin date of birth doesn't factor in user locale set (fixed in [magento/magento2#27149](https://github.com/magento/magento2/pull/27149))
+ * [#973](https://github.com/magento/magento2/issues/973) -- [Question] Add jenkins-ci ant build.xml and tool configurations to repository (fixed in [magento/magento2#27138](https://github.com/magento/magento2/pull/27138))
+ * [#26758](https://github.com/magento/magento2/issues/26758) -- cms-page-specific layouts are not applied if FullActionName differs from page_view (fixed in [magento/magento2#27131](https://github.com/magento/magento2/pull/27131))
+ * [#26847](https://github.com/magento/magento2/issues/26847) -- Hitting enter on create folder in media gallery refreshes the page (fixed in [magento/magento2#27029](https://github.com/magento/magento2/pull/27029))
+ * [#27009](https://github.com/magento/magento2/issues/27009) -- Missing variable outside CATCH causing a double-fault in Renderer.php (fixed in [magento/magento2#27026](https://github.com/magento/magento2/pull/27026))
+ * [#26992](https://github.com/magento/magento2/issues/26992) -- Add New ratings Is active and checkbox alignment issue (fixed in [magento/magento2#27014](https://github.com/magento/magento2/pull/27014))
+ * [#20309](https://github.com/magento/magento2/issues/20309) -- URL Rewrites redirect loop (fixed in [magento/magento2#26902](https://github.com/magento/magento2/pull/26902))
+ * [#26648](https://github.com/magento/magento2/issues/26648) -- Table bottom border color different then thead and tbody border color (fixed in [magento/magento2#26649](https://github.com/magento/magento2/pull/26649))
+ * [#26590](https://github.com/magento/magento2/issues/26590) -- Customer registration multiple form submit (fixed in [magento/magento2#26642](https://github.com/magento/magento2/pull/26642))
+ * [#24637](https://github.com/magento/magento2/issues/24637) -- Chinese input in tinymce 4 (fixed in [magento/magento2#25454](https://github.com/magento/magento2/pull/25454))
+ * [#22609](https://github.com/magento/magento2/issues/22609) -- Since Magento 2.3 the wysiwyg image uploader incorrectly uses pub/media as storage root. (fixed in [magento/magento2#24878](https://github.com/magento/magento2/pull/24878))
+ * [#24735](https://github.com/magento/magento2/issues/24735) -- Image in minicart is blurred on iPhone (fixed in [magento/magento2#24743](https://github.com/magento/magento2/pull/24743))
+ * [#14086](https://github.com/magento/magento2/issues/14086) -- Guest cart API ignoring cartId in url for some methods (fixed in [magento/magento2#27172](https://github.com/magento/magento2/pull/27172))
+ * [#25219](https://github.com/magento/magento2/issues/25219) -- Custom attributes of images generated by Block\Product\ImageFactory don't render correctly (fixed in [magento/magento2#26959](https://github.com/magento/magento2/pull/26959))
+ * [#26499](https://github.com/magento/magento2/issues/26499) -- Product url key is not transliterated anymore if already set (fixed in [magento/magento2#26506](https://github.com/magento/magento2/pull/26506))
+ * [#25669](https://github.com/magento/magento2/issues/25669) -- health_check.php fails if any database cache engine configured (fixed in [magento/magento2#25722](https://github.com/magento/magento2/pull/25722))
+ * [#20472](https://github.com/magento/magento2/issues/20472) -- Special Price shown without currency symbol in magento backoffice (fixed in [magento/magento2#27261](https://github.com/magento/magento2/pull/27261))
+ * [#20906](https://github.com/magento/magento2/issues/20906) -- Magento backend catalog "Cost" without currency symbol (fixed in [magento/magento2#27261](https://github.com/magento/magento2/pull/27261))
+ * [#21910](https://github.com/magento/magento2/issues/21910) -- Magento backend catalog "MSRP" without currency symbol (fixed in [magento/magento2#27261](https://github.com/magento/magento2/pull/27261))
+ * [#4112](https://github.com/magento/magento2/issues/4112) -- Wrong parent category url_key in URL (fixed in [magento/magento2#26784](https://github.com/magento/magento2/pull/26784))
+ * [#11615](https://github.com/magento/magento2/issues/11615) -- URL Rewrites vs multiple storeviews - a never ending battle (fixed in [magento/magento2#26784](https://github.com/magento/magento2/pull/26784))
+ * [#11616](https://github.com/magento/magento2/issues/11616) -- URL Rewrites vs multiple storeviews - too many rewrites are being generated (fixed in [magento/magento2#26784](https://github.com/magento/magento2/pull/26784))
+ * [#25124](https://github.com/magento/magento2/issues/25124) -- Magento 2.3 Wrong product url for anchor categories for multiple storeviews (fixed in [magento/magento2#26784](https://github.com/magento/magento2/pull/26784))
+ * [#26393](https://github.com/magento/magento2/issues/26393) -- Product category url rewrite missing storeview specific url_key (fixed in [magento/magento2#26784](https://github.com/magento/magento2/pull/26784))
+ * [#26345](https://github.com/magento/magento2/issues/26345) -- Reorder in Admin panel leads to report page in case of changed product custom option max characters (fixed in [magento/magento2#26348](https://github.com/magento/magento2/pull/26348))
+ * [#26117](https://github.com/magento/magento2/issues/26117) -- "Current user does not have an active cart" even when he actually has one (fixed in [magento/magento2#27187](https://github.com/magento/magento2/pull/27187))
+ * [#26825](https://github.com/magento/magento2/issues/26825) -- Adding/updating image using API will not create thumbnail for admin products grid (fixed in [magento/magento2#27170](https://github.com/magento/magento2/pull/27170))
+ * [#27117](https://github.com/magento/partners-magento2ee/issues/27117) -- MFTF: Test names are not following Best Practices (`Test` suffix) (fixed in [magento/magento2#27118](https://github.com/magento/magento2/pull/27118) and [magento/partners-magento2ee#151](https://github.com/magento/partners-magento2ee/pull/151))
+ * [#26683](https://github.com/magento/magento2/issues/26683) -- Unable to execute addSimpleProduct mutation while other items out of stock (fixed in [magento/magento2#27015](https://github.com/magento/magento2/pull/27015))
+ * [#26963](https://github.com/magento/magento2/issues/26963) -- Missing JS file (critical-css-loader) in Magento 2.3.4 (fixed in [magento/magento2#26987](https://github.com/magento/magento2/pull/26987))
+ * [#26473](https://github.com/magento/magento2/issues/26473) -- BUG: Wrong selected product image when query url param configurable product (fixed in [magento/magento2#26560](https://github.com/magento/magento2/pull/26560))
+ * [#26856](https://github.com/magento/magento2/issues/26856) -- Wrong gallery main image and active preview after updating for configurable products. (fixed in [magento/magento2#26560](https://github.com/magento/magento2/pull/26560))
+ * [#26858](https://github.com/magento/magento2/issues/26858) -- Wrong gallery behavior when query url param configurable product (fixed in [magento/magento2#26560](https://github.com/magento/magento2/pull/26560))
+ * [#22251](https://github.com/magento/magento2/issues/22251) -- Admin Order - Email is Now Required - Magento 2.2.6 (fixed in [magento/magento2#24479](https://github.com/magento/magento2/pull/24479))
+ * [#24704](https://github.com/magento/magento2/issues/24704) -- Saving CMS Page Title from REST web API makes content empty (fixed in [magento/magento2#27237](https://github.com/magento/magento2/pull/27237))
+ * [#26827](https://github.com/magento/magento2/issues/26827) -- 500 when creating new product after adding attribute via API and assigning to attribute set via UI (fixed in [magento/magento2#27191](https://github.com/magento/magento2/pull/27191))
+ * [#27124](https://github.com/magento/magento2/issues/27124) -- Share Wishlist Email: Image Logic Issue (fixed in [magento/magento2#27125](https://github.com/magento/magento2/pull/27125))
+ * [#27335](https://github.com/magento/magento2/issues/27335) -- My account Address Book Additional Address Entries table issue (fixed in [magento/magento2#27336](https://github.com/magento/magento2/pull/27336))
+ * [#14080](https://github.com/magento/magento2/issues/14080) -- Category path is the same as key producing duplicate URL issue (fixed in [magento/magento2#27304](https://github.com/magento/magento2/pull/27304))
+ * [#26708](https://github.com/magento/magento2/issues/26708) -- ORDER BY has two similar conditions (fixed in [magento/magento2#27263](https://github.com/magento/magento2/pull/27263))
+ * [#26745](https://github.com/magento/magento2/issues/26745) -- OrderPaymentInterface is missing setAdditionalInformation() (fixed in [magento/magento2#26748](https://github.com/magento/magento2/pull/26748))
+ * [#26335](https://github.com/magento/magento2/issues/26335) -- Update zendframework to laminas (fixed in [magento/magento2#26436](https://github.com/magento/magento2/pull/26436))
+ * [#186](https://github.com/magento/magento2/issues/186) -- Indexing product (on save) should be done after committing the transaction (fixed in [magento/magento2#26923](https://github.com/magento/magento2/pull/26923))
+ * [#26224](https://github.com/magento/magento2/issues/26224) -- Cache type without "instance" causes exception when disabling the module through "Cache Management" in the backend (fixed in [magento/magento2#27307](https://github.com/magento/magento2/pull/27307))
+ * [#25540](https://github.com/magento/magento2/issues/25540) -- Products are not displaying infront end after updating product via importing CSV. (fixed in [magento/magento2#25664](https://github.com/magento/magento2/pull/25664))
+ * [#22010](https://github.com/magento/magento2/issues/22010) -- 22010 -Updates AbstractExtensibleObject and AbstractExtensibleModel annotations (fixed in [magento/magento2#22011](https://github.com/magento/magento2/pull/22011))
+ * [#22363](https://github.com/magento/magento2/issues/22363) -- Layered navigation breaks HTML5 Validation (fixed in [magento/magento2#26055](https://github.com/magento/magento2/pull/26055))
+ * [#26884](https://github.com/magento/magento2/issues/26884) -- Customer address is duplicated after setBillingAddressOnCart GraphQL mutation. (fixed in [magento/magento2#27107](https://github.com/magento/magento2/pull/27107))
+ * [#26742](https://github.com/magento/magento2/issues/26742) -- graphql mutation setShippingMethodsOnCart get wrong data in available_shipping_methods. (fixed in [magento/magento2#27004](https://github.com/magento/magento2/pull/27004))
+ * [#13689](https://github.com/magento/magento2/issues/13689) -- Cannot create catagory's name with thai langauge (fixed in [magento/magento2#27412](https://github.com/magento/magento2/pull/27412))
+ * [#27370](https://github.com/magento/magento2/issues/27370) -- Internet explorer issue:Default billing/shipping address not showing (fixed in [magento/magento2#27383](https://github.com/magento/magento2/pull/27383))
+ * [#27086](https://github.com/magento/magento2/issues/27086) -- Report Value doesn't matching - "Year-To-Date Starts" (fixed in [magento/magento2#27088](https://github.com/magento/magento2/pull/27088))
+ * [#22833](https://github.com/magento/magento2/issues/22833) -- Short-term admin accounts (fixed in [magento/magento2#22837](https://github.com/magento/magento2/pull/22837))
+ * [#6310](https://github.com/magento/magento2/issues/6310) -- Changing products 'this item has weight' using 'Update Attributes' is not possible (fixed in [magento/magento2#26075](https://github.com/magento/magento2/pull/26075))
+ * [#16315](https://github.com/magento/magento2/issues/16315) -- Product save with onthefly index ignores website assignments (fixed in [magento/magento2#27365](https://github.com/magento/magento2/pull/27365))
+ * [#26762](https://github.com/magento/magento2/issues/26762) -- undefined index db-ssl-verify (fixed in [magento/magento2#26763](https://github.com/magento/magento2/pull/26763))
+ * [#26652](https://github.com/magento/magento2/issues/26652) -- In the minicart edit and remove icon is not aligned. (fixed in [magento/magento2#27493](https://github.com/magento/magento2/pull/27493))
+ * [#1002](https://github.com/magento/magento2/issues/1002) -- Database Schema: Incorrect Unique Indexes (fixed in [magento/magento2#27399](https://github.com/magento/magento2/pull/27399))
+ * [#24990](https://github.com/magento/magento2/issues/24990) -- Admin Panel logo link is not directing to admin dashboard page (fixed in [magento/magento2#26100](https://github.com/magento/magento2/pull/26100))
+ * [#27500](https://github.com/magento/magento2/issues/27500) -- Unit Tests incompatible with PHPUnit 8 (fixed in [magento/magento2#27521](https://github.com/magento/magento2/pull/27521) and [magento/magento2#27519](https://github.com/magento/magento2/pull/27519) and [magento/magento2#27627](https://github.com/magento/magento2/pull/27627) and [magento/magento2#27522](https://github.com/magento/magento2/pull/27522))
+ * [#27496](https://github.com/magento/magento2/issues/27496) -- The store logo is missing when using the Magento_blank theme (fixed in [magento/magento2#27497](https://github.com/magento/magento2/pull/27497))
+ * [#27169](https://github.com/magento/magento2/issues/27169) -- Not able to update value with "use default checkbox" for Downloadable Product's Sample and Links Title. (fixed in [magento/magento2#27295](https://github.com/magento/magento2/pull/27295))
+ * [#27320](https://github.com/magento/magento2/issues/27320) -- MFTF: Functional Tests failing due to missing data in indexes (fixed in [magento/magento2#27322](https://github.com/magento/magento2/pull/27322) and [magento/magento2#27321](https://github.com/magento/magento2/pull/27321) and [magento/magento2#27323](https://github.com/magento/magento2/pull/27323))
+ * [#171](https://github.com/magento/partners-magento2ee/issues/171) -- CMS Page modifications are not being reported in Action Log (fixed in [magento/magento2#27597](https://github.com/magento/magento2/pull/27597) and [magento/partners-magento2ee#172](https://github.com/magento/partners-magento2ee/pull/172))
+ * [#13851](https://github.com/magento/magento2/issues/13851) -- Credit doesn't recognize amount after comma (fixed in [magento/magento2#27343](https://github.com/magento/magento2/pull/27343))
+ * [#26986](https://github.com/magento/magento2/issues/26986) -- REST API Pagination Does not work as expected (fixed in [magento/magento2#26988](https://github.com/magento/magento2/pull/26988))
+ * [#27638](https://github.com/magento/partners-magento2ee/issues/27638) -- PHPUnit Tests bundled with Magento fatal errors (fixed in [magento/magento2#27701](https://github.com/magento/magento2/pull/27701) and [magento/partners-magento2ee#178](https://github.com/magento/partners-magento2ee/pull/178))
+ * [#27506](https://github.com/magento/magento2/issues/27506) -- Viewport resizing on search input focus on iphone (fixed in [magento/magento2#27603](https://github.com/magento/magento2/pull/27603))
+ * [#27607](https://github.com/magento/magento2/issues/27607) -- Integration Tests: DOM Assertion class (fixed in [magento/magento2#27606](https://github.com/magento/magento2/pull/27606))
+ * [#27299](https://github.com/magento/magento2/issues/27299) -- Integration Tests: Consecutive `dispatch($uri)` on Test AbstractController fails (fixed in [magento/magento2#27300](https://github.com/magento/magento2/pull/27300))
+ * [#27920](https://github.com/magento/magento2/issues/27920) -- [2.3.5] Incorrect html structure after MC-30989 (fixed in [magento/magento2#27926](https://github.com/magento/magento2/pull/27926))
+ * [#25769](https://github.com/magento/magento2/issues/25769) -- Arabic invoice pdf issue Magento 2.3.0 showing as Arabic letters but not correct (fixed in [magento/magento2#27887](https://github.com/magento/magento2/pull/27887))
+ * [#27874](https://github.com/magento/magento2/issues/27874) -- Vat Validation URL for EU Vat numbers changed. (Vies Service) (fixed in [magento/magento2#27886](https://github.com/magento/magento2/pull/27886))
+ * [#27089](https://github.com/magento/magento2/issues/27089) -- BUG: `getDefaultLimitPerPageValue` returns value that is not available (fixed in [magento/magento2#27093](https://github.com/magento/magento2/pull/27093))
+ * [#1270](https://github.com/magento/magento2/issues/1270) -- back button not working in edit order status (fixed in [magento/magento2#27976](https://github.com/magento/magento2/pull/27976))
+ * [#27897](https://github.com/magento/magento2/issues/27897) -- MFTF: Inconsistent case in Section name (fixed in [magento/magento2#27955](https://github.com/magento/magento2/pull/27955))
+ * [#27503](https://github.com/magento/magento2/issues/27503) -- MFTF: Acceptance tests break the naming convention (fixed in [magento/magento2#27515](https://github.com/magento/magento2/pull/27515))
+ * [#15](https://github.com/magento/magento2-login-as-customer/issues/15) -- Remove Login as Customer actions from admin grids (fixed in [magento/magento2-login-as-customer#23](https://github.com/magento/magento2-login-as-customer/pull/23))
+ * [#34](https://github.com/magento/magento2-login-as-customer/issues/34) -- Remove option to merge guest cart (fixed in [magento/magento2-login-as-customer#49](https://github.com/magento/magento2-login-as-customer/pull/49))
+ * [#110](https://github.com/magento/magento2-login-as-customer/issues/110) -- Need to add spinner/loader while Admin is logging in as Customer (fixed in [magento/magento2-login-as-customer#123](https://github.com/magento/magento2-login-as-customer/pull/123))
+ * [#159](https://github.com/magento/magento2-login-as-customer/issues/159) -- Error is shown on the page if customer is not sign out from account (fixed in [magento/magento2-login-as-customer#164](https://github.com/magento/magento2-login-as-customer/pull/164))
+ * [#102](https://github.com/magento/magento2-login-as-customer/issues/102) -- Admin user is logged into the default website if customer registered on second website (fixed in [magento/magento2-login-as-customer#148](https://github.com/magento/magento2-login-as-customer/pull/148))
+ * [#59](https://github.com/magento/magento2-login-as-customer/issues/59) -- Customer data not invalidated private content after logged in (fixed in [magento/magento2-login-as-customer#68](https://github.com/magento/magento2-login-as-customer/pull/68))
+ * [#33](https://github.com/magento/magento2-login-as-customer/issues/33) -- Update Readme.txt (fixed in [magento/magento2-login-as-customer#64](https://github.com/magento/magento2-login-as-customer/pull/64))
+ * [#60](https://github.com/magento/magento2-login-as-customer/issues/60) -- Customer data sometimes not being cleared when logging in as customer (fixed in [magento/magento2-login-as-customer#75](https://github.com/magento/magento2-login-as-customer/pull/75))
+ * [#73](https://github.com/magento/magento2-login-as-customer/issues/73) -- Page title is empty when admin login as customer (fixed in [magento/magento2-login-as-customer#92](https://github.com/magento/magento2-login-as-customer/pull/92))
+ * [#55](https://github.com/magento/magento2-login-as-customer/issues/55) -- [DEV] Need to update/change titles for ACL resource tree related to Login as Customer (fixed in [magento/magento2-login-as-customer#69](https://github.com/magento/magento2-login-as-customer/pull/69))
+ * [#8](https://github.com/magento/magento2-login-as-customer/issues/8) -- Merge initial module (fixed in [magento/magento2-login-as-customer#7](https://github.com/magento/magento2-login-as-customer/pull/7))
+ * [#122](https://github.com/magento/magento2-login-as-customer/issues/122) -- Issue 96 (fixed in [magento/magento2-login-as-customer#123](https://github.com/magento/magento2-login-as-customer/pull/123))
+ * [#71](https://github.com/magento/magento2-login-as-customer/issues/71) -- Login As Customer functionality is available when Login As Customer->Enable Extension=No (fixed in [magento/magento2-login-as-customer#121](https://github.com/magento/magento2-login-as-customer/pull/121))
+ * [#16](https://github.com/magento/magento2-login-as-customer/issues/16) -- All System Configuration settings should be on Global level (fixed in [magento/magento2-login-as-customer#120](https://github.com/magento/magento2-login-as-customer/pull/120))
+ * [#56](https://github.com/magento/magento2-login-as-customer/issues/56) -- [DEV] Confirmation pop-up window for "Login as Customer" if the setting "Store View To Log In" = "Manual Chooser" (fixed in [magento/magento2-login-as-customer#119](https://github.com/magento/magento2-login-as-customer/pull/119))
+ * [#100](https://github.com/magento/magento2-login-as-customer/issues/100) -- Moved all UI from LoginAsCustomer to new LoginAsCustomerUi module (fixed in [magento/magento2-login-as-customer#101](https://github.com/magento/magento2-login-as-customer/pull/101))
+ * [#97](https://github.com/magento/magento2-login-as-customer/issues/97) -- Refactor Magento\LoginAsCustomer\Model\Login Model (fixed in [magento/magento2-login-as-customer#99](https://github.com/magento/magento2-login-as-customer/pull/99))
+ * [#17](https://github.com/magento/magento2-login-as-customer/issues/17) -- Notification banner on storefront (fixed in [magento/magento2-login-as-customer#87](https://github.com/magento/magento2-login-as-customer/pull/87))
+ * [#10](https://github.com/magento/magento2-login-as-customer/issues/10) -- Controllers refactoring (fixed in [magento/magento2-login-as-customer#21](https://github.com/magento/magento2-login-as-customer/pull/21))
+
+* GitHub pull requests:
+ * [magento/magento2#25905](https://github.com/magento/magento2/pull/25905) -- [Checkout] Cover DirectoryData by Unit Test (by @edenduong)
+ * [magento/magento2#25808](https://github.com/magento/magento2/pull/25808) -- No marginal white space validation added (by @ajithkumar-maragathavel)
+ * [magento/magento2#25790](https://github.com/magento/magento2/pull/25790) -- Don't disable FPC for maintenance, instead send "no cache" headers (by @Parakoopa)
+ * [magento/magento2#25774](https://github.com/magento/magento2/pull/25774) -- [Config] Giving the possibility to have a config dependency based on empty config value (by @eduard13)
+ * [magento/magento2#25604](https://github.com/magento/magento2/pull/25604) -- Moving Ui message.js hide speed and timeout into variables for easier (by @edward-simpson)
+ * [magento/magento2#25541](https://github.com/magento/magento2/pull/25541) -- Removes hardcoded references to country selector component (by @krzksz)
+ * [magento/magento2#25939](https://github.com/magento/magento2/pull/25939) -- [ProductAlert] Cover Helper Data by Unit Test (by @edenduong)
+ * [magento/magento2#25928](https://github.com/magento/magento2/pull/25928) -- [Variable] Cover Variable Data Model by Unit Test (by @edenduong)
+ * [magento/magento2#25913](https://github.com/magento/magento2/pull/25913) -- [Backend] Covering the Backend Grid Decoding Helper by UnitTest (by @eduard13)
+ * [magento/magento2#25822](https://github.com/magento/magento2/pull/25822) -- MFTF: Extract Action Groups to separate files - magento/module-import-export (by @lbajsarowicz)
+ * [magento/magento2#25812](https://github.com/magento/magento2/pull/25812) -- MFTF: Extract Action Groups to separate files - magento/module-reports (by @lbajsarowicz)
+ * [magento/magento2#25803](https://github.com/magento/magento2/pull/25803) -- MFTF: Extract Action Groups to separate files - magento/module-shipping (by @lbajsarowicz)
+ * [magento/magento2#25791](https://github.com/magento/magento2/pull/25791) -- MFTF: Extract Action Groups to separate files - magento/module-widget (by @lbajsarowicz)
+ * [magento/magento2#25792](https://github.com/magento/magento2/pull/25792) -- MFTF: Extract Action Groups to separate files - magento/module-variable (by @lbajsarowicz)
+ * [magento/magento2#25765](https://github.com/magento/magento2/pull/25765) -- Magento#25739: fixed issue "grunt clean does not clean generated folder" (by @andrewbess)
+ * [magento/magento2#25655](https://github.com/magento/magento2/pull/25655) -- Add escaping on meta properties for open graph (by @NathMorgan)
+ * [magento/magento2#25952](https://github.com/magento/magento2/pull/25952) -- Resolve queue_consumer.xml doesn't allow numbers in handler class issue25731 (by @edenduong)
+ * [magento/magento2#25942](https://github.com/magento/magento2/pull/25942) -- Resolve Email address mismatch with text in iPad(768) view issue25935 (by @edenduong)
+ * [magento/magento2#25932](https://github.com/magento/magento2/pull/25932) -- Resolve Refresh Statistics: Updated At = Null should be display as "Never" instead of "undefined". issue25931 (by @edenduong)
+ * [magento/magento2#25926](https://github.com/magento/magento2/pull/25926) -- Resolve Duplicate Records when sorting column in Content->Themes Grid issue25925 (by @edenduong)
+ * [magento/magento2#25918](https://github.com/magento/magento2/pull/25918) -- [Ui] Adding admin class for password input type. (by @eduard13)
+ * [magento/magento2#25912](https://github.com/magento/magento2/pull/25912) -- Category filters - Fix notice on incorrect price param (by @ihor-sviziev)
+ * [magento/magento2#25995](https://github.com/magento/magento2/pull/25995) -- Updating wee -> weee in Magento_Weee README (by @MellenIO)
+ * [magento/magento2#25984](https://github.com/magento/magento2/pull/25984) -- [Customer] Cover CustomerData\Customer and CustomerData\JsLayoutDataProviderPool by Unit Test (by @edenduong)
+ * [magento/magento2#25982](https://github.com/magento/magento2/pull/25982) -- [Catalog] Cover Price Validation Result class by Unit Test (by @edenduong)
+ * [magento/magento2#25954](https://github.com/magento/magento2/pull/25954) -- Refactor: Add method hints to Tracking Status (by @lbajsarowicz)
+ * [magento/magento2#25924](https://github.com/magento/magento2/pull/25924) -- Resolve A "500 (Internal Server Error)" appears in Developer Console if Delete the image that is added to Page Content issue25893 (by @edenduong)
+ * [magento/magento2#25904](https://github.com/magento/magento2/pull/25904) -- Resolve issue 25896: Cannot create folder using only letters (by @edenduong)
+ * [magento/magento2#25723](https://github.com/magento/magento2/pull/25723) -- Fix #24713 - Symbol of the Belarusian currency BYR is outdated (by @Bartlomiejsz)
+ * [magento/magento2#25699](https://github.com/magento/magento2/pull/25699) -- magento/magento2#23481: Billing/Shipping Address edit form design update from order backend (by @alexey-rakitin)
+ * [magento/magento2#25262](https://github.com/magento/magento2/pull/25262) -- Allow autoplay for vimeo thumb click (by @philkun)
+ * [magento/magento2#26016](https://github.com/magento/magento2/pull/26016) -- [DownloadableImportExport] Cover Helper Data by Unit Test (by @edenduong)
+ * [magento/magento2#25997](https://github.com/magento/magento2/pull/25997) -- [Newsletter] Refactor code and Cover Model/Observer class by Unit Test (by @edenduong)
+ * [magento/magento2#25993](https://github.com/magento/magento2/pull/25993) -- [InstantPurchase] Cover Ui/CustomerAddressesFormatter and Ui/ShippingMethodFormatter by Unit Test (by @edenduong)
+ * [magento/magento2#25992](https://github.com/magento/magento2/pull/25992) -- Cover magento/magento2#25556 with jasmine test (by @Nazar65)
+ * [magento/magento2#25973](https://github.com/magento/magento2/pull/25973) -- [Removed spacing in submenu on hover desktop] (by @hitesh-wagento)
+ * [magento/magento2#25975](https://github.com/magento/magento2/pull/25975) -- phpdoc fix return type (by @maslii)
+ * [magento/magento2#25624](https://github.com/magento/magento2/pull/25624) -- Add right arrow to show some items have children (by @fredden)
+ * [magento/magento2#25114](https://github.com/magento/magento2/pull/25114) -- Added translate for strings and added missing node in existing translate attribute on xml. (by @sanganinamrata)
+ * [magento/magento2#25587](https://github.com/magento/magento2/pull/25587) -- Refactor JavaScript mixins module (by @krzksz)
+ * [magento/magento2#26069](https://github.com/magento/magento2/pull/26069) -- [CMS] Improving the test coverage for UrlBuilder ViewModel (by @eduard13)
+ * [magento/magento2#26067](https://github.com/magento/magento2/pull/26067) -- [Msrp] Cover MsrpPriceCalculator by Unit Test (by @edenduong)
+ * [magento/magento2#26063](https://github.com/magento/magento2/pull/26063) -- [Theme] Reverting removed container class (by @eduard13)
+ * [magento/magento2#26057](https://github.com/magento/magento2/pull/26057) -- [Contact] covered Model Config by Unit Test (by @srsathish92)
+ * [magento/magento2#26050](https://github.com/magento/magento2/pull/26050) -- [Catalog] covered product ViewModel AddToCompareAvailability by Unit Test (by @srsathish92)
+ * [magento/magento2#26044](https://github.com/magento/magento2/pull/26044) -- Set empty value to color picker when input is reset to update preview (by @gperis)
+ * [magento/magento2#26045](https://github.com/magento/magento2/pull/26045) -- [Downloadable] Cover Helper Data by Unit Test (by @edenduong)
+ * [magento/magento2#26042](https://github.com/magento/magento2/pull/26042) -- [Catalog] Cover Component/FilterFactory by Unit Test (by @edenduong)
+ * [magento/magento2#26043](https://github.com/magento/magento2/pull/26043) -- [Persistent] Cover CustomerData by Unit Test (by @edenduong)
+ * [magento/magento2#26037](https://github.com/magento/magento2/pull/26037) -- Fixes phpcs errors and warnings for Magento\Framework\View\Element (by @krisdante)
+ * [magento/magento2#26034](https://github.com/magento/magento2/pull/26034) -- MAGETWO-95866 Add horizontal scroll if elements extend menu's width (by @ptylek)
+ * [magento/magento2#26003](https://github.com/magento/magento2/pull/26003) -- [Directory] Cover action directory/json/countryRegion by Integration Test (by @edenduong)
+ * [magento/magento2#26001](https://github.com/magento/magento2/pull/26001) -- Fix caching Magento Metadata getVersion (by @luklewluk)
+ * [magento/magento2#25940](https://github.com/magento/magento2/pull/25940) -- Asynchronous operation validate (by @sedonik)
+ * [magento/magento2#25697](https://github.com/magento/magento2/pull/25697) -- [New Relic] Making system configs dependent by Enabled field (by @eduard13)
+ * [magento/magento2#25523](https://github.com/magento/magento2/pull/25523) -- Contact form > Adding ViewModel (by @rafaelstz)
+ * [magento/magento2#24360](https://github.com/magento/magento2/pull/24360) -- #24357 Eav sort order by attribute option_id (by @tnsezer)
+ * [magento/magento2#26060](https://github.com/magento/magento2/pull/26060) -- [Backend] Cover Dashboard Helper Data by Unit Test (by @edenduong)
+ * [magento/magento2#26059](https://github.com/magento/magento2/pull/26059) -- [Downloadable] Cover the Observer SetHasDownloadableProductsObserver by Unit Test (by @edenduong)
+ * [magento/magento2#26058](https://github.com/magento/magento2/pull/26058) -- Fixed typo: "reviwGrid" to "reviewGrid" (by @matheusgontijo)
+ * [magento/magento2#26011](https://github.com/magento/magento2/pull/26011) -- Fixed the issue 25930 (by @divyajyothi5321)
+ * [magento/magento2#26004](https://github.com/magento/magento2/pull/26004) -- [Backend] Cover action admin/dashboard/ajaxBlock by Integration Test (by @edenduong)
+ * [magento/magento2#25920](https://github.com/magento/magento2/pull/25920) -- Code refactor in Catalog ViewModel Breadcrumbs (by @srsathish92)
+ * [magento/magento2#26082](https://github.com/magento/magento2/pull/26082) -- [GiftMessage] Cover Observer SalesEventOrderItemToQuoteItemObserver by Unit Test (by @edenduong)
+ * [magento/magento2#26076](https://github.com/magento/magento2/pull/26076) -- [Search] Cover SynonymActions Column by Unit Test (by @edenduong)
+ * [magento/magento2#26068](https://github.com/magento/magento2/pull/26068) -- [GoogleAnalytics] covered Helper Data by Unit Test (by @srsathish92)
+ * [magento/magento2#26009](https://github.com/magento/magento2/pull/26009) -- Refactor: Add information about the path that is not allowed (by @lbajsarowicz)
+ * [magento/magento2#25759](https://github.com/magento/magento2/pull/25759) -- fixed issue 25433 (by @Ashna-Jahan)
+ * [magento/magento2#25854](https://github.com/magento/magento2/pull/25854) -- MFTF: Extract Action Groups to separate files - magento/module-catalog (by @lbajsarowicz)
+ * [magento/magento2#25846](https://github.com/magento/magento2/pull/25846) -- MFTF: Extract Action Groups to separate files - magento/module-catalog-import-export (by @lbajsarowicz)
+ * [magento/magento2#25845](https://github.com/magento/magento2/pull/25845) -- MFTF: Extract Action Groups to separate files - magento/module-catalog-inventory (by @lbajsarowicz)
+ * [magento/magento2#25844](https://github.com/magento/magento2/pull/25844) -- MFTF: Extract Action Groups to separate files - magento/module-catalog-rule (by @lbajsarowicz)
+ * [magento/magento2#25842](https://github.com/magento/magento2/pull/25842) -- MFTF: Extract Action Groups to separate files - magento/module-catalog-search (by @lbajsarowicz)
+ * [magento/magento2#25841](https://github.com/magento/magento2/pull/25841) -- MFTF: Extract Action Groups to separate files - magento/module-checkout (by @lbajsarowicz)
+ * [magento/magento2#25831](https://github.com/magento/magento2/pull/25831) -- MFTF: Extract Action Groups to separate files - magento/module-config (by @lbajsarowicz)
+ * [magento/magento2#25836](https://github.com/magento/magento2/pull/25836) -- MFTF: Extract Action Groups to separate files - magento/module-cms (by @lbajsarowicz)
+ * [magento/magento2#25830](https://github.com/magento/magento2/pull/25830) -- MFTF: Extract Action Groups to separate files - magento/module-configurable-product (by @lbajsarowicz)
+ * [magento/magento2#25829](https://github.com/magento/magento2/pull/25829) -- MFTF: Extract Action Groups to separate files - magento/module-currency-symbol (by @lbajsarowicz)
+ * [magento/magento2#25825](https://github.com/magento/magento2/pull/25825) -- MFTF: Extract Action Groups to separate files - magento/module-downloadable (by @lbajsarowicz)
+ * [magento/magento2#25823](https://github.com/magento/magento2/pull/25823) -- MFTF: Extract Action Groups to separate files - magento/module-email (by @lbajsarowicz)
+ * [magento/magento2#25821](https://github.com/magento/magento2/pull/25821) -- MFTF: Extract Action Groups to separate files - magento/module-grouped-product (by @lbajsarowicz)
+ * [magento/magento2#25819](https://github.com/magento/magento2/pull/25819) -- MFTF: Extract Action Groups to separate files - magento/module-multishipping (by @lbajsarowicz)
+ * [magento/magento2#25820](https://github.com/magento/magento2/pull/25820) -- MFTF: Extract Action Groups to separate files - magento/module-indexer (by @lbajsarowicz)
+ * [magento/magento2#25818](https://github.com/magento/magento2/pull/25818) -- MFTF: Extract Action Groups to separate files - magento/module-newsletter (by @lbajsarowicz)
+ * [magento/magento2#25817](https://github.com/magento/magento2/pull/25817) -- MFTF: Replace redundant Action Group with proper one - magento/module-page-cache (by @lbajsarowicz)
+ * [magento/magento2#25816](https://github.com/magento/magento2/pull/25816) -- MFTF: Extract Action Groups to separate files - magento/module-paypal (by @lbajsarowicz)
+ * [magento/magento2#25815](https://github.com/magento/magento2/pull/25815) -- MFTF: Extract Action Groups to separate files - magento/module-persistent (by @lbajsarowicz)
+ * [magento/magento2#25813](https://github.com/magento/magento2/pull/25813) -- MFTF: Extract Action Groups to separate files - magento/module-product-video (by @lbajsarowicz)
+ * [magento/magento2#25811](https://github.com/magento/magento2/pull/25811) -- MFTF: Extract Action Groups to separate files - magento/module-sales (by @lbajsarowicz)
+ * [magento/magento2#25807](https://github.com/magento/magento2/pull/25807) -- MFTF: Extract Action Groups to separate files - magento/module-sales-rule (by @lbajsarowicz)
+ * [magento/magento2#25804](https://github.com/magento/magento2/pull/25804) -- MFTF: Extract Action Groups to separate files - magento/module-search (by @lbajsarowicz)
+ * [magento/magento2#25802](https://github.com/magento/magento2/pull/25802) -- MFTF: Extract Action Groups to separate files - magento/module-store (by @lbajsarowicz)
+ * [magento/magento2#25800](https://github.com/magento/magento2/pull/25800) -- MFTF: Extract Action Groups to separate files - magento/module-swatches (by @lbajsarowicz)
+ * [magento/magento2#25799](https://github.com/magento/magento2/pull/25799) -- MFTF: Extract Action Groups to separate files - magento/module-tax (by @lbajsarowicz)
+ * [magento/magento2#25797](https://github.com/magento/magento2/pull/25797) -- MFTF: Extract Action Groups to separate files - magento/module-ui (by @lbajsarowicz)
+ * [magento/magento2#25794](https://github.com/magento/magento2/pull/25794) -- MFTF: Extract Action Groups to separate files - magento/module-url-rewrite (by @lbajsarowicz)
+ * [magento/magento2#25793](https://github.com/magento/magento2/pull/25793) -- MFTF: Extract Action Groups to separate files - magento/module-user (by @lbajsarowicz)
+ * [magento/magento2#25788](https://github.com/magento/magento2/pull/25788) -- MFTF: Extract Action Groups to separate files - magento/module-wishlist (by @lbajsarowicz)
+ * [magento/magento2#25787](https://github.com/magento/magento2/pull/25787) -- MFTF: Extract Action Groups to separate files - magento/module-bundle (by @lbajsarowicz)
+ * [magento/magento2#25784](https://github.com/magento/magento2/pull/25784) -- MFTF: Extract Action Groups to separate files - magento/module-braintree (by @lbajsarowicz)
+ * [magento/magento2#25783](https://github.com/magento/magento2/pull/25783) -- MFTF: Extract Action Groups to separate files - magento/module-backup (by @lbajsarowicz)
+ * [magento/magento2#26157](https://github.com/magento/magento2/pull/26157) -- Remove blank space at the end of label (by @gihovani)
+ * [magento/magento2#26160](https://github.com/magento/magento2/pull/26160) -- Changing the data type for quote column customer_note (by @ravi-chandra3197)
+ * [magento/magento2#26154](https://github.com/magento/magento2/pull/26154) -- [LayeredNavigation] Covering the ProductAttributeGridBuildObserver for LayeredNavigation (by @eduard13)
+ * [magento/magento2#26150](https://github.com/magento/magento2/pull/26150) -- [CatalogInventory] Covering the InvalidatePriceIndexUponConfigChangeObserver for Catalog (by @eduard13)
+ * [magento/magento2#26148](https://github.com/magento/magento2/pull/26148) -- [Bundle] Covering the SetAttributeTabBlockObserver for Bundles by Unit Test (by @eduard13)
+ * [magento/magento2#26140](https://github.com/magento/magento2/pull/26140) -- [ImportExport] Cover Export Source Model by Unit Test (by @edenduong)
+ * [magento/magento2#26136](https://github.com/magento/magento2/pull/26136) -- Code refactor, updated Unit Test with JsonHexTag Serializer (by @srsathish92)
+ * [magento/magento2#26128](https://github.com/magento/magento2/pull/26128) -- Refactor Magento Version module (+ Unit Tests) (by @lbajsarowicz)
+ * [magento/magento2#26127](https://github.com/magento/magento2/pull/26127) -- [Weee] Cover Weee Plugin by Unit Test (by @edenduong)
+ * [magento/magento2#26096](https://github.com/magento/magento2/pull/26096) -- [Checkout] Covering the ResetQuoteAddresses by Unit Test (by @eduard13)
+ * [magento/magento2#26028](https://github.com/magento/magento2/pull/26028) -- Refactor: Remove deprecated methods (by @andrewbess)
+ * [magento/magento2#25864](https://github.com/magento/magento2/pull/25864) -- Adobe stock integration Issue-761: Highlight the selected image in the grid (by @serhiyzhovnir)
+ * [magento/magento2#24849](https://github.com/magento/magento2/pull/24849) -- Simplify some conditional checks (by @DanielRuf)
+ * [magento/magento2#26131](https://github.com/magento/magento2/pull/26131) -- Reduce sleep time for Unit Test of Consumer to 0 seconds (by @lbajsarowicz)
+ * [magento/magento2#26126](https://github.com/magento/magento2/pull/26126) -- [WeeeGraphQl] Covering the FixedProductTax (by @lbajsarowicz)
+ * [magento/magento2#26129](https://github.com/magento/magento2/pull/26129) -- Refactor / Cleanup: `use` section does not need leading backslash (by @lbajsarowicz)
+ * [magento/magento2#26125](https://github.com/magento/magento2/pull/26125) -- [WishlistGraphQL] Covering the CustomerWishlistResolver (by @lbajsarowicz)
+ * [magento/magento2#26033](https://github.com/magento/magento2/pull/26033) -- Normalize new line symbols in Product Text Option (type=area) (by @Leone)
+ * [magento/magento2#25915](https://github.com/magento/magento2/pull/25915) -- Tests for: magento/magento2#24907, magento/magento2#25051, magento/magento2#25149, magento/magento2#24973, magento/magento2#25666. (by @p-bystritsky)
+ * [magento/magento2#25838](https://github.com/magento/magento2/pull/25838) -- [FIXES] #25674: Elasticsearch version selections in admin are overly (by @mautz-et-tong)
+ * [magento/magento2#25315](https://github.com/magento/magento2/pull/25315) -- Error in vendor/magento/module-shipping/Model/Config/Source/Allmethod (by @mrodespin)
+ * [magento/magento2#25957](https://github.com/magento/magento2/pull/25957) -- Add Cron Jobs names to New Relic transactions (by @lbajsarowicz)
+ * [magento/magento2#24103](https://github.com/magento/magento2/pull/24103) -- Refactor AdminNotification Render Blocks (by @DavidLambauer)
+ * [magento/magento2#26173](https://github.com/magento/magento2/pull/26173) -- Added Fix for 26164 (by @divyajyothi5321)
+ * [magento/magento2#26170](https://github.com/magento/magento2/pull/26170) -- Fixed Special Price class not added in configurable product page (by @ravi-chandra3197)
+ * [magento/magento2#25876](https://github.com/magento/magento2/pull/25876) -- Advance the order state to processing when a capture notification is received (by @azambon)
+ * [magento/magento2#25428](https://github.com/magento/magento2/pull/25428) -- Fixed model save and ObjectManager usage (by @drpayyne)
+ * [magento/magento2#25125](https://github.com/magento/magento2/pull/25125) -- Performance optimizations (by @andrey-legayev)
+ * [magento/magento2#26225](https://github.com/magento/magento2/pull/26225) -- Hotfix for Invalid date format in Functional and hotfix for failing Integration Tests (by @lbajsarowicz)
+ * [magento/magento2#25603](https://github.com/magento/magento2/pull/25603) -- Fix removing query string from url after redirect (by @arendarenko)
+ * [magento/magento2#26182](https://github.com/magento/magento2/pull/26182) -- Fix for footer newsletter input field length in IE/Edge (by @divyajyothi5321)
+ * [magento/magento2#26130](https://github.com/magento/magento2/pull/26130) -- Fix #25390 - UPS carrier model getting error when creating plugin in to Magento 2.3.3 compatibility (by @Bartlomiejsz)
+ * [magento/magento2#26084](https://github.com/magento/magento2/pull/26084) -- Fix #26083 - problem with unsAdditionalInformation in \Magento\Payment\Model\Info (by @marcoaacoliveira)
+ * [magento/magento2#26066](https://github.com/magento/magento2/pull/26066) -- 26064 issuefix (by @divyajyothi5321)
+ * [magento/magento2#25958](https://github.com/magento/magento2/pull/25958) -- #14663 Updating Customer through rest/all/V1/customers/:id resets group_id if group_id not passed in payload (by @MaxRomanov4669)
+ * [magento/magento2#25479](https://github.com/magento/magento2/pull/25479) -- JSON fields support (by @akaplya)
+ * [magento/magento2#25640](https://github.com/magento/magento2/pull/25640) -- set correct pram like in BlockRepository implementation (by @torhoehn)
+ * [magento/magento2#25478](https://github.com/magento/magento2/pull/25478) -- Clearer PHPDocs comment for AbstractBlock and Escaper (by @edward-simpson)
+ * [magento/magento2#25452](https://github.com/magento/magento2/pull/25452) -- Elastic Search 5 Indexing Performance Issue with product mapper (by @behnamshayani)
+ * [magento/magento2#24815](https://github.com/magento/magento2/pull/24815) -- Fix #21684 - Currency sign for "Layered Navigation Price Step" is not according to default settings (by @Bartlomiejsz)
+ * [magento/magento2#24471](https://github.com/magento/magento2/pull/24471) -- Resolve Export Coupon Code Grid redirect to DashBoard when create New Cart Price Rule issue24468 (by @edenduong)
+ * [magento/magento2#22917](https://github.com/magento/magento2/pull/22917) -- magento/magento2#22856: Catalog price rules are not working with custom options as expected. (by @p-bystritsky)
+ * [magento/magento2#26274](https://github.com/magento/magento2/pull/26274) -- MFTF: Replace incorrect URLs in Tests and ActionGroups (by @lbajsarowicz)
+ * [magento/magento2#26273](https://github.com/magento/magento2/pull/26273) -- MFTF: Replace with for Admin log out (by @lbajsarowicz)
+ * [magento/magento2#26268](https://github.com/magento/magento2/pull/26268) -- Fix #14001 - M2.2.3 directory_country_region_name locale fix? 8bytes zh_Hans_CN(11bytes) ca_ES_VALENCIA(14bytes) (by @Bartlomiejsz)
+ * [magento/magento2#26264](https://github.com/magento/magento2/pull/26264) -- Issue 23521 (by @aleromano89)
+ * [magento/magento2#26259](https://github.com/magento/magento2/pull/26259) -- Fix invalid XML Schema location (by @lbajsarowicz)
+ * [magento/magento2#26237](https://github.com/magento/magento2/pull/26237) -- Added Fix for 25936 (by @divyajyothi5321)
+ * [magento/magento2#26234](https://github.com/magento/magento2/pull/26234) -- [Align some space between input and update button Minicart] (by @hitesh-wagento)
+ * [magento/magento2#26215](https://github.com/magento/magento2/pull/26215) -- Disabled the sorting option in status column on cache grid (by @srsathish92)
+ * [magento/magento2#26207](https://github.com/magento/magento2/pull/26207) -- #26206 Add information about currently reindexed index. (by @lbajsarowicz)
+ * [magento/magento2#26183](https://github.com/magento/magento2/pull/26183) -- Added Fix for - 26181 (by @divyajyothi5321)
+ * [magento/magento2#26169](https://github.com/magento/magento2/pull/26169) -- Added Fix for issue 26168 (by @divyajyothi5321)
+ * [magento/magento2#26029](https://github.com/magento/magento2/pull/26029) -- Fixed keyboard arrow keys behavior for number fields in AdobeStock grid (by @rogyar)
+ * [magento/magento2#25946](https://github.com/magento/magento2/pull/25946) -- Add plugin for SalesOrderItemRepository gift message (#19093) (by @lfolco)
+ * [magento/magento2#25250](https://github.com/magento/magento2/pull/25250) -- Implement catching for all Errors - ref Magento issue #23350 (by @miszyman)
+ * [magento/magento2#26290](https://github.com/magento/magento2/pull/26290) -- [Fixed Jump Datepicker issue in Catalog Price Rule] (by @hitesh-wagento)
+ * [magento/magento2#26270](https://github.com/magento/magento2/pull/26270) -- Fix #22964 (by @marcoaacoliveira)
+ * [magento/magento2#26263](https://github.com/magento/magento2/pull/26263) -- Fix #14913 - bookmark views become uneditable after deleting the first bookmark view (by @Bartlomiejsz)
+ * [magento/magento2#26251](https://github.com/magento/magento2/pull/26251) -- [Customer] Removing the delete buttons for default customer groups (by @eduard13)
+ * [magento/magento2#26218](https://github.com/magento/magento2/pull/26218) -- FIX issue#26217 - Wrong fields selection while using fragments on GraphQL (by @phoenix128)
+ * [magento/magento2#26048](https://github.com/magento/magento2/pull/26048) -- Fixed spelling and adjusted white spaces (by @pawankparmar)
+ * [magento/magento2#25985](https://github.com/magento/magento2/pull/25985) -- Fixed ability to save configuration in field without label (by @AndreyChorniy)
+ * [magento/magento2#25337](https://github.com/magento/magento2/pull/25337) -- #14971 Improper Handling of Pagination SEO (by @chickenland)
+ * [magento/magento2#22990](https://github.com/magento/magento2/pull/22990) -- [Catalog|Sales] Fix wrong behavior of grid row click event (by @Den4ik)
+ * [magento/magento2#26360](https://github.com/magento/magento2/pull/26360) -- System xml cleanup (by @Bartlomiejsz)
+ * [magento/magento2#26359](https://github.com/magento/magento2/pull/26359) -- Remove Filename Normalization in Delete Controller (by @pmclain)
+ * [magento/magento2#26354](https://github.com/magento/magento2/pull/26354) -- Make WYSIWYG configuration options depend on wysiwyg being enabled (by @Bartlomiejsz)
+ * [magento/magento2#26312](https://github.com/magento/magento2/pull/26312) -- magento/magento2#: Unit test for \Magento\Review\Observer\CatalogProductListCollectionAppendSummaryFieldsObserver (by @atwixfirster)
+ * [magento/magento2#26311](https://github.com/magento/magento2/pull/26311) -- [CurrencySymbol] Fixing the redirect after saving the currency symbols (by @eduard13)
+ * [magento/magento2#26305](https://github.com/magento/magento2/pull/26305) -- [GoogleAdWords] Conversion ID client validation (by @eduard13)
+ * [magento/magento2#26269](https://github.com/magento/magento2/pull/26269) -- Fix #7065 - page.main.title is translating title (by @Bartlomiejsz)
+ * [magento/magento2#26258](https://github.com/magento/magento2/pull/26258) -- #11209 Wishlist Add grouped product Error (by @MaxRomanov4669)
+ * [magento/magento2#26238](https://github.com/magento/magento2/pull/26238) -- [Correct both Menu spacing issue] (by @hitesh-wagento)
+ * [magento/magento2#26185](https://github.com/magento/magento2/pull/26185) -- Allow wishlist share when all items are out of stock (by @pmclain)
+ * [magento/magento2#26051](https://github.com/magento/magento2/pull/26051) -- Issue with reorder when disabled reorder setting from admin issue25130 (by @edenduong)
+ * [magento/magento2#25909](https://github.com/magento/magento2/pull/25909) -- Resolve Admin panel is not accessible after limited permissions set to at least one admin account issue25881 (by @edenduong)
+ * [magento/magento2#25718](https://github.com/magento/magento2/pull/25718) -- add the possibility to add display mode dependant layout handles (by @brosenberger)
+ * [magento/magento2#25716](https://github.com/magento/magento2/pull/25716) -- add check if attribute value is possible to be set as configurable option (by @brosenberger)
+ * [magento/magento2#25375](https://github.com/magento/magento2/pull/25375) -- Fix minicart promotion region not rendering #25373 (by @mattijv)
+ * [magento/magento2#25333](https://github.com/magento/magento2/pull/25333) -- Fixed issue magento#25278:Incorrect @return type at getSourceModel in (by @mkalakailo)
+ * [magento/magento2#25194](https://github.com/magento/magento2/pull/25194) -- Limit the php explode to 2 to prevent extra '=' sign content in the a (by @dhoang89)
+ * [magento/magento2#25083](https://github.com/magento/magento2/pull/25083) -- Cleanup search api di (by @thomas-kl1)
+ * [magento/magento2#24955](https://github.com/magento/magento2/pull/24955) -- Fix: add to cart grouped product when exists a sold out option (by @gihovani)
+ * [magento/magento2#23313](https://github.com/magento/magento2/pull/23313) -- Trigger page load listeners when no longer loading (by @johnhughes1984)
+ * [magento/magento2#26407](https://github.com/magento/magento2/pull/26407) -- MFTF: Set of fixes for failing Functional Tests (by @lbajsarowicz)
+ * [magento/magento2#26395](https://github.com/magento/magento2/pull/26395) -- HotFix: Failing Magento EE check on Layered Navigation (by @lbajsarowicz)
+ * [magento/magento2#26323](https://github.com/magento/magento2/pull/26323) -- MFTF: Extract Action Groups to separate files - magento/module-ui (by @lbajsarowicz)
+ * [magento/magento2#26321](https://github.com/magento/magento2/pull/26321) -- MFTF: Extract Action Groups to separate files - magento/module-shipping (by @lbajsarowicz)
+ * [magento/magento2#26320](https://github.com/magento/magento2/pull/26320) -- MFTF: Extract Action Groups to separate files - magento/module-sales (by @lbajsarowicz)
+ * [magento/magento2#26319](https://github.com/magento/magento2/pull/26319) -- MFTF: Extract Action Groups to separate files - magento/module-catalog (by @lbajsarowicz)
+ * [magento/magento2#26424](https://github.com/magento/magento2/pull/26424) -- Add to Compare link does not show in mobile view under 640px in blank theme (by @ptylek)
+ * [magento/magento2#26402](https://github.com/magento/magento2/pull/26402) -- magento/magento2#: Unit test for \Magento\AdminNotification\Observer\PredispatchAdminActionControllerObserver (by @atwixfirster)
+ * [magento/magento2#26365](https://github.com/magento/magento2/pull/26365) -- Add to Compare link not showing in mobile view under 640px (by @tejash-wagento)
+ * [magento/magento2#26313](https://github.com/magento/magento2/pull/26313) -- Issue-25968 - Added additional checking for returning needed variable (by @AndreyChorniy)
+ * [magento/magento2#26495](https://github.com/magento/magento2/pull/26495) -- Fix confusing phpdoc in curl client (by @tdgroot)
+ * [magento/magento2#26464](https://github.com/magento/magento2/pull/26464) -- magento/magento2#: GraphQl. RevokeCustomerToken. Test coverage. (by @atwixfirster)
+ * [magento/magento2#26452](https://github.com/magento/magento2/pull/26452) -- magento/magento2#: GraphQl. DeletePaymentToken. Remove redundant validation logic. Test coverage. (by @atwixfirster)
+ * [magento/magento2#26322](https://github.com/magento/magento2/pull/26322) -- MFTF: Extract Action Groups to separate files for dev/tests (by @lbajsarowicz)
+ * [magento/magento2#26391](https://github.com/magento/magento2/pull/26391) -- MFTF: Add missing tests annotations (by @lbajsarowicz)
+ * [magento/magento2#26628](https://github.com/magento/magento2/pull/26628) -- Fixed #26513 (by @vikalps4)
+ * [magento/magento2#26614](https://github.com/magento/magento2/pull/26614) -- #26612 Fix failure on Coupon Apply procedure when loading mask still visible (by @lbajsarowicz)
+ * [magento/magento2#26558](https://github.com/magento/magento2/pull/26558) -- [Csp] Covering the model classes by Unit Tests (by @eduard13)
+ * [magento/magento2#26540](https://github.com/magento/magento2/pull/26540) -- Added action group for cms block duplication test (by @ajithkumar-maragathavel)
+ * [magento/magento2#26537](https://github.com/magento/magento2/pull/26537) -- Covered admin cms block creatation with MFTF test (by @ajithkumar-maragathavel)
+ * [magento/magento2#26512](https://github.com/magento/magento2/pull/26512) -- Extend exception message (by @oroskodias)
+ * [magento/magento2#26511](https://github.com/magento/magento2/pull/26511) -- Extend exception message (by @oroskodias)
+ * [magento/magento2#26509](https://github.com/magento/magento2/pull/26509) -- Update PHP Docs (by @oroskodias)
+ * [magento/magento2#26490](https://github.com/magento/magento2/pull/26490) -- Fixed type issue. Create unit test for customer data model (by @AndreyChorniy)
+ * [magento/magento2#26489](https://github.com/magento/magento2/pull/26489) -- Checked if quote object contains id before looking for quote items (by @rav-redchamps)
+ * [magento/magento2#26480](https://github.com/magento/magento2/pull/26480) -- Bugfix #26479 Exception when Autoloader was not registered properly (by @lbajsarowicz)
+ * [magento/magento2#26478](https://github.com/magento/magento2/pull/26478) -- Unit Test for Magento\Fedex\Plugin\Block\DataProviders\Tracking\ChangeTitle (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26455](https://github.com/magento/magento2/pull/26455) -- 25162 fixed wrong format link (by @Usik2203)
+ * [magento/magento2#26445](https://github.com/magento/magento2/pull/26445) -- Fix #25761: Site map doesn't include home page (by @deepaksnair)
+ * [magento/magento2#26435](https://github.com/magento/magento2/pull/26435) -- #18012: added i18n wrapper to be used in underscore templates for translation (by @sergiy-v)
+ * [magento/magento2#26434](https://github.com/magento/magento2/pull/26434) -- Fix typo in sitemap product collection docblock (by @Tjitse-E)
+ * [magento/magento2#26381](https://github.com/magento/magento2/pull/26381) -- #25300 Mobile view issue on category page - Sort By label overlaps (by @akartavtsev)
+ * [magento/magento2#26327](https://github.com/magento/magento2/pull/26327) -- Fix the wrong behavior of validation scroll on the iPhone X (by @iGerchak)
+ * [magento/magento2#26285](https://github.com/magento/magento2/pull/26285) -- Remove extraneous whitespace - #26275 (by @DanielRuf)
+ * [magento/magento2#26071](https://github.com/magento/magento2/pull/26071) -- #26065 isSaleable cache and optimize result for configurable products (by @ilnytskyi)
+ * [magento/magento2#25994](https://github.com/magento/magento2/pull/25994) -- Extend exception messages (by @oroskodias)
+ * [magento/magento2#25839](https://github.com/magento/magento2/pull/25839) -- Fix gallery thumbs navigation scrolling (by @iGerchak)
+ * [magento/magento2#25385](https://github.com/magento/magento2/pull/25385) -- Prevent page scroll jumping when product gallery loads (by @krzksz)
+ * [magento/magento2#26355](https://github.com/magento/magento2/pull/26355) -- Performance: Getting rid of `array_merge` in loop (by @lbajsarowicz)
+ * [magento/magento2#26296](https://github.com/magento/magento2/pull/26296) -- Add Visual Code catalog generator (by @manuelcanepa)
+ * [magento/magento2#26000](https://github.com/magento/magento2/pull/26000) -- magento/magento2#: Remove unused Default Email Domain option and related to it code (by @atwixfirster)
+ * [magento/magento2#25966](https://github.com/magento/magento2/pull/25966) -- [Fixed Radio alignment issue] (by @hitesh-wagento)
+ * [magento/magento2#25875](https://github.com/magento/magento2/pull/25875) -- Prevent endless loop when duplicating product (by @JeroenVanLeusden)
+ * [magento/magento2#25764](https://github.com/magento/magento2/pull/25764) -- Cleanup, refactor and cover with tests section-config module (by @krzksz)
+ * [magento/magento2#24460](https://github.com/magento/magento2/pull/24460) -- Allow construction of products with custom_attributes in $data (by @Vinai)
+ * [magento/magento2#26634](https://github.com/magento/magento2/pull/26634) -- Xml fixes for Magento_AdvancedPricingImportExport module (by @sanganinamrata)
+ * [magento/magento2#26611](https://github.com/magento/magento2/pull/26611) -- #26610 Fix failing CI due to invalid variable handler (by @lbajsarowicz)
+ * [magento/magento2#26549](https://github.com/magento/magento2/pull/26549) -- [Fedex] covered Model/Source/Generic.php by unit test (by @srsathish92)
+ * [magento/magento2#26525](https://github.com/magento/magento2/pull/26525) -- Unit test for Magento\Reports\Observer\EventSaver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26487](https://github.com/magento/magento2/pull/26487) -- Unit test for Magento\Fedex\Plugin\Block\Tracking\PopupDeliveryDate (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26439](https://github.com/magento/magento2/pull/26439) -- magento/magento2#: Unit test for \Magento\Bundle\Observer\InitOptionRendererObserver (by @atwixfirster)
+ * [magento/magento2#26429](https://github.com/magento/magento2/pull/26429) -- magento/magento2#: Unit test for \Magento\Bundle\Observer\AppendUpsellProductsObserver (by @atwixfirster)
+ * [magento/magento2#26241](https://github.com/magento/magento2/pull/26241) -- #26240: Fixed logic for getting option price index for selected swatch option (by @sergiy-v)
+ * [magento/magento2#26641](https://github.com/magento/magento2/pull/26641) -- Correct doc url added to README (by @rishatiwari)
+ * [magento/magento2#26579](https://github.com/magento/magento2/pull/26579) -- Unit test for Magento\Reports\Observer\CheckoutCartAddProductObserver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26574](https://github.com/magento/magento2/pull/26574) -- Cover Search Term Entity Redirect Works on Store Front by MFTF Test (by @DmitryTsymbal)
+ * [magento/magento2#26569](https://github.com/magento/magento2/pull/26569) -- 17847 Fixed wrong state title (by @Usik2203)
+ * [magento/magento2#26568](https://github.com/magento/magento2/pull/26568) -- Action group added for existing test (by @ajithkumar-maragathavel)
+ * [magento/magento2#26542](https://github.com/magento/magento2/pull/26542) -- Typo Mistake (by @mayankzalavadia)
+ * [magento/magento2#26533](https://github.com/magento/magento2/pull/26533) -- Github #26532: di:setup:compile fails with anonymous classes (by @joni-jones)
+ * [magento/magento2#26496](https://github.com/magento/magento2/pull/26496) -- [CurrencySymbol] Fixing the disabled currency inputs (by @eduard13)
+ * [magento/magento2#26476](https://github.com/magento/magento2/pull/26476) -- magento/magento2#: Remove a redundant call to DB for guest session (by @atwixfirster)
+ * [magento/magento2#26462](https://github.com/magento/magento2/pull/26462) -- Escape dollar sign for saving content into crontab (by @Erfans)
+ * [magento/magento2#26451](https://github.com/magento/magento2/pull/26451) -- Add frontend template hints status command (by @WaPoNe)
+ * [magento/magento2#26430](https://github.com/magento/magento2/pull/26430) -- Unit Test for Magento\Sitemap\Model\Config\Backend\Priority (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26399](https://github.com/magento/magento2/pull/26399) -- Issue #26332 BeforeOrderPaymentSaveObserver override payment instructions (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26213](https://github.com/magento/magento2/pull/26213) -- SEO: Do not follow links on filter options (by @paveq)
+ * [magento/magento2#26007](https://github.com/magento/magento2/pull/26007) -- #25591 & character in SKUs is shown as & in current variations li (by @KaushikChavda)
+ * [magento/magento2#25860](https://github.com/magento/magento2/pull/25860) -- Add mass action to invalidate indexes via admin (by @fredden)
+ * [magento/magento2#25851](https://github.com/magento/magento2/pull/25851) -- Fix SearchResult isCacheable performance (by @wigman)
+ * [magento/magento2#25742](https://github.com/magento/magento2/pull/25742) -- Http adapter curl missing delete method (by @jimuld)
+ * [magento/magento2#25324](https://github.com/magento/magento2/pull/25324) -- 13865 safari block cookies breaks javascript scripts (by @raulvOnestic91)
+ * [magento/magento2#24648](https://github.com/magento/magento2/pull/24648) -- reduce reset data actions on DeploymentConfig (by @georgebabarus)
+ * [magento/magento2#24485](https://github.com/magento/magento2/pull/24485) -- Fix return type of price currency format method (by @avstudnitz)
+ * [magento/magento2#26378](https://github.com/magento/magento2/pull/26378) -- 26375 braintree payment address issue (by @chris-pook)
+ * [magento/magento2#25641](https://github.com/magento/magento2/pull/25641) -- M2C-21768 Validate product quantity on Wishlist update (by @ptylek)
+ * [magento/magento2#25285](https://github.com/magento/magento2/pull/25285) -- Add lib wrapper for UUID validation. (by @nikolaevas)
+ * [magento/magento2#26420](https://github.com/magento/magento2/pull/26420) -- #8691: improved language pack inheritance order (by @sergiy-v)
+ * [magento/magento2#26413](https://github.com/magento/magento2/pull/26413) -- #895 Fix for Media Gallery buttons are shifted to the left (by @diazwatson)
+ * [magento/magento2#26162](https://github.com/magento/magento2/pull/26162) -- Fixed Issue with tier price 0 when saving product second time (by @ravi-chandra3197)
+ * [magento/magento2#26623](https://github.com/magento/magento2/pull/26623) -- #26622 - Check quote item for parentItem instead of parentItemId (by @aligent-lturner)
+ * [magento/magento2#26621](https://github.com/magento/magento2/pull/26621) -- Set of fixes introduced during #CoreReview 31.01.2020 (by @lbajsarowicz)
+ * [magento/magento2#26546](https://github.com/magento/magento2/pull/26546) -- [fixed My Wish List Product not showing properly between >768px and < (by @hitesh-wagento)
+ * [magento/magento2#26423](https://github.com/magento/magento2/pull/26423) -- Update getCustomer method in order class (by @sertlab)
+ * [magento/magento2#26339](https://github.com/magento/magento2/pull/26339) -- Module xml extra end tag removed (by @tejash-wagento)
+ * [magento/magento2#24691](https://github.com/magento/magento2/pull/24691) -- Allows additional payment checks in payment method list (by @jensscherbl)
+ * [magento/magento2#26782](https://github.com/magento/magento2/pull/26782) -- Module_Cms MFTF test improvements (by @ajithkumar-maragathavel)
+ * [magento/magento2#26781](https://github.com/magento/magento2/pull/26781) -- Code hygeine in bundle option graphql resolver (by @moloughlin)
+ * [magento/magento2#26770](https://github.com/magento/magento2/pull/26770) -- Unit tests for Magento\Csp\Model\Mode\ConfigManager and Magento\Csp\Observer\Render (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26764](https://github.com/magento/magento2/pull/26764) -- LoadCssAsync html format fixed for critical css (by @srsathish92)
+ * [magento/magento2#26714](https://github.com/magento/magento2/pull/26714) -- Deprecated redundant class (by @drpayyne)
+ * [magento/magento2#26715](https://github.com/magento/magento2/pull/26715) -- Unit test for \Magento\Captcha\Observer\ResetAttemptForBackendObserver and ResetAttemptForFrontendObserver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26502](https://github.com/magento/magento2/pull/26502) -- {ASI} :- Error message to be cached for grid data storage component (by @konarshankar07)
+ * [magento/magento2#26279](https://github.com/magento/magento2/pull/26279) -- Fix issue #26276 with clonning quote billing address street (by @yutv)
+ * [magento/magento2#26246](https://github.com/magento/magento2/pull/26246) -- magento/magento2#26245: Magento does not send an email about a refunded grouped product (by @atwixfirster)
+ * [magento/magento2#26142](https://github.com/magento/magento2/pull/26142) -- Textarea patch 1 (by @textarea)
+ * [magento/magento2#25488](https://github.com/magento/magento2/pull/25488) -- Update composer dependency to fix Redis Key Expiery (by @toxix)
+ * [magento/magento2#25249](https://github.com/magento/magento2/pull/25249) -- upgrade method delete by ids to inject array skus (by @sarron93)
+ * [magento/magento2#25246](https://github.com/magento/magento2/pull/25246) -- Warning when Search Terms page is opened by clicking option at the footer (by @vishalverma279)
+ * [magento/magento2#24843](https://github.com/magento/magento2/pull/24843) -- Issue #24842: Unable to delete custom option file in admin order create (by @adrian-martinez-interactiv4)
+ * [magento/magento2#26820](https://github.com/magento/magento2/pull/26820) -- [Theme] Covered Unit Test for \Magento\Theme\Controller\Result\JsFooterPlugin (by @srsathish92)
+ * [magento/magento2#26816](https://github.com/magento/magento2/pull/26816) -- Unit Test for \Magento\Directory\Block\Adminhtml\Frontend\Currency\Base (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26771](https://github.com/magento/magento2/pull/26771) -- Removed unnecessary function argument (by @ajithkumar-maragathavel)
+ * [magento/magento2#26684](https://github.com/magento/magento2/pull/26684) -- Move additional dependencies from private getters to constructor - Magento_PageCache (by @Bartlomiejsz)
+ * [magento/magento2#26674](https://github.com/magento/magento2/pull/26674) -- Comment add in translate. (by @pratikhmehta)
+ * [magento/magento2#26342](https://github.com/magento/magento2/pull/26342) -- Remove extra space before semicolon and remove extra comma in php, phtml and js files (by @tejash-wagento)
+ * [magento/magento2#25991](https://github.com/magento/magento2/pull/25991) -- Fixed issue when the preview images navigation is triggered by moving the input filed cursor using arrow keys (by @drpayyne)
+ * [magento/magento2#26857](https://github.com/magento/magento2/pull/26857) -- Issue/26843: Fix es_US Spanish (United States ) Locale is not support (by @vincent-le89)
+ * [magento/magento2#26846](https://github.com/magento/magento2/pull/26846) -- magento/magento2#: GraphQL. setPaymentMethodOnCart mutation. Extend list of required parameters for testSetPaymentMethodWithoutRequiredParameters (by @atwixfirster)
+ * [magento/magento2#26844](https://github.com/magento/magento2/pull/26844) -- Unit Tests for observers from Magento_Reports (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26835](https://github.com/magento/magento2/pull/26835) -- Unit test for Magento\Downloadable\Model\Sample\DeleteHandler (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26839](https://github.com/magento/magento2/pull/26839) -- Unit test for \Magento\MediaGallery\Plugin\Wysiwyg\Images\Storage (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26769](https://github.com/magento/magento2/pull/26769) -- Fix return type in ResetAttemptForFrontendObserver and ResetAttemptForBackendObserver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26768](https://github.com/magento/magento2/pull/26768) -- Marginal space validation (by @ajithkumar-maragathavel)
+ * [magento/magento2#26712](https://github.com/magento/magento2/pull/26712) -- Unit test for \Magento\Captcha\Observer\CheckUserForgotPasswordBackendObserver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26688](https://github.com/magento/magento2/pull/26688) -- Use '===' operator to check if file was written. (by @vovayatsyuk)
+ * [magento/magento2#26659](https://github.com/magento/magento2/pull/26659) -- [26054-Do not duplicate SEO meta data when duplicating a product] (by @dasharath-wagento)
+ * [magento/magento2#26398](https://github.com/magento/magento2/pull/26398) -- Move additional dependencies from private getters to constructor - Magento_Captcha (by @Bartlomiejsz)
+ * [magento/magento2#26317](https://github.com/magento/magento2/pull/26317) -- #26314: fixed logic for updating map price for selected swatch (by @sergiy-v)
+ * [magento/magento2#24612](https://github.com/magento/magento2/pull/24612) -- Fix for the issue #24547 Magento\Customer\Model\Account\Redirect::setRedirectCookie() not properly working (by @sashas777)
+ * [magento/magento2#26904](https://github.com/magento/magento2/pull/26904) -- [Layout] Adding 'article' as an additional supported layout tag (by @eduard13)
+ * [magento/magento2#26899](https://github.com/magento/magento2/pull/26899) -- Unit test for Magento\Vault\Plugin\PaymentVaultAttributesLoad (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26897](https://github.com/magento/magento2/pull/26897) -- Swatches options: eliminate objects instantiation since only their data needed (by @ilnytskyi)
+ * [magento/magento2#26894](https://github.com/magento/magento2/pull/26894) -- Unit test for Magento\GiftMessage\Model\Plugin\MergeQuoteItems (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26878](https://github.com/magento/magento2/pull/26878) -- [NewRelicReporting] Covering the New Relic plugins by Unit Tests (by @eduard13)
+ * [magento/magento2#26869](https://github.com/magento/magento2/pull/26869) -- Update MockObject class in Widget module (by @hws47a)
+ * [magento/magento2#26868](https://github.com/magento/magento2/pull/26868) -- Update MockObject class in Wishlist module (by @hws47a)
+ * [magento/magento2#26863](https://github.com/magento/magento2/pull/26863) -- TierPriceBox toHtml method should be return with string (by @tufahu)
+ * [magento/magento2#26790](https://github.com/magento/magento2/pull/26790) -- Disabled flat: cast $attributeId as (int) in selects (by @ilnytskyi)
+ * [magento/magento2#26761](https://github.com/magento/magento2/pull/26761) -- [Analytics] Code refactor & covered unit test in Analytics/ReportXml/QueryFactory (by @srsathish92)
+ * [magento/magento2#26710](https://github.com/magento/magento2/pull/26710) -- [Customer] Fixing the code style for account edit template and Integration test (by @eduard13)
+ * [magento/magento2#26701](https://github.com/magento/magento2/pull/26701) -- Date incorrect on pdf invoice issue26675 (by @edenduong)
+ * [magento/magento2#26650](https://github.com/magento/magento2/pull/26650) -- issue-#25675 Added fix for #25675 issue to the 2.4 Magento version (by @molneek)
+ * [magento/magento2#26617](https://github.com/magento/magento2/pull/26617) -- Unit Test for Magento\LayeredNavigation\Observer\Edit\Tab\Front\ProductAttributeFormBuildFrontTabObserver (by @karyna-tsymbal-atwix)
+ * [magento/magento2#26584](https://github.com/magento/magento2/pull/26584) -- #26583 Tier pricing save percent showing logic updated in product detail page (by @srsathish92)
+ * [magento/magento2#26523](https://github.com/magento/magento2/pull/26523) -- [#25963] Fixed grids export: option labels are taken from grid filters and columns now. (by @novikor)
+ * [magento/magento2#26418](https://github.com/magento/magento2/pull/26418) -- [Fixed Compare Products section not showing in mobile view under 767px] (by @hitesh-wagento)
+ * [magento/magento2#25806](https://github.com/magento/magento2/pull/25806) -- Reflection: Fix null as first return type (by @Parakoopa)
+ * [magento/magento2#25626](https://github.com/magento/magento2/pull/25626) -- Fix translation retrieval (by @brosenberger)
+ * [magento/magento2#25426](https://github.com/magento/magento2/pull/25426) -- Ui: log exception correctly (by @bchatard)
+ * [magento/magento2#25417](https://github.com/magento/magento2/pull/25417) -- README > Improving the apresentation (by @rafaelstz)
+ * [magento/magento2#25321](https://github.com/magento/magento2/pull/25321) -- Changing input phone type to tel in Contact, Error Report and Customer widget pages (by @rafaelstz)
+ * [magento/magento2#24976](https://github.com/magento/magento2/pull/24976) -- Fix doc block for $queueIterator Magento\Framework\MessageQueue\Topology\Config (by @UncleTioma)
+ * [magento/magento2#22296](https://github.com/magento/magento2/pull/22296) -- Fix #14958 - remove sales sequence data on store view delete (by @Bartlomiejsz)
+ * [magento/magento2#26833](https://github.com/magento/magento2/pull/26833) -- magento/magento2#: GraphQL. MergeCarts mutation. Add additional API-functional test cases (by @atwixfirster)
+ * [magento/magento2#26608](https://github.com/magento/magento2/pull/26608) -- HOTFIX: #26607 Fix failing CI due to Functional Tests (by @lbajsarowicz)
+ * [magento/magento2#26772](https://github.com/magento/magento2/pull/26772) -- Clean up 'isset' coding style (by @GraysonChiang)
+ * [magento/magento2#25858](https://github.com/magento/magento2/pull/25858) -- FIX #25856 / Group Ordered Products report by SKU (by @lbajsarowicz)
+ * [magento/magento2#23570](https://github.com/magento/magento2/pull/23570) -- Improve: [UrlRewrite] Move grid implementation to ui components (by @Den4ik)
+ * [magento/magento2#26995](https://github.com/magento/magento2/pull/26995) -- Fix typo in description node. (by @BorisovskiP)
+ * [magento/magento2#26982](https://github.com/magento/magento2/pull/26982) -- Remove app/functions.php (by @Bartlomiejsz)
+ * [magento/magento2#26974](https://github.com/magento/magento2/pull/26974) -- Fix: #26973 Fatal error when Product Image size is not defined (by @lbajsarowicz)
+ * [magento/magento2#26947](https://github.com/magento/magento2/pull/26947) -- Unit test for AssignCouponDataAfterOrderCustomerAssignObserver (by @mmezhensky)
+ * [magento/magento2#26944](https://github.com/magento/magento2/pull/26944) -- Unit test for CatalogProductCompareClearObserver (by @mmezhensky)
+ * [magento/magento2#26932](https://github.com/magento/magento2/pull/26932) -- Fix #26917 Tax rate zip/post range check box alignment issue (by @srsathish92)
+ * [magento/magento2#26928](https://github.com/magento/magento2/pull/26928) -- Module_Cms MFTF test improvements (by @nandhini-nagaraj)
+ * [magento/magento2#26916](https://github.com/magento/magento2/pull/26916) -- Move cache cleanup operation on state modification operation (by @kandy)
+ * [magento/magento2#26912](https://github.com/magento/magento2/pull/26912) -- Unit test for ProductProcessUrlRewriteRemovingObserver (by @mmezhensky)
+ * [magento/magento2#26862](https://github.com/magento/magento2/pull/26862) -- Removed disabled products from low stock report grid (by @Mohamed-Asar)
+ * [magento/magento2#26821](https://github.com/magento/magento2/pull/26821) -- Reduce requirements for parameter in catalog product type factory (by @hws47a)
+ * [magento/magento2#26755](https://github.com/magento/magento2/pull/26755) -- Fix wrong type of argument appendSummaryFieldsToCollection (by @Usik2203)
+ * [magento/magento2#26697](https://github.com/magento/magento2/pull/26697) -- Update the product model custom option methods PHPdoc (by @hws47a)
+ * [magento/magento2#26586](https://github.com/magento/magento2/pull/26586) -- Improve exception message (by @oroskodias)
+ * [magento/magento2#26230](https://github.com/magento/magento2/pull/26230) -- Activated "Pending Reviews" menu item when merchant opens 'Pending Reviews' section (by @rav-redchamps)
+ * [magento/magento2#26090](https://github.com/magento/magento2/pull/26090) -- Fixed issue 25910 choose drop down not close when open another (by @Usik2203)
+ * [magento/magento2#25895](https://github.com/magento/magento2/pull/25895) -- Change tag name (by @AndreyChorniy)
+ * [magento/magento2#25349](https://github.com/magento/magento2/pull/25349) -- Fixed issue when escape key is pressed to close prompt (by @konarshankar07)
+ * [magento/magento2#25161](https://github.com/magento/magento2/pull/25161) -- fixed confusing grammar in the backend formatDate() function (by @princefishthrower)
+ * [magento/magento2#26979](https://github.com/magento/magento2/pull/26979) -- #26800 Fixed Undefined variable in ProductLink/Management (by @srsathish92)
+ * [magento/magento2#26842](https://github.com/magento/magento2/pull/26842) -- Unit test for Magento\Catalog\Observer\SetSpecialPriceStartDate has added (by @mmezhensky)
+ * [magento/magento2#26615](https://github.com/magento/magento2/pull/26615) -- Add missing annotations to MFTF tests (by @sta1r)
+ * [magento/magento2#25828](https://github.com/magento/magento2/pull/25828) -- MFTF: Extract Action Groups to separate files - magento/module-customer (by @lbajsarowicz)
+ * [magento/magento2#25311](https://github.com/magento/magento2/pull/25311) -- Add afterGetList method in CustomerRepository plugin to retrieve is_s (by @enriquei4)
+ * [magento/magento2#27054](https://github.com/magento/magento2/pull/27054) -- Cleanup ObjectManager usage - Magento_Authorization (by @Bartlomiejsz)
+ * [magento/magento2#27048](https://github.com/magento/magento2/pull/27048) -- #27044 Integration Test to cover `$storeId` on Category Repository `get()` (by @lbajsarowicz)
+ * [magento/magento2#27041](https://github.com/magento/magento2/pull/27041) -- FIX: responsiveness for images (by @GrimLink)
+ * [magento/magento2#27021](https://github.com/magento/magento2/pull/27021) -- Unit test for \Magento\MediaGallery\Plugin\Product\Gallery\Processor (by @karyna-tsymbal-atwix)
+ * [magento/magento2#27010](https://github.com/magento/magento2/pull/27010) -- Unit test for UpdateElementTypesObserver (by @mmezhensky)
+ * [magento/magento2#26779](https://github.com/magento/magento2/pull/26779) -- Fix failure for missing product on Storefront (by @lbajsarowicz)
+ * [magento/magento2#26765](https://github.com/magento/magento2/pull/26765) -- Fix #17933 - Bank Transfer Payment Instructions switch back to default (by @Bartlomiejsz)
+ * [magento/magento2#26548](https://github.com/magento/magento2/pull/26548) -- issue/26384 Fix store switcher when using different base url on stores (by @TobiasCodeNull)
+ * [magento/magento2#26329](https://github.com/magento/magento2/pull/26329) -- MFTF: Replace invalid ActionGroup for AdminLogin (by @lbajsarowicz)
+ * [magento/magento2#25359](https://github.com/magento/magento2/pull/25359) -- Fix #25243 (by @korostii)
+ * [magento/magento2#24003](https://github.com/magento/magento2/pull/24003) -- Fixes less compilation problems in the Magento/luma theme (by @hostep)
+ * [magento/magento2#27114](https://github.com/magento/magento2/pull/27114) -- magento/magento2#: Remove a redundant PHP5 directives from .htaccess (by @atwixfirster)
+ * [magento/magento2#27057](https://github.com/magento/magento2/pull/27057) -- Removed redundant method _beforeToHtml (by @Usik2203)
+ * [magento/magento2#27033](https://github.com/magento/magento2/pull/27033) -- Catalog image lazy load (by @tdgroot)
+ * [magento/magento2#26907](https://github.com/magento/magento2/pull/26907) -- Open separate page when click 'View' in CMS pages(Grid) (by @dominicfernando)
+ * [magento/magento2#26619](https://github.com/magento/magento2/pull/26619) -- Cover CartTotalRepositoryPlugin by unit test and correct docblock (by @mrtuvn)
+ * [magento/magento2#26778](https://github.com/magento/magento2/pull/26778) -- Eliminate the need for inheritance for action controllers. (by @lbajsarowicz)
+ * [magento/magento2#26990](https://github.com/magento/magento2/pull/26990) -- #26989 MFTF: Use for reindex (by @lbajsarowicz)
+ * [magento/magento2#27196](https://github.com/magento/magento2/pull/27196) -- Remove @author annotation from Magento framework (by @diazwatson)
+ * [magento/magento2#27149](https://github.com/magento/magento2/pull/27149) -- 27027 added date format adjustment for 'validate-dob' rule (by @sergiy-v)
+ * [magento/magento2#27138](https://github.com/magento/magento2/pull/27138) -- Removed unnecessary tabindex property (by @drpayyne)
+ * [magento/magento2#27131](https://github.com/magento/magento2/pull/27131) -- 26758 improved cms page custom layout update logic (by @sergiy-v)
+ * [magento/magento2#27084](https://github.com/magento/magento2/pull/27084) -- Cleanup ObjectManager usage - Magento_CacheInvalidate (by @Bartlomiejsz)
+ * [magento/magento2#27083](https://github.com/magento/magento2/pull/27083) -- Cleanup ObjectManager usage - Magento_AsynchronousOperations (by @Bartlomiejsz)
+ * [magento/magento2#27082](https://github.com/magento/magento2/pull/27082) -- Cleanup ObjectManager usage - Magento_Analytics (by @Bartlomiejsz)
+ * [magento/magento2#27080](https://github.com/magento/magento2/pull/27080) -- Cleanup ObjectManager usage - Magento_EncryptionKey (by @Bartlomiejsz)
+ * [magento/magento2#27029](https://github.com/magento/magento2/pull/27029) -- #26847: Added 'enterKey' event handler to prompt widget (by @sergiy-v)
+ * [magento/magento2#27026](https://github.com/magento/magento2/pull/27026) -- Issue 27009: Fix error fire on catch when create new theme (by @vincent-le89)
+ * [magento/magento2#27014](https://github.com/magento/magento2/pull/27014) -- Fix #26992 Add new rating is active checkbox alignment issue (by @srsathish92)
+ * [magento/magento2#26964](https://github.com/magento/magento2/pull/26964) -- Cleanup ObjectManager usage - Magento_Elasticsearch (by @Bartlomiejsz)
+ * [magento/magento2#26939](https://github.com/magento/magento2/pull/26939) -- ObjectManager cleanup - Remove usage from AdminNotification module (by @ihor-sviziev)
+ * [magento/magento2#26902](https://github.com/magento/magento2/pull/26902) -- Fix #20309 - URL Rewrites redirect loop (by @Bartlomiejsz)
+ * [magento/magento2#26649](https://github.com/magento/magento2/pull/26649) -- table bottom color different then thead and tbody border color (by @tejash-wagento)
+ * [magento/magento2#26642](https://github.com/magento/magento2/pull/26642) -- MAG-251090-26590: Fixed Customer registration multiple form submit (by @princeCB)
+ * [magento/magento2#26563](https://github.com/magento/magento2/pull/26563) -- magento/magento2#: Test Coverage. API functional tests. removeItemFromCart (by @atwixfirster)
+ * [magento/magento2#25454](https://github.com/magento/magento2/pull/25454) -- TinyMCE4 hard to input double byte characters on chrome (by @HirokazuNishi)
+ * [magento/magento2#24878](https://github.com/magento/magento2/pull/24878) -- Create missing directories in imageuploader tree if they don't alread (by @hostep)
+ * [magento/magento2#24743](https://github.com/magento/magento2/pull/24743) -- fix issue 24735 (by @dmdanilchenko)
+ * [magento/magento2#23742](https://github.com/magento/magento2/pull/23742) -- Add Header (h1 - h6) tags to layout xml htmlTags Allowed types (by @furan917)
+ * [magento/magento2#22442](https://github.com/magento/magento2/pull/22442) -- Add support for char element to dto factory (by @wardcapp)
+ * [magento/magento2#27172](https://github.com/magento/magento2/pull/27172) -- magento/magento2#14086: Guest cart API ignoring cartId in url for some methods (by @engcom-Charlie)
+ * [magento/magento2#27179](https://github.com/magento/magento2/pull/27179) -- improve Magento\Catalog\Model\ImageUploader error handler (by @fsw)
+ * [magento/magento2#27145](https://github.com/magento/magento2/pull/27145) -- Cleanup ObjectManager usage - Magento_WebapiAsync (by @Bartlomiejsz)
+ * [magento/magento2#26959](https://github.com/magento/magento2/pull/26959) -- Correctly escape custom product image attributes (by @alexander-aleman)
+ * [magento/magento2#26506](https://github.com/magento/magento2/pull/26506) -- #26499 Always transliterate product url key (by @DanieliMi)
+ * [magento/magento2#25722](https://github.com/magento/magento2/pull/25722) -- Magento#25669: fixed issue "health_check.php fails if any database cache engine configured" (by @andrewbess)
+ * [magento/magento2#27284](https://github.com/magento/magento2/pull/27284) -- Fix static test failures for class annotaions (by @ihor-sviziev)
+ * [magento/magento2#27281](https://github.com/magento/magento2/pull/27281) -- TYPO: Fix annoying typo in Quantity word (by @lbajsarowicz)
+ * [magento/magento2#27277](https://github.com/magento/magento2/pull/27277) -- MFTF: Rename and rewrite Test that fake expired session (by @lbajsarowicz)
+ * [magento/magento2#27274](https://github.com/magento/magento2/pull/27274) -- MFTF: Create Account tests (Success & Failure) with `extend` (by @lbajsarowicz)
+ * [magento/magento2#27261](https://github.com/magento/magento2/pull/27261) -- 20472 added product list price modifier (by @sergiy-v)
+ * [magento/magento2#27249](https://github.com/magento/magento2/pull/27249) -- Update Frontend Development Workflow type's comment to be clearer (by @navarr)
+ * [magento/magento2#26784](https://github.com/magento/magento2/pull/26784) -- [Forward Port PR-14344] Fix generating product URL rewrites for anchor categories (by @hostep)
+ * [magento/magento2#26746](https://github.com/magento/magento2/pull/26746) -- In System/Export controlers use MessageManager instead of throwing exceptions (by @pmarki)
+ * [magento/magento2#26348](https://github.com/magento/magento2/pull/26348) -- Fixed #26345 Reorder in Admin panel leads to report page in case of changed product custom option max characters (by @cedmudit)
+ * [magento/magento2#27187](https://github.com/magento/magento2/pull/27187) -- 26117: "Current user does not have an active cart" even when he actually has one (by @engcom-Charlie)
+ * [magento/magento2#27170](https://github.com/magento/magento2/pull/27170) -- 26825 add all image roles for first product entity (by @sergiy-v)
+ * [magento/magento2#25733](https://github.com/magento/magento2/pull/25733) -- Resolve Mass Delete Widget should have "Confirmation Modal" (by @edenduong)
+ * [magento/magento2#27118](https://github.com/magento/magento2/pull/27118) -- FIX #27117 Invalid functional Test names (by @lbajsarowicz)
+ * [magento/magento2#27266](https://github.com/magento/magento2/pull/27266) -- MFTF: Enable Persistent Shopping Cart. Assert Options (by @DmitryTsymbal)
+ * [magento/magento2#27255](https://github.com/magento/magento2/pull/27255) -- MFTF: Replace fragile test `AdminLoginTest` with `AdminLoginSuccessfulTest` (by @lbajsarowicz)
+ * [magento/magento2#27165](https://github.com/magento/magento2/pull/27165) -- [feature] Display category filter item in layered navigation based on the system configuration from admin area (by @vasilii-b)
+ * [magento/magento2#27015](https://github.com/magento/magento2/pull/27015) -- MC-26683: Removed get errors of cart allowing to add product to cart (by @AleksLi)
+ * [magento/magento2#26987](https://github.com/magento/magento2/pull/26987) -- Remove unused requirejs alias defined (by @mrtuvn)
+ * [magento/magento2#26560](https://github.com/magento/magento2/pull/26560) -- #26473: Improved logic for product image updating for configurable products (by @sergiy-v)
+ * [magento/magento2#25297](https://github.com/magento/magento2/pull/25297) -- Add 'schedule status' column to admin indexer grid (by @fredden)
+ * [magento/magento2#24479](https://github.com/magento/magento2/pull/24479) -- 22251 admin order email is now required 1 (by @solwininfotech)
+ * [magento/magento2#27273](https://github.com/magento/magento2/pull/27273) -- MFTF: Test isolation, consistent naming (backwards-compatible) (by @lbajsarowicz)
+ * [magento/magento2#27237](https://github.com/magento/magento2/pull/27237) -- magento/magento2#26749: Saving CMS Page Title from REST web API makes content empty (by @engcom-Charlie)
+ * [magento/magento2#27215](https://github.com/magento/magento2/pull/27215) -- Cleanup ObjectManager usage - Magento_Translation (by @Bartlomiejsz)
+ * [magento/magento2#27191](https://github.com/magento/magento2/pull/27191) -- 26827 Added improvements to product attribute repository (save method) (by @sergiy-v)
+ * [magento/magento2#27125](https://github.com/magento/magento2/pull/27125) -- #27124: Update wishlist image logic to match logic on wishlist page (by @mtbottens)
+ * [magento/magento2#26015](https://github.com/magento/magento2/pull/26015) -- Remove media gallery assets metadata when a directory removed (by @rogyar)
+ * [magento/magento2#25734](https://github.com/magento/magento2/pull/25734) -- Experius 2.3 patch catalog flat (by @lewisvoncken)
+ * [magento/magento2#23191](https://github.com/magento/magento2/pull/23191) -- Refactor addlinks to own class take 3 (follows #21658) (by @amenk)
+ * [magento/magento2#27336](https://github.com/magento/magento2/pull/27336) -- fixed My account Address Book Additional Address Entries table issue #27335 (by @abrarpathan19)
+ * [magento/magento2#27304](https://github.com/magento/magento2/pull/27304) -- FIX #14080 Added improvements to Category repository (save method) (by @sergiy-v)
+ * [magento/magento2#27298](https://github.com/magento/magento2/pull/27298) -- Implement ActionInterface for `cms/page/view` (by @lbajsarowicz)
+ * [magento/magento2#27292](https://github.com/magento/magento2/pull/27292) -- Magento_Bundle / Remove `cache:flush` and extract Tests to separate files (by @lbajsarowicz)
+ * [magento/magento2#27263](https://github.com/magento/magento2/pull/27263) -- #26708 Fix: ORDER BY has two similar conditions in the SQL query (by @vasilii-b)
+ * [magento/magento2#27214](https://github.com/magento/magento2/pull/27214) -- Mark AbstractAccount as DEPRECATED for Magento_Customer controllers (by @lbajsarowicz)
+ * [magento/magento2#27116](https://github.com/magento/magento2/pull/27116) -- Add Italy States (by @WaPoNe)
+ * [magento/magento2#26748](https://github.com/magento/magento2/pull/26748) -- magento#26745 add method setAdditionalInformation to OrderPaymentInte (by @antoninobonumore)
+ * [magento/magento2#26923](https://github.com/magento/magento2/pull/26923) -- Improve dashboard charts - migrate to chart.js (by @Bartlomiejsz)
+ * [magento/magento2#27390](https://github.com/magento/magento2/pull/27390) -- magento/magento2: fixes PHPDocs for module Magento_reports (by @andrewbess)
+ * [magento/magento2#27375](https://github.com/magento/magento2/pull/27375) -- Updating link to Adobe CLA in contributing.md (by @filmaj)
+ * [magento/magento2#27353](https://github.com/magento/magento2/pull/27353) -- Add xml declaration for catalog_widget_product_list.xml file (by @Usik2203)
+ * [magento/magento2#27334](https://github.com/magento/magento2/pull/27334) -- MFTF: Customer Subscribes To Newsletter Subscription On StoreFront (by @DmitryTsymbal)
+ * [magento/magento2#27319](https://github.com/magento/magento2/pull/27319) -- Cleanup ObjectManager usage - Magento_Catalog ViewModel,Plugin (by @Bartlomiejsz)
+ * [magento/magento2#27307](https://github.com/magento/magento2/pull/27307) -- magento/magento2: Fixes for the schema cache.xsd (by @andrewbess)
+ * [magento/magento2#27276](https://github.com/magento/magento2/pull/27276) -- Add "Admin" prefix to Test and ActionGroup (by @lbajsarowicz)
+ * [magento/magento2#27000](https://github.com/magento/magento2/pull/27000) -- MFTF FIX: Remove Customer by e-mail does not filter by e-mail (by @lbajsarowicz)
+ * [magento/magento2#26538](https://github.com/magento/magento2/pull/26538) -- Refactor datetime class (by @Tjitse-E)
+ * [magento/magento2#25664](https://github.com/magento/magento2/pull/25664) -- magento/magento2#25540: Products are not displaying infront end after updating product via importing CSV. (by @p-bystritsky)
+ * [magento/magento2#22011](https://github.com/magento/magento2/pull/22011) -- magento/magento2#22010: Updates AbstractExtensibleObject and AbstractExtensibleModel annotations (by @atwixfirster)
+ * [magento/magento2#27378](https://github.com/magento/magento2/pull/27378) -- MFTF: Refactor `amOnPage` for Admin product edit page (by @lbajsarowicz)
+ * [magento/magento2#26055](https://github.com/magento/magento2/pull/26055) -- [Fixed] - HTML Validation issue Replace Attribute with data-* attribute (by @niravkrish)
+ * [magento/magento2#27412](https://github.com/magento/magento2/pull/27412) -- Added improvements to category url key validation logic (by @sergiy-v)
+ * [magento/magento2#27393](https://github.com/magento/magento2/pull/27393) -- Implement ActionInterface for /robots/index/index (by @Bartlomiejsz)
+ * [magento/magento2#27385](https://github.com/magento/magento2/pull/27385) -- Cleanup ObjectManager usage - Magento_SendFriend (by @Bartlomiejsz)
+ * [magento/magento2#27384](https://github.com/magento/magento2/pull/27384) -- Cleanup ObjectManager usage - Magento_Sitemap (by @Bartlomiejsz)
+ * [magento/magento2#27383](https://github.com/magento/magento2/pull/27383) -- #27370 Internet explorer issue:Default billing/shipping address not showing (by @vasilii-b)
+ * [magento/magento2#27381](https://github.com/magento/magento2/pull/27381) -- Implement ActionInterface for /captcha/refresh (by @lbajsarowicz)
+ * [magento/magento2#27360](https://github.com/magento/magento2/pull/27360) -- Move JS module initialization to separate tasks (by @krzksz)
+ * [magento/magento2#27088](https://github.com/magento/magento2/pull/27088) -- Fix Report date doesn't matching in configuration setting (by @Priya-V-Panchal)
+ * [magento/magento2#22837](https://github.com/magento/magento2/pull/22837) -- Short-term admin accounts #22833 (by @lfolco)
+ * [magento/magento2#26075](https://github.com/magento/magento2/pull/26075) -- Fix #6310 - Changing products 'this item has weight' using 'Update Attributes' is not possible (by @Bartlomiejsz)
+ * [magento/magento2#27388](https://github.com/magento/magento2/pull/27388) -- {ASI} :- Image size is not passed to image-uploader when inserting an image from new media gallery (by @konarshankar07)
+ * [magento/magento2#26999](https://github.com/magento/magento2/pull/26999) -- Fixed URL Rewrite addition/removal on product website add/remove (by @gwharton)
+ * [magento/magento2#27371](https://github.com/magento/magento2/pull/27371) -- [Admin] Do not allow HTML tags for the Product Attribute labels on save (by @vasilii-b)
+ * [magento/magento2#27509](https://github.com/magento/magento2/pull/27509) -- [MFTF] fixed test `AdminLoginWithRestrictPermissionTest` (by @engcom-Charlie)
+ * [magento/magento2#27462](https://github.com/magento/magento2/pull/27462) -- Implement ActionInterface for /search/term/popular (by @Bartlomiejsz)
+ * [magento/magento2#27427](https://github.com/magento/magento2/pull/27427) -- Implement ActionInterface for /swagger/ (by @lbajsarowicz)
+ * [magento/magento2#27425](https://github.com/magento/magento2/pull/27425) -- Implement ActionInterface for /version/ (by @lbajsarowicz)
+ * [magento/magento2#27413](https://github.com/magento/magento2/pull/27413) -- Add follow symlinks to support linked folders (by @Nazar65)
+ * [magento/magento2#27365](https://github.com/magento/magento2/pull/27365) -- Fix issue 16315: Product save with onthefly index ignores website assignments (by @tna274)
+ * [magento/magento2#27257](https://github.com/magento/magento2/pull/27257) -- Save Asynchronous Operations with one Batch improvement (by @nuzil)
+ * [magento/magento2#26763](https://github.com/magento/magento2/pull/26763) -- fix: prevent undefined index error - closes #26762 (by @DanielRuf)
+ * [magento/magento2#26736](https://github.com/magento/magento2/pull/26736) -- {ASI} : SortBy component added (by @konarshankar07)
+ * [magento/magento2#26618](https://github.com/magento/magento2/pull/26618) -- Correct docblock CartTotalRepository get method (by @mrtuvn)
+ * [magento/magento2#26417](https://github.com/magento/magento2/pull/26417) -- translate.js Not shows empty values (by @ilnytskyi)
+ * [magento/magento2#27493](https://github.com/magento/magento2/pull/27493) -- Fix the minicart items actions alignment for tablet and desktop devices (by @vasilii-b)
+ * [magento/magento2#27492](https://github.com/magento/magento2/pull/27492) -- Fixed tests for Magento\Framework\Stdlib\DateTime\DateTime (by @andrewbess)
+ * [magento/magento2#27399](https://github.com/magento/magento2/pull/27399) -- Fixed the wrong behavior for a prompt modal when a user clicks on the modal overlay (by @serhiyzhovnir)
+ * [magento/magento2#26397](https://github.com/magento/magento2/pull/26397) -- Cleanup ObjectManager usage - Magento_Bundle (by @Bartlomiejsz)
+ * [magento/magento2#26100](https://github.com/magento/magento2/pull/26100) -- Fixed 24990: link doesn't redirect to dashboard (by @Usik2203)
+ * [magento/magento2#27545](https://github.com/magento/magento2/pull/27545) -- Fix XML Schema Location (by @sprankhub)
+ * [magento/magento2#27544](https://github.com/magento/magento2/pull/27544) -- Fix incorrect alignment element in login container theme blank (by @mrtuvn)
+ * [magento/magento2#27526](https://github.com/magento/magento2/pull/27526) -- [MFTF] using StorefrontOpenHomePageActionGroup for navigation to Home Page (by @Usik2203)
+ * [magento/magento2#27521](https://github.com/magento/magento2/pull/27521) -- PhpUnit 8 Migration - AdminNotification (by @ihor-sviziev)
+ * [magento/magento2#27497](https://github.com/magento/magento2/pull/27497) -- [bugfix] The store logo is missing when using the Magento_blank theme (by @vasilii-b)
+ * [magento/magento2#27495](https://github.com/magento/magento2/pull/27495) -- Make the header switcher styles more flexible (by @vasilii-b)
+ * [magento/magento2#27463](https://github.com/magento/magento2/pull/27463) -- Implement ActionInterface for /checkout/sidebar/removeItem (by @Bartlomiejsz)
+ * [magento/magento2#27295](https://github.com/magento/magento2/pull/27295) -- Fix the error that is wrong link title of a downloadable product when enabling "Use Default Value" (by @tna274)
+ * [magento/magento2#26900](https://github.com/magento/magento2/pull/26900) -- Removed references to '%context%' (dead code) (by @markshust)
+ * [magento/magento2#26801](https://github.com/magento/magento2/pull/26801) -- Prevent resizing an image if it was already resized before (by @hostep)
+ * [magento/magento2#27519](https://github.com/magento/magento2/pull/27519) -- PhpUnit 8 Migration - Framework & AdminAnalytics (by @ihor-sviziev)
+ * [magento/magento2#27322](https://github.com/magento/magento2/pull/27322) -- MFTF: Add ` Shipment -> View (fixed in [magento/magento2#22687](https://github.com/magento/magento2/pull/22687))
+ * [#22767](https://github.com/magento/magento2/issues/22767) -- Not clear logic for loading CMS Pages with setStoreId function (fixed in [magento/magento2#22772](https://github.com/magento/magento2/pull/22772))
+ * [#20788](https://github.com/magento/magento2/issues/20788) -- Listing page no equal spacing in product in list view (fixed in [magento/magento2#22931](https://github.com/magento/magento2/pull/22931))
+ * [#23030](https://github.com/magento/magento2/issues/23030) -- Magento2 Swatch change Image does not slide to first Image (fixed in [magento/magento2#23033](https://github.com/magento/magento2/pull/23033))
+ * [#23034](https://github.com/magento/magento2/issues/23034) -- Wrong behaviour of validation scroll (fixed in [magento/magento2#23035](https://github.com/magento/magento2/pull/23035))
+ * [#12696](https://github.com/magento/magento2/issues/12696) -- Integration tests create stub modules in app/code (fixed in [magento/magento2#18459](https://github.com/magento/magento2/pull/18459))
+ * [#13266](https://github.com/magento/magento2/issues/13266) -- Topmenu 'last' class not being set if the a parent is inactive (fixed in [magento/magento2#22071](https://github.com/magento/magento2/pull/22071))
+ * [#22882](https://github.com/magento/magento2/issues/22882) -- Static content deploy - Don't shows error message, just stack trace (fixed in [magento/magento2#22884](https://github.com/magento/magento2/pull/22884))
+ * [#23045](https://github.com/magento/magento2/issues/23045) -- Exceptions from data patches do not show root cause (fixed in [magento/magento2#23046](https://github.com/magento/magento2/pull/23046))
+ * [#16446](https://github.com/magento/magento2/issues/16446) -- magento 2.2.2 text swatch switches product image even if attribute feature is disabled (fixed in [magento/magento2#19184](https://github.com/magento/magento2/pull/19184))
+ * [#14492](https://github.com/magento/magento2/issues/14492) -- Creating Customer without password is directly confirmed (fixed in [magento/magento2#21394](https://github.com/magento/magento2/pull/21394))
+ * [#21671](https://github.com/magento/magento2/issues/21671) -- Database Media Storage - Transaction emails logo not used when pub/media cleared (fixed in [magento/magento2#21674](https://github.com/magento/magento2/pull/21674))
+ * [#22425](https://github.com/magento/magento2/issues/22425) -- wrong url redirect when edit product review from Customer view page (fixed in [magento/magento2#22426](https://github.com/magento/magento2/pull/22426))
+ * [#22511](https://github.com/magento/magento2/issues/22511) -- Special From Date set to today's date when Use Default Date checked in Store scope (fixed in [magento/magento2#22521](https://github.com/magento/magento2/pull/22521))
+ * [#23080](https://github.com/magento/magento2/issues/23080) -- Missing whitespace in mobile navigation for non-English websites (fixed in [magento/magento2#23081](https://github.com/magento/magento2/pull/23081))
+ * [#19872](https://github.com/magento/magento2/issues/19872) -- Magento 2.3 category edit page "Select from gallery" button not working. (fixed in [magento/magento2#21131](https://github.com/magento/magento2/pull/21131))
+ * [#22092](https://github.com/magento/magento2/issues/22092) -- Assigning Catalog Image from Gallery, then Saving Twice, Clears Image (fixed in [magento/magento2#21131](https://github.com/magento/magento2/pull/21131))
+ * [#22087](https://github.com/magento/magento2/issues/22087) -- Products Ordered Report - Not grouped by product (fixed in [magento/magento2#22646](https://github.com/magento/magento2/pull/22646))
+ * [#21546](https://github.com/magento/magento2/issues/21546) -- [2.3] Database Media Storage - New Product Images fail to be processed correctly (fixed in [magento/magento2#21605](https://github.com/magento/magento2/pull/21605))
+ * [#21604](https://github.com/magento/magento2/issues/21604) -- Database Media Storage - Admin Product Edit page does not handle product images correctly in database storage mode (fixed in [magento/magento2#21605](https://github.com/magento/magento2/pull/21605))
+ * [#4247](https://github.com/magento/magento2/issues/4247) -- getProductUrl does not allow to override the scope in backend context (fixed in [magento/magento2#21876](https://github.com/magento/magento2/pull/21876))
+ * [#22940](https://github.com/magento/magento2/issues/22940) -- Reset feature does not clear the date (fixed in [magento/magento2#23007](https://github.com/magento/magento2/pull/23007))
+ * [#23053](https://github.com/magento/magento2/issues/23053) -- Sendfriend works for products with visibility not visible individually (fixed in [magento/magento2#23118](https://github.com/magento/magento2/pull/23118))
+ * [#675](https://github.com/magento/magento2/issues/675) -- Textarea element cols and rows (fixed in [magento/graphql-ce#677](https://github.com/magento/graphql-ce/pull/677))
+ * [#682](https://github.com/magento/magento2/issues/682) -- \Magento\Framework\Pricing\PriceCurrencyInterface depends on Magento application code (fixed in [magento/graphql-ce#700](https://github.com/magento/graphql-ce/pull/700))
+ * [#681](https://github.com/magento/magento2/issues/681) -- Magento\Framework\Xml\Parser class issues (fixed in [magento/graphql-ce#711](https://github.com/magento/graphql-ce/pull/711))
+ * [#22484](https://github.com/magento/magento2/issues/22484) -- Customer address States are duplicated in backend (fixed in [magento/magento2#22637](https://github.com/magento/magento2/pull/22637))
+ * [#23138](https://github.com/magento/magento2/issues/23138) -- Magento_Theme. Incorrect configuration file location (fixed in [magento/magento2#23140](https://github.com/magento/magento2/pull/23140))
+ * [#22004](https://github.com/magento/magento2/issues/22004) -- ce231 - can't update attribute for all product (fixed in [magento/magento2#22704](https://github.com/magento/magento2/pull/22704))
+ * [#22870](https://github.com/magento/magento2/issues/22870) -- ProductRepository fails to update an existing product with a changed SKU (fixed in [magento/magento2#22933](https://github.com/magento/magento2/pull/22933))
+ * [#22808](https://github.com/magento/magento2/issues/22808) -- php bin/magento catalog:image:resize error if image is missing (fixed in [magento/magento2#23005](https://github.com/magento/magento2/pull/23005))
+ * [#674](https://github.com/magento/magento2/issues/674) -- Widgets in content pages. (fixed in [magento/graphql-ce#709](https://github.com/magento/graphql-ce/pull/709))
+ * [#683](https://github.com/magento/magento2/issues/683) -- CMS Router not routing correctly (fixed in [magento/graphql-ce#717](https://github.com/magento/graphql-ce/pull/717))
+ * [#9113](https://github.com/magento/magento2/issues/9113) -- [Bug or Feature?] url_path attribute value is not populated for any product (fixed in [magento/graphql-ce#721](https://github.com/magento/graphql-ce/pull/721))
+ * [#18337](https://github.com/magento/magento2/issues/18337) -- #search input is missing required attribute aria-expanded. (fixed in [magento/magento2#22942](https://github.com/magento/magento2/pull/22942))
+ * [#23213](https://github.com/magento/magento2/issues/23213) -- Static content deploy showing percentage(%) two times in progress bar (fixed in [magento/magento2#23216](https://github.com/magento/magento2/pull/23216))
+ * [#23238](https://github.com/magento/magento2/issues/23238) -- Apply coupon button act like remove coupon while create new order from admin (fixed in [magento/magento2#23250](https://github.com/magento/magento2/pull/23250))
+ * [#4788](https://github.com/magento/magento2/issues/4788) -- Wrong sitemap product url (fixed in [magento/magento2#23129](https://github.com/magento/magento2/pull/23129))
+ * [#22934](https://github.com/magento/magento2/issues/22934) -- Incorrect work of "Use Categories Path for Product URLs" in sitemap generation. (fixed in [magento/magento2#23129](https://github.com/magento/magento2/pull/23129))
+ * [#23266](https://github.com/magento/magento2/issues/23266) -- Cannot filter admin user by ID (fixed in [magento/magento2#23267](https://github.com/magento/magento2/pull/23267))
+ * [#23285](https://github.com/magento/magento2/issues/23285) -- Credit memo submit button(refund) stays disable after validation fails & unable to enable button (fixed in [magento/magento2#23286](https://github.com/magento/magento2/pull/23286))
+ * [#486](https://github.com/magento/magento2/issues/486) -- Take inspiration from other frameworks (fixed in [magento/graphql-ce#714](https://github.com/magento/graphql-ce/pull/714))
+ * [#716](https://github.com/magento/magento2/issues/716) -- Wrong mimetype returned by getMimeType from Magento library (fixed in [magento/graphql-ce#723](https://github.com/magento/graphql-ce/pull/723))
+ * [#687](https://github.com/magento/magento2/issues/687) -- Improvement Idea: /var/cache/mage--X (fixed in [magento/graphql-ce#749](https://github.com/magento/graphql-ce/pull/749))
+ * [#20038](https://github.com/magento/magento2/issues/20038) -- loading icon disappearing before background process completes for braintree payment (Admin order) (fixed in [magento/magento2#22675](https://github.com/magento/magento2/pull/22675))
+ * [#23074](https://github.com/magento/magento2/issues/23074) -- Magento 2.3.1 - URL rewrite rules are not creating for product after update url key (fixed in [magento/magento2#23309](https://github.com/magento/magento2/pull/23309))
+ * [#622](https://github.com/magento/magento2/issues/622) -- FIX Magento Search Please! (fixed in [magento/graphql-ce#626](https://github.com/magento/graphql-ce/pull/626))
+ * [#732](https://github.com/magento/magento2/issues/732) -- Inconsistency between Select and Multiselect form elements. (fixed in [magento/graphql-ce#734](https://github.com/magento/graphql-ce/pull/734))
+ * [#13227](https://github.com/magento/magento2/issues/13227) -- Knockout Recently Viewed contains wrong product url (with category path), also not correct url on product view page (fixed in [magento/magento2#22650](https://github.com/magento/magento2/pull/22650))
+ * [#22638](https://github.com/magento/magento2/issues/22638) -- Asterisk(*) sign position does not consistent in admin (fixed in [magento/magento2#22800](https://github.com/magento/magento2/pull/22800))
+ * [#22266](https://github.com/magento/magento2/issues/22266) -- Product Alert after login shows 404 page (fixed in [magento/magento2#23218](https://github.com/magento/magento2/pull/23218))
+ * [#23230](https://github.com/magento/magento2/issues/23230) -- Sticky header floating under top when there is no buttons in the toolbar (fixed in [magento/magento2#23247](https://github.com/magento/magento2/pull/23247))
+ * [#23333](https://github.com/magento/magento2/issues/23333) -- Incorrect payment method translation in order emails (fixed in [magento/magento2#23338](https://github.com/magento/magento2/pull/23338))
+ * [#23346](https://github.com/magento/magento2/issues/23346) -- 'Test Connection' button is over-spanned (fixed in [magento/magento2#23367](https://github.com/magento/magento2/pull/23367))
+ * [#21380](https://github.com/magento/magento2/issues/21380) -- Cron schedule is being duplicated (fixed in [magento/magento2#23312](https://github.com/magento/magento2/pull/23312))
+ * [#21136](https://github.com/magento/magento2/issues/21136) -- Magento installation via metapackage: checkExtensions fails (fixed in [magento/magento2#22116](https://github.com/magento/magento2/pull/22116))
+ * [#23233](https://github.com/magento/magento2/issues/23233) -- Alert widget doesn't trigger always method on showing the message (fixed in [magento/magento2#23234](https://github.com/magento/magento2/pull/23234))
+ * [#21974](https://github.com/magento/magento2/issues/21974) -- Changes for PayPal affect core config fields with tooltip (fixed in [magento/magento2#23393](https://github.com/magento/magento2/pull/23393))
+ * [#23377](https://github.com/magento/magento2/issues/23377) -- Mini cart loader not working first time magento2 (fixed in [magento/magento2#23394](https://github.com/magento/magento2/pull/23394))
+ * [#22998](https://github.com/magento/magento2/issues/22998) -- POST on /orders fails when properties in the body are out of sequence (fixed in [magento/magento2#23048](https://github.com/magento/magento2/pull/23048))
+ * [#23522](https://github.com/magento/magento2/issues/23522) -- UPS shipping booking and label generation gives error when shipper's street given more than 35 chars (fixed in [magento/magento2#23523](https://github.com/magento/magento2/pull/23523))
+ * [#8298](https://github.com/magento/magento2/issues/8298) -- Mobile Menu Behavior at Incorrect Breakpoint (fixed in [magento/magento2#23528](https://github.com/magento/magento2/pull/23528))
+ * [#22103](https://github.com/magento/magento2/issues/22103) -- Character Encoding in Plain Text Emails Fails since 2.2.8/2.3.0 due to emails no longer being sent as MIME (fixed in [magento/magento2#23535](https://github.com/magento/magento2/pull/23535))
+ * [#23199](https://github.com/magento/magento2/issues/23199) -- NO sender in email header for magento 2 sales order and password change emails to customer (fixed in [magento/magento2#23535](https://github.com/magento/magento2/pull/23535))
+ * [#23538](https://github.com/magento/magento2/issues/23538) -- wrong validation happen for max-words validation class (fixed in [magento/magento2#23541](https://github.com/magento/magento2/pull/23541))
+ * [#21126](https://github.com/magento/magento2/issues/21126) -- Backend Import behavior design break (fixed in [magento/magento2#21128](https://github.com/magento/magento2/pull/21128))
+ * [#23471](https://github.com/magento/magento2/issues/23471) -- Tooltip missing at store view lable in Cms page and Cms block (fixed in [magento/magento2#23474](https://github.com/magento/magento2/pull/23474))
+ * [#23466](https://github.com/magento/magento2/issues/23466) -- Cart empty after update qty with -1 and change address. (fixed in [magento/magento2#23477](https://github.com/magento/magento2/pull/23477))
+ * [#23467](https://github.com/magento/magento2/issues/23467) -- Phone and Zip not update if customer have no saved address (fixed in [magento/magento2#23494](https://github.com/magento/magento2/pull/23494))
+ * [#23222](https://github.com/magento/magento2/issues/23222) -- setup:upgrade should return failure when app:config:import failed (fixed in [magento/magento2#23310](https://github.com/magento/magento2/pull/23310))
+ * [#23354](https://github.com/magento/magento2/issues/23354) -- Data saving problem error showing when leave blank qty and update it (fixed in [magento/magento2#23360](https://github.com/magento/magento2/pull/23360))
+ * [#23424](https://github.com/magento/magento2/issues/23424) -- Search by keyword didn't work properly with "0" value (fixed in [magento/magento2#23427](https://github.com/magento/magento2/pull/23427))
+ * [#16234](https://github.com/magento/magento2/issues/16234) -- Unable to enter `+` character in widget content (fixed in [magento/magento2#23496](https://github.com/magento/magento2/pull/23496))
+ * [#9798](https://github.com/magento/magento2/issues/9798) -- Problem adding attribute options to configurable product via REST Api (fixed in [magento/magento2#23529](https://github.com/magento/magento2/pull/23529))
+ * [#6287](https://github.com/magento/magento2/issues/6287) -- Customer Admin Shopping Cart View Missing (fixed in [magento/magento2#20918](https://github.com/magento/magento2/pull/20918))
+ * [#22545](https://github.com/magento/magento2/issues/22545) -- Status downloadable product stays pending after succesfull payment (fixed in [magento/magento2#22658](https://github.com/magento/magento2/pull/22658))
+ * [#23383](https://github.com/magento/magento2/issues/23383) -- Products which are not assigned to any store are automatically being force-assigned a store ID after being saved (fixed in [magento/magento2#23500](https://github.com/magento/magento2/pull/23500))
+ * [#22950](https://github.com/magento/magento2/issues/22950) -- Spacing issue for Gift message section in my account (fixed in [magento/magento2#23226](https://github.com/magento/magento2/pull/23226))
+ * [#23606](https://github.com/magento/magento2/issues/23606) -- Default value for report filters might result in errors (fixed in [magento/magento2#23607](https://github.com/magento/magento2/pull/23607))
+ * [#736](https://github.com/magento/magento2/issues/736) -- Access to Zend Framework classes (fixed in [magento/graphql-ce#747](https://github.com/magento/graphql-ce/pull/747))
+ * [#739](https://github.com/magento/magento2/issues/739) -- Command line install script no longer exists. (fixed in [magento/graphql-ce#753](https://github.com/magento/graphql-ce/pull/753))
+ * [#23435](https://github.com/magento/magento2/issues/23435) -- Catalog Products Filter in 2.3.2 (fixed in [magento/magento2#23444](https://github.com/magento/magento2/pull/23444))
+ * [#12817](https://github.com/magento/magento2/issues/12817) -- Coupon code with canceled order (fixed in [magento/magento2#20579](https://github.com/magento/magento2/pull/20579))
+ * [#23386](https://github.com/magento/magento2/issues/23386) -- Copy Service does not works properly for Entities which extends Data Object and implements ExtensibleDataInterface (fixed in [magento/magento2#23387](https://github.com/magento/magento2/pull/23387))
+ * [#23345](https://github.com/magento/magento2/issues/23345) -- Creditmemo getOrder() method loads order incorrectly (fixed in [magento/magento2#23358](https://github.com/magento/magento2/pull/23358))
+ * [#22814](https://github.com/magento/magento2/issues/22814) -- Product stock alert - unsubscribe not working (fixed in [magento/magento2#23459](https://github.com/magento/magento2/pull/23459))
+ * [#23594](https://github.com/magento/magento2/issues/23594) -- Database Media Storage : php bin/magento catalog:images:resize fails when image does not exist locally (fixed in [magento/magento2#23598](https://github.com/magento/magento2/pull/23598))
+ * [#23595](https://github.com/magento/magento2/issues/23595) -- Database Media Storage : php bin/magento catalog:images:resize fails to generate cached images in database (fixed in [magento/magento2#23598](https://github.com/magento/magento2/pull/23598))
+ * [#23596](https://github.com/magento/magento2/issues/23596) -- Database Media Storage : Add new product image, cached images not generated (fixed in [magento/magento2#23598](https://github.com/magento/magento2/pull/23598))
+ * [#23643](https://github.com/magento/magento2/issues/23643) -- Mime parts of email are no more encoded with quoted printable (fixed in [magento/magento2#23649](https://github.com/magento/magento2/pull/23649))
+ * [#23597](https://github.com/magento/magento2/issues/23597) -- Database Media Storage : Difficulty changing mode to database media storage due to poor "Use Default Value" checkbox behaviour (fixed in [magento/magento2#23710](https://github.com/magento/magento2/pull/23710))
+ * [#23510](https://github.com/magento/magento2/issues/23510) -- Product customizable options of Area type render issue in Dashboard (fixed in [magento/magento2#23524](https://github.com/magento/magento2/pull/23524))
+ * [#22890](https://github.com/magento/magento2/issues/22890) -- Disabled config can be overwritten via admin (fixed in [magento/magento2#22891](https://github.com/magento/magento2/pull/22891))
+ * [#23054](https://github.com/magento/magento2/issues/23054) -- Cron job not running after crashed once (fixed in [magento/magento2#23125](https://github.com/magento/magento2/pull/23125))
+ * [#23135](https://github.com/magento/magento2/issues/23135) -- Insert Variable popup missing template variables for new templates (fixed in [magento/magento2#23173](https://github.com/magento/magento2/pull/23173))
+ * [#23211](https://github.com/magento/magento2/issues/23211) -- Zero Subtotal Checkout erroneously says the default value for "Automatically Invoice All Items" is "Yes" (fixed in [magento/magento2#23688](https://github.com/magento/magento2/pull/23688))
+ * [#23624](https://github.com/magento/magento2/issues/23624) -- [Authorize.net accept.js] "Place Order" button not being disabled (fixed in [magento/magento2#23718](https://github.com/magento/magento2/pull/23718))
+ * [#23717](https://github.com/magento/magento2/issues/23717) -- dependency injection fails for \Magento\ConfigurableProduct\Pricing\Price\PriceResolverInterface (fixed in [magento/magento2#23753](https://github.com/magento/magento2/pull/23753))
+ * [#758](https://github.com/magento/magento2/issues/758) -- Coding standards: arrays (fixed in [magento/graphql-ce#759](https://github.com/magento/graphql-ce/pull/759))
+ * [#14071](https://github.com/magento/magento2/issues/14071) -- Not able to change a position of last two related products in case of I've 20+ related products. (fixed in [magento/magento2#22984](https://github.com/magento/magento2/pull/22984))
+ * [#22112](https://github.com/magento/magento2/issues/22112) -- Shipping address information is lost in billing step (fixed in [magento/magento2#23656](https://github.com/magento/magento2/pull/23656))
+ * [#23654](https://github.com/magento/magento2/issues/23654) -- Frontend Label For Custom Order Status not Editable in Magento Admin in Single Store Mode (fixed in [magento/magento2#23681](https://github.com/magento/magento2/pull/23681))
+ * [#23751](https://github.com/magento/magento2/issues/23751) -- Database Media Storage : PDF Logo file not database aware (fixed in [magento/magento2#23752](https://github.com/magento/magento2/pull/23752))
+ * [#23678](https://github.com/magento/magento2/issues/23678) -- Can't see "Zero Subtotal Checkout" payment method settings if "Offline Payments" module is disabled (fixed in [magento/magento2#23679](https://github.com/magento/magento2/pull/23679))
+ * [#23777](https://github.com/magento/magento2/issues/23777) -- "Discount Amount" field is validated after the page load without any action from user in Create New Catalog Rule form (fixed in [magento/magento2#23779](https://github.com/magento/magento2/pull/23779))
+ * [#23789](https://github.com/magento/magento2/issues/23789) -- CommentLevelsSniff works incorrect with @magento_import statement. (fixed in [magento/magento2#23790](https://github.com/magento/magento2/pull/23790))
+ * [#22702](https://github.com/magento/magento2/issues/22702) -- Toggle icon not working in create configuration Product creation Page (fixed in [magento/magento2#23803](https://github.com/magento/magento2/pull/23803))
+ * [#167](https://github.com/magento/magento2/issues/167) -- Fatal error: Class 'Mage' not found (fixed in [magento/graphql-ce#351](https://github.com/magento/graphql-ce/pull/351))
+ * [#438](https://github.com/magento/magento2/issues/438) -- [Feature request] Price slider (fixed in [magento/graphql-ce#699](https://github.com/magento/graphql-ce/pull/699))
+ * [#702](https://github.com/magento/magento2/issues/702) -- Base table or view not found (fixed in [magento/graphql-ce#779](https://github.com/magento/graphql-ce/pull/779))
+ * [#738](https://github.com/magento/magento2/issues/738) -- pub/setup missing in 0.1.0-alpha103 (fixed in [magento/graphql-ce#789](https://github.com/magento/graphql-ce/pull/789))
+ * [#23405](https://github.com/magento/magento2/issues/23405) -- 2.3.2 installed and bin/magento setup:upgrade not working (fixed in [magento/magento2#23866](https://github.com/magento/magento2/pull/23866))
+ * [#23900](https://github.com/magento/magento2/issues/23900) -- Report->Product->Downloads has wrong ACL (fixed in [magento/magento2#23901](https://github.com/magento/magento2/pull/23901))
+ * [#23904](https://github.com/magento/magento2/issues/23904) -- No auto-focus after validation at "Create Configurations" button => User can not see the error message (fixed in [magento/magento2#23905](https://github.com/magento/magento2/pull/23905))
+ * [#23916](https://github.com/magento/magento2/issues/23916) -- Missing Validation at some Payment Method Settings (fixed in [magento/magento2#23917](https://github.com/magento/magento2/pull/23917))
+ * [#23932](https://github.com/magento/magento2/issues/23932) -- Decimal quantity is not displayed for wishlist items. (fixed in [magento/magento2#23933](https://github.com/magento/magento2/pull/23933))
+* GitHub pull requests:
+ * [magento/magento2#20135](https://github.com/magento/magento2/pull/20135) -- issue fixed #20124 Sort By label is hidden by Shop By Menu on listing (by @cedarvinda)
+ * [magento/magento2#22020](https://github.com/magento/magento2/pull/22020) -- Non existing file, when adding image to gallery with move option. Fix for #21978 (by @dudzio12)
+ * [magento/magento2#22260](https://github.com/magento/magento2/pull/22260) -- Disabling "Display on Product Details Page" the button is shown anyway. (by @Nazar65)
+ * [magento/magento2#22287](https://github.com/magento/magento2/pull/22287) -- #222249 configurable product images wrong sorting fix (by @Wirson)
+ * [magento/magento2#22526](https://github.com/magento/magento2/pull/22526) -- code cleanup (http to https) (by @ravi-chandra3197)
+ * [magento/magento2#22532](https://github.com/magento/magento2/pull/22532) -- fixed issue 22527 wishlist and compare icon alignment (by @sanjaychouhan-webkul)
+ * [magento/magento2#22423](https://github.com/magento/magento2/pull/22423) -- Store view specific labels cut in left navigation menu #22406 (by @sudhanshu-bajaj)
+ * [magento/magento2#22561](https://github.com/magento/magento2/pull/22561) -- [Catalog|Eav] Revert change of PR magento/magento2#13302 not included into revert commit (by @Den4ik)
+ * [magento/magento2#22569](https://github.com/magento/magento2/pull/22569) -- 2.3 develop pr1 (by @abhinay111222)
+ * [magento/magento2#22594](https://github.com/magento/magento2/pull/22594) -- Fixed typo issue (by @AfreenScarlet)
+ * [magento/magento2#22599](https://github.com/magento/magento2/pull/22599) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22621](https://github.com/magento/magento2/pull/22621) -- Resolved Typo (by @UdgamN)
+ * [magento/magento2#19767](https://github.com/magento/magento2/pull/19767) -- Prevent display of token when save for later is not selected (by @pmclain)
+ * [magento/magento2#21744](https://github.com/magento/magento2/pull/21744) -- Custom option type select - Allow modify list of single selection option types (by @ihor-sviziev)
+ * [magento/magento2#21992](https://github.com/magento/magento2/pull/21992) -- #21473: Form element validation is not triggered when validation rules... (by @kisroman)
+ * [magento/magento2#22493](https://github.com/magento/magento2/pull/22493) -- Update credit-card-number-validator.js (by @justin-at-bounteous)
+ * [magento/magento2#22643](https://github.com/magento/magento2/pull/22643) -- Fixed typo issue and added missing header in customer sales order grid (by @vishal-7037)
+ * [magento/magento2#22656](https://github.com/magento/magento2/pull/22656) -- issues #22647 fixed, In customer account create page word not readable, should use '-' after break to new line In mobile view (by @cedarvinda)
+ * [magento/magento2#22720](https://github.com/magento/magento2/pull/22720) -- Fixed:#22395 (by @satyaprakashpatel)
+ * [magento/magento2#22558](https://github.com/magento/magento2/pull/22558) -- Additional condition in getRegion() method (by @Leone)
+ * [magento/magento2#22560](https://github.com/magento/magento2/pull/22560) -- Fix undefined methods 'addClass' and `removeClass` on a PrototypeJS Element (by @markvds)
+ * [magento/magento2#22606](https://github.com/magento/magento2/pull/22606) -- Fix Exception While Creating an Order in the Admin (by @justin-at-bounteous)
+ * [magento/magento2#22628](https://github.com/magento/magento2/pull/22628) -- Add a missting colon in the pdf page. (by @Hailong)
+ * [magento/magento2#22644](https://github.com/magento/magento2/pull/22644) -- Issue fixed #22636 arrow toggle not changing only showing to down It should be toggle as every where is working (by @cedarvinda)
+ * [magento/magento2#22664](https://github.com/magento/magento2/pull/22664) -- Fixed Typo Error (by @LuciferStrome)
+ * [magento/magento2#22729](https://github.com/magento/magento2/pull/22729) -- Fixed Typo Issue (by @jitendra-cedcoss)
+ * [magento/magento2#22734](https://github.com/magento/magento2/pull/22734) -- Ignores allure-results in git. (by @hostep)
+ * [magento/magento2#22758](https://github.com/magento/magento2/pull/22758) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22798](https://github.com/magento/magento2/pull/22798) -- Disable Travis builds - 2.3-develop (by @okorshenko)
+ * [magento/magento2#22126](https://github.com/magento/magento2/pull/22126) -- Remove unnecessary form on order success page (by @danielgoodwin97)
+ * [magento/magento2#22655](https://github.com/magento/magento2/pull/22655) -- Fixed Issue #22640 (by @Surabhi-Cedcoss)
+ * [magento/magento2#22657](https://github.com/magento/magento2/pull/22657) -- 404 not found form validation url when updating quantity in cart page (by @gulshanchitransh)
+ * [magento/magento2#22739](https://github.com/magento/magento2/pull/22739) -- Revert "Magento backend catalog cost without currency symbol" as Cost... (by @orlangur)
+ * [magento/magento2#22779](https://github.com/magento/magento2/pull/22779) -- #22771 Remove hardcoded height for admin textarea (by @serhiyzhovnir)
+ * [magento/magento2#22791](https://github.com/magento/magento2/pull/22791) -- Fixed issue #22788 (by @gauravagarwal1001)
+ * [magento/magento2#19584](https://github.com/magento/magento2/pull/19584) -- Tierprice can t save float percentage value 18651 (by @novikor)
+ * [magento/magento2#21675](https://github.com/magento/magento2/pull/21675) -- [2.3] Database Media Storage - Design Config Save functions to be Database Media Storage aware (by @gwharton)
+ * [magento/magento2#21917](https://github.com/magento/magento2/pull/21917) -- Prevent duplicate variation error during import of configurable products with numerical SKUs (by @alexander-aleman)
+ * [magento/magento2#22463](https://github.com/magento/magento2/pull/22463) -- Set timezone on DateTime object not in constructor (by @NathMorgan)
+ * [magento/magento2#22575](https://github.com/magento/magento2/pull/22575) -- Fix for update products via csv file (fix for 22028) (by @mtwegrzycki)
+ * [magento/magento2#22794](https://github.com/magento/magento2/pull/22794) -- fixed issue #21558 - Navigation issue of review from product listing (by @sanjaychouhan-webkul)
+ * [magento/magento2#22844](https://github.com/magento/magento2/pull/22844) -- Allow to specify a field to be checked in the response (by @diazwatson)
+ * [magento/magento2#22186](https://github.com/magento/magento2/pull/22186) -- 22127: check that products is set (by @davidverholen)
+ * [magento/magento2#22418](https://github.com/magento/magento2/pull/22418) -- Patch the prototype pollution vulnerability in jQuery < 3.4.0 (CVE-2019-11358) (by @DanielRuf)
+ * [magento/magento2#22724](https://github.com/magento/magento2/pull/22724) -- Fixed issue #22639: Without select attribute click on add attribute it display all selected when add attribute again. (by @maheshWebkul721)
+ * [magento/magento2#22742](https://github.com/magento/magento2/pull/22742) -- issue #22676 fixed - Compare Products counter, and My Wish List count... (by @sanjaychouhan-webkul)
+ * [magento/magento2#22850](https://github.com/magento/magento2/pull/22850) -- only show customer account sections if payment method is active (by @torhoehn)
+ * [magento/magento2#22854](https://github.com/magento/magento2/pull/22854) -- fix #4628 font-face mixin add fromat option (by @Karlasa)
+ * [magento/magento2#22868](https://github.com/magento/magento2/pull/22868) -- fix date calculation for report's years interval (by @polkan-msk)
+ * [magento/magento2#21397](https://github.com/magento/magento2/pull/21397) -- Fixed Validation messages missing from datepicker form elements (by @ravi-chandra3197)
+ * [magento/magento2#22694](https://github.com/magento/magento2/pull/22694) -- Fixed Issue #20234 (by @surbhi-ranosys)
+ * [magento/magento2#22787](https://github.com/magento/magento2/pull/22787) -- #22786 Add dependency for UPS required fields to avoid validation for these fields if UPS Shipping is not active (by @serhiyzhovnir)
+ * [magento/magento2#22823](https://github.com/magento/magento2/pull/22823) -- [Shipping] Adjusting the Contact Us Xpath (by @eduard13)
+ * [magento/magento2#22830](https://github.com/magento/magento2/pull/22830) -- Removing "if" block and making code more legible (by @matheusgontijo)
+ * [magento/magento2#22839](https://github.com/magento/magento2/pull/22839) -- FIX: Add missing Stories and Severity to Test cases (by @lbajsarowicz)
+ * [magento/magento2#22858](https://github.com/magento/magento2/pull/22858) -- Grammatical mistake in the comments (by @sudhanshu-bajaj)
+ * [magento/magento2#22889](https://github.com/magento/magento2/pull/22889) -- Replace hardcoded CarierCode from createShippingMethod() (by @wigman)
+ * [magento/magento2#22922](https://github.com/magento/magento2/pull/22922) -- [BUGFIX] Set correct cron instance for catalog_product_frontend_actio... (by @lewisvoncken)
+ * [magento/magento2#22607](https://github.com/magento/magento2/pull/22607) -- Implement Better Error Handling and Fix Waits on Null PIDs in Parallel SCD Execution (by @davidalger)
+ * [magento/magento2#22795](https://github.com/magento/magento2/pull/22795) -- fixed issue #22736 - Cursor position not in right side of search keyword in mobile (by @sanjaychouhan-webkul)
+ * [magento/magento2#22876](https://github.com/magento/magento2/pull/22876) -- Fixed issue #22875 Billing Agreements page title need to be improved (by @amitvishvakarma)
+ * [magento/magento2#21215](https://github.com/magento/magento2/pull/21215) -- fixed-Discount-Code-improvement-21214 (by @abrarpathan19)
+ * [magento/magento2#22307](https://github.com/magento/magento2/pull/22307) -- Varnish health check failing due to presence of id_prefix in env.php (by @Nazar65)
+ * [magento/magento2#22444](https://github.com/magento/magento2/pull/22444) -- magento/magento2#22317: PR#22321 fix. (by @p-bystritsky)
+ * [magento/magento2#22513](https://github.com/magento/magento2/pull/22513) -- Fixed #22396 config:set fails with JSON values (by @shikhamis11)
+ * [magento/magento2#22520](https://github.com/magento/magento2/pull/22520) -- Fixed #22506: Search suggestion panel overlapping on advance reporting button (by @webkul-ajaysaini)
+ * [magento/magento2#22760](https://github.com/magento/magento2/pull/22760) -- [Forwardport] Magento Catalog - fix custom option type text price conversion for mu... (by @ihor-sviziev)
+ * [magento/magento2#22893](https://github.com/magento/magento2/pull/22893) -- #22869 - defaulting customer storeId fix (by @Wirson)
+ * [magento/magento2#22926](https://github.com/magento/magento2/pull/22926) -- Store view label not in the middle of panel (by @speedy008)
+ * [magento/magento2#22947](https://github.com/magento/magento2/pull/22947) -- phpcs error on rule classes - must be of the type integer (by @Nazar65)
+ * [magento/magento2#22951](https://github.com/magento/magento2/pull/22951) -- Update the contributing.md to match the new beginners guide (by @dmanners)
+ * [magento/magento2#22387](https://github.com/magento/magento2/pull/22387) -- Checkout totals order in specific store (by @krnshah)
+ * [magento/magento2#22718](https://github.com/magento/magento2/pull/22718) -- Resolved issue coupon codes don't work anymore #18183 (by @this-adarsh)
+ * [magento/magento2#22914](https://github.com/magento/magento2/pull/22914) -- #22899 Fix the issue with Incorrect return type at getListByCustomerId in PaymentTokenManagementInterface (by @serhiyzhovnir)
+ * [magento/magento2#22687](https://github.com/magento/magento2/pull/22687) -- #22686 Shipment view fixed for Fatal error. (by @milindsingh)
+ * [magento/magento2#22772](https://github.com/magento/magento2/pull/22772) -- Fixed issue #22767: Not clear logic for loading CMS Pages with setStoreId function (by @maheshWebkul721)
+ * [magento/magento2#22931](https://github.com/magento/magento2/pull/22931) -- [Fixed-20788: Listing page no equal spacing in product in list view] (by @hitesh-wagento)
+ * [magento/magento2#22965](https://github.com/magento/magento2/pull/22965) -- Simplify if else catalog search full text data provider (by @sankalpshekhar)
+ * [magento/magento2#23011](https://github.com/magento/magento2/pull/23011) -- Fix typehint (by @amenk)
+ * [magento/magento2#22920](https://github.com/magento/magento2/pull/22920) -- Mview Indexers getList should return integer values of id's and not strings (by @mhodge13)
+ * [magento/magento2#23020](https://github.com/magento/magento2/pull/23020) -- Remove direct use of object manager (by @AnshuMishra17)
+ * [magento/magento2#23033](https://github.com/magento/magento2/pull/23033) -- Issue fix #23030: Swatch change Image does not slide to first Image (by @milindsingh)
+ * [magento/magento2#23035](https://github.com/magento/magento2/pull/23035) -- [Validator] Fix wrong behaviour of validation scroll (by @Den4ik)
+ * [magento/magento2#18459](https://github.com/magento/magento2/pull/18459) -- 12696 Delete all test modules after integration tests (by @avstudnitz)
+ * [magento/magento2#19897](https://github.com/magento/magento2/pull/19897) -- Re-enable PriceBox block caching (by @brucemead)
+ * [magento/magento2#21200](https://github.com/magento/magento2/pull/21200) -- [FEATURE] Don't load product collection in review observer (by @Den4ik)
+ * [magento/magento2#22071](https://github.com/magento/magento2/pull/22071) -- Make sure 'last' class is set on top menu (by @arnoudhgz)
+ * [magento/magento2#22821](https://github.com/magento/magento2/pull/22821) -- Customer Account Forgot Password page title fix (by @textarea)
+ * [magento/magento2#22884](https://github.com/magento/magento2/pull/22884) -- Show exception message during SCD failure (by @ihor-sviziev)
+ * [magento/magento2#22989](https://github.com/magento/magento2/pull/22989) -- Properly transliterate German Umlauts (by @amenk)
+ * [magento/magento2#23036](https://github.com/magento/magento2/pull/23036) -- [Framework] Reassign fields variable after converting to array (by @Den4ik)
+ * [magento/magento2#23040](https://github.com/magento/magento2/pull/23040) -- Don't create a new account-nav block - use existing instead. (by @vovayatsyuk)
+ * [magento/magento2#23046](https://github.com/magento/magento2/pull/23046) -- Add more descriptive exception when data patch fails to apply. (by @ashsmith)
+ * [magento/magento2#23067](https://github.com/magento/magento2/pull/23067) -- Create Security.md file to show on GitHub Security/Policy page (by @piotrekkaminski)
+ * [magento/magento2#14384](https://github.com/magento/magento2/pull/14384) -- Don't throw shipping method exception when creating quote with only virtual products in API (by @Maikel-Koek)
+ * [magento/magento2#19184](https://github.com/magento/magento2/pull/19184) -- Fixed magento text swatch switches product image even if attribute feature is disabled #16446 (by @ravi-chandra3197)
+ * [magento/magento2#21394](https://github.com/magento/magento2/pull/21394) -- [2.3]creating customer without password is directly confirmed 14492 (by @novikor)
+ * [magento/magento2#21674](https://github.com/magento/magento2/pull/21674) -- [2.3] Database Media Storage - Transactional Emails will now extract image from database in Database Media Storage mode (by @gwharton)
+ * [magento/magento2#22336](https://github.com/magento/magento2/pull/22336) -- fix clean_cache plugin flush mode (by @thomas-kl1)
+ * [magento/magento2#22426](https://github.com/magento/magento2/pull/22426) -- Fixed wrong url redirect when edit product review from Customer view page (by @ravi-chandra3197)
+ * [magento/magento2#22521](https://github.com/magento/magento2/pull/22521) -- Fixed 22511 (by @maheshWebkul721)
+ * [magento/magento2#22626](https://github.com/magento/magento2/pull/22626) -- resolved typo error (by @nehaguptacedcoss)
+ * [magento/magento2#22834](https://github.com/magento/magento2/pull/22834) -- #16445 - getRegionHtmlSelect does not have configuration - resolved (by @nikunjskd20)
+ * [magento/magento2#22937](https://github.com/magento/magento2/pull/22937) -- Mark Elasticsearch 6 support for synonyms (by @aapokiiso)
+ * [magento/magento2#23081](https://github.com/magento/magento2/pull/23081) -- Fix missing whitespace in mobile navigation for non-English websites (by @alexeya-ven)
+ * [magento/magento2#21131](https://github.com/magento/magento2/pull/21131) -- Fix Issue #19872 - checking if image is in media directory (by @Bartlomiejsz)
+ * [magento/magento2#22341](https://github.com/magento/magento2/pull/22341) -- Apply coupoun and scroll top to check. applied successfully or not (by @krnshah)
+ * [magento/magento2#22646](https://github.com/magento/magento2/pull/22646) -- Fixed Issue #22087 (by @Surabhi-Cedcoss)
+ * [magento/magento2#23025](https://github.com/magento/magento2/pull/23025) -- Re-enable XML as request and response types within the SwaggerUI (by @sweikenb)
+ * [magento/magento2#20848](https://github.com/magento/magento2/pull/20848) -- Partial docs fixes in Newsletter module (by @SikailoISM)
+ * [magento/magento2#21605](https://github.com/magento/magento2/pull/21605) -- [2.3] Database Media Storage - Admin Product Edit Page handles recreates images correctly when pub/media/catalog is cleared. (by @gwharton)
+ * [magento/magento2#21876](https://github.com/magento/magento2/pull/21876) -- $product->getUrlInStore() does not allow to override the scope in backend context (by @Nazar65)
+ * [magento/magento2#23007](https://github.com/magento/magento2/pull/23007) -- [Fixed] Reset feature does not clear the date (by @niravkrish)
+ * [magento/magento2#23118](https://github.com/magento/magento2/pull/23118) -- #23053 : sendfriend verifies product visibility instead of status (by @Wirson)
+ * [magento/magento2#22637](https://github.com/magento/magento2/pull/22637) -- Fixed #22484 Customer address States are duplicated in backend (by @shikhamis11)
+ * [magento/magento2#23140](https://github.com/magento/magento2/pull/23140) -- magento/magento2#23138: Magento_Theme. Incorrect configuration file location (by @atwixfirster)
+ * [magento/magento2#23179](https://github.com/magento/magento2/pull/23179) -- Fix for translation function (by @kkdg)
+ * [magento/magento2#22704](https://github.com/magento/magento2/pull/22704) -- Fixed #22004 can't update attribute for all product (by @shikhamis11)
+ * [magento/magento2#22933](https://github.com/magento/magento2/pull/22933) -- magento/magento2#22870: ProductRepository fails to update an existing product with a changed SKU. (by @p-bystritsky)
+ * [magento/magento2#23005](https://github.com/magento/magento2/pull/23005) -- Improve command catalog:images:resize (by @tdgroot)
+ * [magento/magento2#22942](https://github.com/magento/magento2/pull/22942) -- Fixed issue #18337 (by @geet07)
+ * [magento/magento2#23216](https://github.com/magento/magento2/pull/23216) -- Fixed #23213 Static content deploy showing percentage symbol two times in progress bar (by @amitvishvakarma)
+ * [magento/magento2#23244](https://github.com/magento/magento2/pull/23244) -- Update CONTRIBUTING.md (by @diazwatson)
+ * [magento/magento2#23248](https://github.com/magento/magento2/pull/23248) -- fix tooltip toggle selector typo (by @Karlasa)
+ * [magento/magento2#23250](https://github.com/magento/magento2/pull/23250) -- Fixed #23238 Apply button act like remove button while create new order from admin (by @gauravagarwal1001)
+ * [magento/magento2#22211](https://github.com/magento/magento2/pull/22211) -- Show converted value for validateForRefund error message (by @kassner)
+ * [magento/magento2#23129](https://github.com/magento/magento2/pull/23129) -- #22934 Improved sitemap product generation logic (by @sergiy-v)
+ * [magento/magento2#23201](https://github.com/magento/magento2/pull/23201) -- MFTF: Use AdminLoginActionGroup for AdminLoginTest - easiest use of ActionGroup (by @lbajsarowicz)
+ * [magento/magento2#23100](https://github.com/magento/magento2/pull/23100) -- Resolve issue with improper EAV attribute join statement (by @udovicic)
+ * [magento/magento2#23267](https://github.com/magento/magento2/pull/23267) -- Add filter index for ID column in adminhtml user grid (by @JeroenVanLeusden)
+ * [magento/magento2#23286](https://github.com/magento/magento2/pull/23286) -- Fixed Credit memo submit button(refund) stays disable after validation fails & unable to enable button issue. (by @nishantjariwala)
+ * [magento/magento2#23292](https://github.com/magento/magento2/pull/23292) -- revert Properly transliterate German Umlauts (by @Nazar65)
+ * [magento/magento2#23307](https://github.com/magento/magento2/pull/23307) -- [Ui] Allow to define listing configuration via ui component xml (by @Den4ik)
+ * [magento/magento2#23335](https://github.com/magento/magento2/pull/23335) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22675](https://github.com/magento/magento2/pull/22675) -- Fixed #20038 loading icon disappearing before background process completes for Braintree payment in Admin (by @kunal-rtpl)
+ * [magento/magento2#23174](https://github.com/magento/magento2/pull/23174) -- Move Quote related Plugins to correct module (by @sankalpshekhar)
+ * [magento/magento2#23309](https://github.com/magento/magento2/pull/23309) -- magento/magento2#23074: update correct product URL rewrites after changing category url key (by @sta1r)
+ * [magento/magento2#23347](https://github.com/magento/magento2/pull/23347) -- Fixes incorrect file reference in a comment in a .htaccess file. (by @hostep)
+ * [magento/magento2#22650](https://github.com/magento/magento2/pull/22650) -- Fixes issue #13227 (by @atishgoswami)
+ * [magento/magento2#22800](https://github.com/magento/magento2/pull/22800) -- fixed issue #22638 - Asterisk(*) sign position does not consistent in admin (by @sanjaychouhan-webkul)
+ * [magento/magento2#22910](https://github.com/magento/magento2/pull/22910) -- Do an empty check instead of isset check on image removed (by @arnoudhgz)
+ * [magento/magento2#23218](https://github.com/magento/magento2/pull/23218) -- Fixed #22266: 404 message for product alerts when not logged in (by @ArjenMiedema)
+ * [magento/magento2#23247](https://github.com/magento/magento2/pull/23247) -- Fixed 23230 : Sticky header floating under top when there is no buttons in the toolbar (by @konarshankar07)
+ * [magento/magento2#23338](https://github.com/magento/magento2/pull/23338) -- Fix issue with incorrect payment translation in sales emails (by @alexeya-ven)
+ * [magento/magento2#23366](https://github.com/magento/magento2/pull/23366) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#23367](https://github.com/magento/magento2/pull/23367) -- #23346: 'Test Connection' button is over-spanned (by @konarshankar07)
+ * [magento/magento2#22671](https://github.com/magento/magento2/pull/22671) -- Change exportButton option cvs (by @ajeetsinghcedcoss)
+ * [magento/magento2#23240](https://github.com/magento/magento2/pull/23240) -- Refactor: Improve mview code readability (by @lbajsarowicz)
+ * [magento/magento2#23280](https://github.com/magento/magento2/pull/23280) -- Ensure page is loaded after order click actions (by @fooman)
+ * [magento/magento2#23306](https://github.com/magento/magento2/pull/23306) -- FS/23038 Decimal qty with Increment is with specific values are not adding in cart (by @sertlab)
+ * [magento/magento2#23312](https://github.com/magento/magento2/pull/23312) -- Added function to check against running/pending/successful cron tasks (by @chickenland)
+ * [magento/magento2#22116](https://github.com/magento/magento2/pull/22116) -- Fix magento root package identification for metapackage installation (by @oleksii-lisovyi)
+ * [magento/magento2#23234](https://github.com/magento/magento2/pull/23234) -- [Ui] Calling the always action on opening and closing the modal. (by @eduard13)
+ * [magento/magento2#23353](https://github.com/magento/magento2/pull/23353) -- Get review entity id by code instead hard-coded. (by @DaniloEmpire)
+ * [magento/magento2#23393](https://github.com/magento/magento2/pull/23393) -- Fixed issue #21974 (by @geet07)
+ * [magento/magento2#23394](https://github.com/magento/magento2/pull/23394) -- Fixed issue #23377 (by @geet07)
+ * [magento/magento2#23403](https://github.com/magento/magento2/pull/23403) -- Remove rogue closing tag from store-switcher template (by @sta1r)
+ * [magento/magento2#22987](https://github.com/magento/magento2/pull/22987) -- Fixed apply discount coupons for bundle product (by @NikolasSumrak)
+ * [magento/magento2#23048](https://github.com/magento/magento2/pull/23048) -- #22998 : failing order creation with api when no address email is provided (by @Wirson)
+ * [magento/magento2#23390](https://github.com/magento/magento2/pull/23390) -- Changed logic so that _scrollToTopIfVisible is called only if element is in viewport. Previously it was called only when the element was outside it. (by @oskarolaussen)
+ * [magento/magento2#23425](https://github.com/magento/magento2/pull/23425) -- The best practices for SEO meta sequence. (by @vaseemishak)
+ * [magento/magento2#23523](https://github.com/magento/magento2/pull/23523) -- Issue #23522 UPS shipping booking and label generation gives error when shipper's street given more than 35 chars (by @ankurvr)
+ * [magento/magento2#23528](https://github.com/magento/magento2/pull/23528) -- move breakpoint by -1px to make nav work correctly at viewport 768 (by @bobemoe)
+ * [magento/magento2#23532](https://github.com/magento/magento2/pull/23532) -- Correct array type hints in Visibility model (by @pmclain)
+ * [magento/magento2#23535](https://github.com/magento/magento2/pull/23535) -- [2.3] Plain Text Emails are now sent with correct MIME Encoding (by @gwharton)
+ * [magento/magento2#23541](https://github.com/magento/magento2/pull/23541) -- fix validation class for max-words (by @sunilit42)
+ * [magento/magento2#21128](https://github.com/magento/magento2/pull/21128) -- Fix issue 21126 : Import design break issue resolved (by @speedy008)
+ * [magento/magento2#22213](https://github.com/magento/magento2/pull/22213) -- Date column ui component locale date format (by @Karlasa)
+ * [magento/magento2#23457](https://github.com/magento/magento2/pull/23457) -- Update CartTotalRepository.php (by @UlyanaKiklevich)
+ * [magento/magento2#23474](https://github.com/magento/magento2/pull/23474) -- Fixed tooltip missing at store view lable in Cms page and Cms block (by @dipeshrangani)
+ * [magento/magento2#23477](https://github.com/magento/magento2/pull/23477) -- Added quantity validation on Shipping Multiple Address Page (by @nirmalraval18)
+ * [magento/magento2#23494](https://github.com/magento/magento2/pull/23494) -- Removed editor from phone and zipcode (by @kazim-krish)
+ * [magento/magento2#23310](https://github.com/magento/magento2/pull/23310) -- magento/magento-2#23222: setup:upgrade should return failure when app... (by @ProcessEight)
+ * [magento/magento2#23360](https://github.com/magento/magento2/pull/23360) -- #23354 : Data saving problem error showing when leave blank qty and update it (by @konarshankar07)
+ * [magento/magento2#23427](https://github.com/magento/magento2/pull/23427) -- 23424: fixed search with 0 (by @jeysmook)
+ * [magento/magento2#23496](https://github.com/magento/magento2/pull/23496) -- Resolved + character issue in custom widget (by @sarfarazbheda)
+ * [magento/magento2#23529](https://github.com/magento/magento2/pull/23529) -- Feature/9798 updating configurable product options based on produc id and sku (by @lpouwelse)
+ * [magento/magento2#20918](https://github.com/magento/magento2/pull/20918) -- Enabled 'Shopping Cart' tab for customer edit interface in admin (by @rav-redchamps)
+ * [magento/magento2#22624](https://github.com/magento/magento2/pull/22624) -- Resolve Typo (by @prashantsharmacedcoss)
+ * [magento/magento2#22658](https://github.com/magento/magento2/pull/22658) -- Fixed #22545 Status downloadable product stays pending after succesfu... (by @shikhamis11)
+ * [magento/magento2#23500](https://github.com/magento/magento2/pull/23500) -- Fixed issue #23383 (by @manishgoswamij)
+ * [magento/magento2#23226](https://github.com/magento/magento2/pull/23226) -- Spacing issue for Gift message section in my account (by @amjadm61)
+ * [magento/magento2#23272](https://github.com/magento/magento2/pull/23272) -- hide or show the select for regions instead of enabling/disabling in customer registration (by @UB3RL33T)
+ * [magento/magento2#23593](https://github.com/magento/magento2/pull/23593) -- A small fix to improve format customer acl xml. (by @mrkhoa99)
+ * [magento/magento2#23607](https://github.com/magento/magento2/pull/23607) -- Default filter for reports set to past month (by @rogyar)
+ * [magento/magento2#22138](https://github.com/magento/magento2/pull/22138) -- BeanShells are changed to correct using of variables (by @AnnaShepa)
+ * [magento/magento2#22733](https://github.com/magento/magento2/pull/22733) -- Adds module:config:status command which checks if the module config i... (by @hostep)
+ * [magento/magento2#23351](https://github.com/magento/magento2/pull/23351) -- Fix some framework coding issues (by @fooman)
+ * [magento/magento2#23444](https://github.com/magento/magento2/pull/23444) -- Fix missing attribute_id condition from filter (by @mattijv)
+ * [magento/magento2#20579](https://github.com/magento/magento2/pull/20579) -- magento/magento2#12817: [Forwardport] Coupon code with canceled order. (by @p-bystritsky)
+ * [magento/magento2#23387](https://github.com/magento/magento2/pull/23387) -- magento/magento2#23386: Copy Service does not work properly for Entities which extends Data Object and implements ExtensibleDataInterface. (by @swnsma)
+ * [magento/magento2#23358](https://github.com/magento/magento2/pull/23358) -- magento/magento2#23345: Creditmemo getOrder() method loads order incorrectly. (by @p-bystritsky)
+ * [magento/magento2#23459](https://github.com/magento/magento2/pull/23459) -- magento/magento2#22814: Product stock alert - unsubscribe not working (by @yuriichayka)
+ * [magento/magento2#23598](https://github.com/magento/magento2/pull/23598) -- [2.3] magento catalog:images:resize now Database Media Storage mode aware (by @gwharton)
+ * [magento/magento2#23291](https://github.com/magento/magento2/pull/23291) -- Optimized dev:urn-catalog:generate for PHPStorm (by @JeroenBoersma)
+ * [magento/magento2#23592](https://github.com/magento/magento2/pull/23592) -- [Unit] Fix broken unit tests (by @Den4ik)
+ * [magento/magento2#23649](https://github.com/magento/magento2/pull/23649) -- [2.3] Transfer Encoding of emails changed to QUOTED-PRINTABLE (by @gwharton)
+ * [magento/magento2#23652](https://github.com/magento/magento2/pull/23652) -- Add missing getClass() to image.phtml so it is more like image_with_borders.phtml (by @woutersamaey)
+ * [magento/magento2#23710](https://github.com/magento/magento2/pull/23710) -- [2.3] Improve Database Media Storage Configuration settings usability (by @gwharton)
+ * [magento/magento2#23735](https://github.com/magento/magento2/pull/23735) -- Fixed typo in deploy module README.md (by @arnolds)
+ * [magento/magento2#22717](https://github.com/magento/magento2/pull/22717) -- Getting 404 url while updating quantity on multiple address cart page (by @vikalps4)
+ * [magento/magento2#23166](https://github.com/magento/magento2/pull/23166) -- Fix 22085 (by @geet07)
+ * [magento/magento2#23524](https://github.com/magento/magento2/pull/23524) -- remove html tag from option html from order page (by @sunilit42)
+ * [magento/magento2#22891](https://github.com/magento/magento2/pull/22891) -- Check if setting is disabled on default scope (by @kassner)
+ * [magento/magento2#23099](https://github.com/magento/magento2/pull/23099) -- fix customer data race condition when bundling is enabled (by @davidverholen)
+ * [magento/magento2#23125](https://github.com/magento/magento2/pull/23125) -- Catch throwables in mview updating (by @QuentinFarizonAfrimarket)
+ * [magento/magento2#23173](https://github.com/magento/magento2/pull/23173) -- Fixed issue #23135: Insert Variable popup missing template variables for new templates (by @maheshWebkul721)
+ * [magento/magento2#23688](https://github.com/magento/magento2/pull/23688) -- Resolve "Automatically Invoice All Items" is "Yes" but no invoice is created (Zero Subtotal Checkout) (by @edenduong)
+ * [magento/magento2#23718](https://github.com/magento/magento2/pull/23718) -- Resolve [Authorize.net accept.js] "Place Order" button not being disabled when editing billing address (by @edenduong)
+ * [magento/magento2#23753](https://github.com/magento/magento2/pull/23753) -- Add Magento\ConfigurableProduct\Pricing\Price\PriceResolverInterface to di.xml in issue23717 (by @edenduong)
+ * [magento/magento2#22984](https://github.com/magento/magento2/pull/22984) -- magento/magento2#14071: Not able to change a position of last two rel... (by @m-a-x-i-m)
+ * [magento/magento2#23656](https://github.com/magento/magento2/pull/23656) -- Fixes issue 22112 (https://github.com/magento/magento2/issues/22112) ... (by @rsimmons07)
+ * [magento/magento2#23666](https://github.com/magento/magento2/pull/23666) -- magento/magento2#: Fix storeId param type in the EmailNotification::newAccount, EmailNotificationInterface::newAccount methods (by @atwixfirster)
+ * [magento/magento2#23681](https://github.com/magento/magento2/pull/23681) -- Resolve Frontend Label For Custom Order Status not Editable in Magento Admin in Single Store Mode (by @edenduong)
+ * [magento/magento2#23752](https://github.com/magento/magento2/pull/23752) -- [2.3] Database Media Storage : PDF Logo file now database aware (by @gwharton)
+ * [magento/magento2#23679](https://github.com/magento/magento2/pull/23679) -- Moved Zero Subtotal Checkout Payment Settings (by @textarea)
+ * [magento/magento2#23779](https://github.com/magento/magento2/pull/23779) -- Resolve "Discount Amount" field is validated after the page load without any action from user in Create New Catalog Rule form issue23777 (by @edenduong)
+ * [magento/magento2#23787](https://github.com/magento/magento2/pull/23787) -- Fix for PHP_CodeSniffer error after app:config:dump (by @dng-dev)
+ * [magento/magento2#23790](https://github.com/magento/magento2/pull/23790) -- magento/magento2#23789: CommentLevelsSniff works incorrect with @magento_import statement. (by @p-bystritsky)
+ * [magento/magento2#23794](https://github.com/magento/magento2/pull/23794) -- Remove duplicate declaration (by @gfernandes410)
+ * [magento/magento2#23803](https://github.com/magento/magento2/pull/23803) -- Resolve Toggle icon not working in create configuration Product creation Page issue 22702 (by @edenduong)
+ * [magento/magento2#23782](https://github.com/magento/magento2/pull/23782) -- Cleaning some code gaps (by @Stepa4man)
+ * [magento/magento2#23840](https://github.com/magento/magento2/pull/23840) -- Fix regular expression comment on function isNameValid() in ImageContentValidator.php (by @nimbus2300)
+ * [magento/magento2#23845](https://github.com/magento/magento2/pull/23845) -- Add custom added url key to decoded directive string in WYSIWYG editor (by @JeroenVanLeusden)
+ * [magento/magento2#23866](https://github.com/magento/magento2/pull/23866) -- additional check for correct version of sodium (by @matei)
+ * [magento/magento2#23901](https://github.com/magento/magento2/pull/23901) -- Resolve Report->Product->Downloads has wrong ACL issue 23900 (by @edenduong)
+ * [magento/magento2#23905](https://github.com/magento/magento2/pull/23905) -- Resolve No auto-focus after validation at "Create Configurations" button => User can not see the error message issue23904 (by @edenduong)
+ * [magento/magento2#23917](https://github.com/magento/magento2/pull/23917) -- Resolve Missing Validation at some Payment Method Settings issue 23916 (by @edenduong)
+ * [magento/magento2#23919](https://github.com/magento/magento2/pull/23919) -- class ApplyAttributesUpdate should use \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE instead of fixing "bundle" (by @edenduong)
+ * [magento/magento2#23933](https://github.com/magento/magento2/pull/23933) -- Fix display of decimal quantities for wishlist items (by @mfickers)
+
+2.3.2
+=============
+* GitHub issues:
+ * [#19596](https://github.com/magento/magento2/issues/19596) -- Images in XML sitemap are always linked to base store in multistore on Schedule (fixed in [magento/magento2#19598](https://github.com/magento/magento2/pull/19598))
+ * [#20010](https://github.com/magento/magento2/issues/20010) -- Wrong price amount in opengraph (fixed in [magento/magento2#20011](https://github.com/magento/magento2/pull/20011))
+ * [#20091](https://github.com/magento/magento2/issues/20091) -- Error when uploading a Transactional Emails logo (fixed in [magento/magento2#20092](https://github.com/magento/magento2/pull/20092))
+ * [#20172](https://github.com/magento/magento2/issues/20172) -- On customer login page input field are short width on tablet view (fixed in [magento/magento2#20173](https://github.com/magento/magento2/pull/20173))
+ * [#20380](https://github.com/magento/magento2/issues/20380) -- Get Shipping Method as object from order instance gives undefined index. (fixed in [magento/magento2#20381](https://github.com/magento/magento2/pull/20381))
+ * [#20376](https://github.com/magento/magento2/issues/20376) -- Image gets uploaded if field is disable in Category (fixed in [magento/magento2#20461](https://github.com/magento/magento2/pull/20461))
+ * [#20555](https://github.com/magento/magento2/issues/20555) -- Meta Keywords/Meta Description are input field in product form while they are defined as textarea (fixed in [magento/magento2#20556](https://github.com/magento/magento2/pull/20556))
+ * [#19630](https://github.com/magento/magento2/issues/19630) -- Checkbox alignment issue backend. (fixed in [magento/magento2#19631](https://github.com/magento/magento2/pull/19631))
+ * [#19891](https://github.com/magento/magento2/issues/19891) -- product_type attribute contains incorrect value in mass import export csv after creating custom type_id attribute. actual type_id value in database gets change with newly created attribute type_id. (fixed in [magento/magento2#20115](https://github.com/magento/magento2/pull/20115))
+ * [#21021](https://github.com/magento/magento2/issues/21021) -- products in category checkbox not align properly (fixed in [magento/magento2#21022](https://github.com/magento/magento2/pull/21022))
+ * [#21089](https://github.com/magento/magento2/issues/21089) -- No accessible label for vault-saved credit card type (fixed in [magento/magento2#21090](https://github.com/magento/magento2/pull/21090))
+ * [#263](https://github.com/magento/magento2/issues/263) -- Where Mage_Core_Model_Config::applyClassRewrites($className) method is (fixed in [magento/graphql-ce#347](https://github.com/magento/graphql-ce/pull/347))
+ * [#20163](https://github.com/magento/magento2/issues/20163) -- On iPhone5 device newsletter subscription input box not contain complete text (placeholder) (fixed in [magento/magento2#20165](https://github.com/magento/magento2/pull/20165))
+ * [#20299](https://github.com/magento/magento2/issues/20299) -- Order item details label not aligned in mobile view (fixed in [magento/magento2#20466](https://github.com/magento/magento2/pull/20466))
+ * [#11358](https://github.com/magento/magento2/issues/11358) -- Full Tax Summary display wrong numbers. (fixed in [magento/magento2#20682](https://github.com/magento/magento2/pull/20682))
+ * [#19701](https://github.com/magento/magento2/issues/19701) -- Magento 2.3 Shopping Cart Taxes Missing Calc Line (fixed in [magento/magento2#20682](https://github.com/magento/magento2/pull/20682))
+ * [#17861](https://github.com/magento/magento2/issues/17861) -- Customer Name Prefix shows white space when extra separator is addes. (fixed in [magento/magento2#20896](https://github.com/magento/magento2/pull/20896))
+ * [#20888](https://github.com/magento/magento2/issues/20888) -- Entered data missing when entering the wrong date for from, to in cart rule (fixed in [magento/magento2#20895](https://github.com/magento/magento2/pull/20895))
+ * [#17564](https://github.com/magento/magento2/issues/17564) -- Magento 2 inline edit date issues in admin grid with Ui Component (fixed in [magento/magento2#20902](https://github.com/magento/magento2/pull/20902))
+ * [#18698](https://github.com/magento/magento2/issues/18698) -- Magento triggers and sends some of order emails exactly one month later,while the order email was not enabled then (fixed in [magento/magento2#20953](https://github.com/magento/magento2/pull/20953))
+ * [#20919](https://github.com/magento/magento2/issues/20919) -- Email label and email field not aligned from left for reorder of guest user (fixed in [magento/magento2#21009](https://github.com/magento/magento2/pull/21009))
+ * [#21070](https://github.com/magento/magento2/issues/21070) -- Luma theme my account Order Information status tabs break in tablet view (fixed in [magento/magento2#21071](https://github.com/magento/magento2/pull/21071))
+ * [#21101](https://github.com/magento/magento2/issues/21101) -- Unable to open the product from sidebar's Compare Products block (fixed in [magento/magento2#21102](https://github.com/magento/magento2/pull/21102))
+ * [#6162](https://github.com/magento/magento2/issues/6162) -- Can't set customer group when creating a new order in the admin. (fixed in [magento/magento2#21145](https://github.com/magento/magento2/pull/21145))
+ * [#7974](https://github.com/magento/magento2/issues/7974) -- Can't change customer group when placing an admin order, even after MAGETWO-57077 applied (fixed in [magento/magento2#21145](https://github.com/magento/magento2/pull/21145))
+ * [#21144](https://github.com/magento/magento2/issues/21144) -- Can't change customer group when placing an admin order (fixed in [magento/magento2#21145](https://github.com/magento/magento2/pull/21145))
+ * [#18056](https://github.com/magento/magento2/issues/18056) -- CacheInvalidate : stop at first server not responding (fixed in [magento/magento2#18852](https://github.com/magento/magento2/pull/18852))
+ * [#19561](https://github.com/magento/magento2/issues/19561) -- Custom option price calculation is wrong with multi currency when option price type is percentage. (fixed in [magento/magento2#19608](https://github.com/magento/magento2/pull/19608))
+ * [#18944](https://github.com/magento/magento2/issues/18944) -- Unable to open URL for downloadable product in 2.2.6 (fixed in [magento/magento2#19996](https://github.com/magento/magento2/pull/19996))
+ * [#18347](https://github.com/magento/magento2/issues/18347) -- Element 'css', attribute 'as': The attribute 'as' is not allowed. (CSS preloading) (fixed in [magento/magento2#20495](https://github.com/magento/magento2/pull/20495))
+ * [#19328](https://github.com/magento/magento2/issues/19328) -- Success Message Icon vertically misaligned in admin panel (fixed in [magento/magento2#21069](https://github.com/magento/magento2/pull/21069))
+ * [#19274](https://github.com/magento/magento2/issues/19274) -- Why is SessionManager used instead of its Interface? (fixed in [magento/magento2#19359](https://github.com/magento/magento2/pull/19359))
+ * [#19166](https://github.com/magento/magento2/issues/19166) -- Customer related values are NULL for guests converted to customers after checkout. (fixed in [magento/magento2#19191](https://github.com/magento/magento2/pull/19191))
+ * [#19485](https://github.com/magento/magento2/issues/19485) -- DHL Shipping Quotes fail for Domestic Shipments when Content Mode is "Non Documents" (fixed in [magento/magento2#19487](https://github.com/magento/magento2/pull/19487))
+ * [#20838](https://github.com/magento/magento2/issues/20838) -- Luma theme shipping tool tip icon cut from leftside (fixed in [magento/magento2#20839](https://github.com/magento/magento2/pull/20839))
+ * [#21196](https://github.com/magento/magento2/issues/21196) -- [UI] The dropdown state doesn't change if the dropdown is expanded or not (fixed in [magento/magento2#21197](https://github.com/magento/magento2/pull/21197))
+ * [#5021](https://github.com/magento/magento2/issues/5021) -- "Please specify a shipping method" Exception (fixed in [magento/magento2#19505](https://github.com/magento/magento2/pull/19505))
+ * [#21177](https://github.com/magento/magento2/issues/21177) -- Cart Page cross sell product Add to cart button overlapping (fixed in [magento/magento2#21178](https://github.com/magento/magento2/pull/21178))
+ * [#20969](https://github.com/magento/magento2/issues/20969) -- Poor performance for some layered navigation queries (fixed in [magento/magento2#20971](https://github.com/magento/magento2/pull/20971))
+ * [#14882](https://github.com/magento/magento2/issues/14882) -- product_types.xml doesn't allow numbers in modelInstance (fixed in [magento/magento2#20617](https://github.com/magento/magento2/pull/20617))
+ * [#21271](https://github.com/magento/magento2/issues/21271) -- Address book display horizontal scroll in responsive view (fixed in [magento/magento2#21272](https://github.com/magento/magento2/pull/21272))
+ * [#292](https://github.com/magento/magento2/issues/292) -- Refactor Mage_Rating_Model_Resource_Rating_Collection (fixed in [magento/graphql-ce#327](https://github.com/magento/graphql-ce/pull/327))
+ * [#239](https://github.com/magento/magento2/issues/239) -- Feature Request: Record User Agent In Admin Grid (fixed in [magento/graphql-ce#364](https://github.com/magento/graphql-ce/pull/364))
+ * [#17784](https://github.com/magento/magento2/issues/17784) -- store_view_code column has empty values in csv (fixed in [magento/magento2#19395](https://github.com/magento/magento2/pull/19395))
+ * [#19786](https://github.com/magento/magento2/issues/19786) -- Can only export default store view items when upgrade to 2.3.0 (fixed in [magento/magento2#19395](https://github.com/magento/magento2/pull/19395))
+ * [#18374](https://github.com/magento/magento2/issues/18374) -- Unable to get product attribute value for store-view scope type in product collection loaded for a specific store. (fixed in [magento/magento2#20071](https://github.com/magento/magento2/pull/20071))
+ * [#20855](https://github.com/magento/magento2/issues/20855) -- In checkout page product price not align proper in order summary block for ipad view (fixed in [magento/magento2#20856](https://github.com/magento/magento2/pull/20856))
+ * [#21296](https://github.com/magento/magento2/issues/21296) -- Pagination drop-down size does not appropriate. (fixed in [magento/magento2#21298](https://github.com/magento/magento2/pull/21298))
+ * [#8086](https://github.com/magento/magento2/issues/8086) -- Multiline admin field is broken (fixed in [magento/magento2#20371](https://github.com/magento/magento2/pull/20371))
+ * [#18115](https://github.com/magento/magento2/issues/18115) -- Multiline field is broken (fixed in [magento/magento2#20371](https://github.com/magento/magento2/pull/20371))
+ * [#8479](https://github.com/magento/magento2/issues/8479) -- Sequence of module load order should be deterministic (fixed in [magento/magento2#21020](https://github.com/magento/magento2/pull/21020))
+ * [#16116](https://github.com/magento/magento2/issues/16116) -- Modules sort order in config.php is being inconsistent when no changes being made (fixed in [magento/magento2#21020](https://github.com/magento/magento2/pull/21020))
+ * [#14412](https://github.com/magento/magento2/issues/14412) -- Magento 2.2.3 TypeErrors Cannot read property 'quoteData' / 'storecode' / 'sectionLoadUrl' of undefined (fixed in [magento/magento2#18503](https://github.com/magento/magento2/pull/18503))
+ * [#19983](https://github.com/magento/magento2/issues/19983) -- Can't work customer Image attribute programmatically (fixed in [magento/magento2#19988](https://github.com/magento/magento2/pull/19988))
+ * [#20305](https://github.com/magento/magento2/issues/20305) -- Update button on payment checkout is not proper alligned (fixed in [magento/magento2#20307](https://github.com/magento/magento2/pull/20307))
+ * [#13982](https://github.com/magento/magento2/issues/13982) -- Customer Login Block sets the title for the page when rendered (fixed in [magento/magento2#20583](https://github.com/magento/magento2/pull/20583))
+ * [#20773](https://github.com/magento/magento2/issues/20773) -- The autoloader throws an exception on class_exists (fixed in [magento/magento2#20950](https://github.com/magento/magento2/pull/20950))
+ * [#21322](https://github.com/magento/magento2/issues/21322) -- Declarative schema: Omitting indexType throws exception (fixed in [magento/magento2#21328](https://github.com/magento/magento2/pull/21328))
+ * [#15059](https://github.com/magento/magento2/issues/15059) -- Cannot reorder from the first try (fixed in [magento/magento2#21335](https://github.com/magento/magento2/pull/21335))
+ * [#21359](https://github.com/magento/magento2/issues/21359) -- Search with long string display horizontal scroll in front end (fixed in [magento/magento2#21360](https://github.com/magento/magento2/pull/21360))
+ * [#21365](https://github.com/magento/magento2/issues/21365) -- CSS Property name issue (fixed in [magento/magento2#21368](https://github.com/magento/magento2/pull/21368))
+ * [#389](https://github.com/magento/magento2/issues/389) -- Magento_VersionsCms::widgets.css not found (fixed in [magento/graphql-ce#390](https://github.com/magento/graphql-ce/pull/390))
+ * [#293](https://github.com/magento/magento2/issues/293) -- $productAttribute->getFrontend()->getSelectOptions() grabbing unnecessary options (fixed in [magento/graphql-ce#330](https://github.com/magento/graphql-ce/pull/330))
+ * [#288](https://github.com/magento/magento2/issues/288) -- Add Cell Phone to Customer Address Form (fixed in [magento/graphql-ce#330](https://github.com/magento/graphql-ce/pull/330))
+ * [#287](https://github.com/magento/magento2/issues/287) -- Why the status code of Web API Resource in REST always 404 (fixed in [magento/graphql-ce#330](https://github.com/magento/graphql-ce/pull/330))
+ * [#286](https://github.com/magento/magento2/issues/286) -- import configurable product with file as _custom_option_type not working (fixed in [magento/graphql-ce#330](https://github.com/magento/graphql-ce/pull/330))
+ * [#13937](https://github.com/magento/magento2/issues/13937) -- Sitemap filename can't exceed 32 characters (fixed in [magento/magento2#20044](https://github.com/magento/magento2/pull/20044))
+ * [#20337](https://github.com/magento/magento2/issues/20337) -- Option Title breaking in two line because applying wrong css for manage width (fixed in [magento/magento2#20339](https://github.com/magento/magento2/pull/20339))
+ * [#21294](https://github.com/magento/magento2/issues/21294) -- Cart can't be emptied if any product is out of stock (fixed in [magento/magento2#21295](https://github.com/magento/magento2/pull/21295))
+ * [#21383](https://github.com/magento/magento2/issues/21383) -- As low as displays incorrect pricing on category page, tax appears to be added twice (fixed in [magento/magento2#21395](https://github.com/magento/magento2/pull/21395))
+ * [#21398](https://github.com/magento/magento2/issues/21398) -- Doesn't show any error message when customer click on Add to cart button without selecting atleast one product from recently orderred list (fixed in [magento/magento2#21401](https://github.com/magento/magento2/pull/21401))
+ * [#20310](https://github.com/magento/magento2/issues/20310) -- Cart section data has wrong product_price_value (fixed in [magento/magento2#20316](https://github.com/magento/magento2/pull/20316))
+ * [#21062](https://github.com/magento/magento2/issues/21062) -- Static tests: forbid 'or' instead of '||' (fixed in [magento/magento2#21275](https://github.com/magento/magento2/pull/21275))
+ * [#21154](https://github.com/magento/magento2/issues/21154) -- 2.3.0 Watermark not showing on images (fixed in [magento/magento2#21338](https://github.com/magento/magento2/pull/21338))
+ * [#13338](https://github.com/magento/magento2/issues/13338) -- Products grid in admin does not display default values? (fixed in [magento/magento2#21363](https://github.com/magento/magento2/pull/21363))
+ * [#21327](https://github.com/magento/magento2/issues/21327) -- Checkout Page Cancel button is not working (fixed in [magento/magento2#21356](https://github.com/magento/magento2/pull/21356))
+ * [#21425](https://github.com/magento/magento2/issues/21425) -- Date design change show not correctly value in backend (fixed in [magento/magento2#21443](https://github.com/magento/magento2/pull/21443))
+ * [#20078](https://github.com/magento/magento2/issues/20078) -- Magento Ui form validator message callback not supported (fixed in [magento/magento2#20079](https://github.com/magento/magento2/pull/20079))
+ * [#20128](https://github.com/magento/magento2/issues/20128) -- Magento\Reports\Model\ResourceModel\Order\Collection->getDateRange() - Error in code? (fixed in [magento/magento2#20129](https://github.com/magento/magento2/pull/20129))
+ * [#14857](https://github.com/magento/magento2/issues/14857) -- Sitemap generation cron job flushes entire cache (fixed in [magento/magento2#20818](https://github.com/magento/magento2/pull/20818))
+ * [#21077](https://github.com/magento/magento2/issues/21077) -- Tabbing issue on product detail page (fixed in [magento/magento2#21079](https://github.com/magento/magento2/pull/21079))
+ * [#21292](https://github.com/magento/magento2/issues/21292) -- Google Analytics isAnonymizedIpActive always true (fixed in [magento/magento2#21303](https://github.com/magento/magento2/pull/21303))
+ * [#21454](https://github.com/magento/magento2/issues/21454) -- Infinite redirects in Magento admin (fixed in [magento/magento2#21455](https://github.com/magento/magento2/pull/21455))
+ * [#283](https://github.com/magento/magento2/issues/283) -- write Product Reviews error (fixed in [magento/graphql-ce#342](https://github.com/magento/graphql-ce/pull/342))
+ * [#282](https://github.com/magento/magento2/issues/282) -- Can't create configurable product (fixed in [magento/graphql-ce#342](https://github.com/magento/graphql-ce/pull/342))
+ * [#281](https://github.com/magento/magento2/issues/281) -- Pre defined var __DIR__ doesn't work (fixed in [magento/graphql-ce#342](https://github.com/magento/graphql-ce/pull/342))
+ * [#279](https://github.com/magento/magento2/issues/279) -- Configurable Product: Custom Options make a discount percent of Tier Price error (fixed in [magento/graphql-ce#342](https://github.com/magento/graphql-ce/pull/342))
+ * [#394](https://github.com/magento/magento2/issues/394) -- update used version of phpseclib (fixed in [magento/graphql-ce#414](https://github.com/magento/graphql-ce/pull/414))
+ * [#388](https://github.com/magento/magento2/issues/388) -- Why we are using umask(0) in bootstrap.php (fixed in [magento/graphql-ce#397](https://github.com/magento/graphql-ce/pull/397))
+ * [#17297](https://github.com/magento/magento2/issues/17297) -- No children data for \Magento\Catalog\Model\CategoryManagement::getTree($categoryId) after first call. (fixed in [magento/magento2#18705](https://github.com/magento/magento2/pull/18705))
+ * [#19632](https://github.com/magento/magento2/issues/19632) -- Backend Marketing Cart Price Rule Label Alignment Issue (fixed in [magento/magento2#19637](https://github.com/magento/magento2/pull/19637))
+ * [#20187](https://github.com/magento/magento2/issues/20187) -- Downloadable product view layout (fixed in [magento/magento2#20239](https://github.com/magento/magento2/pull/20239))
+ * [#19117](https://github.com/magento/magento2/issues/19117) -- High Database Load for Sales Rule Validation (fixed in [magento/magento2#20484](https://github.com/magento/magento2/pull/20484))
+ * [#21278](https://github.com/magento/magento2/issues/21278) -- Sort order missing on Downloadable Product Links and Sample Columns (fixed in [magento/magento2#21279](https://github.com/magento/magento2/pull/21279))
+ * [#21329](https://github.com/magento/magento2/issues/21329) -- URL Rewrites are overwritten (fixed in [magento/magento2#21462](https://github.com/magento/magento2/pull/21462))
+ * [#21192](https://github.com/magento/magento2/issues/21192) -- Wrong data of Import status with Add/Update method in Advanced Prices in CSV (fixed in [magento/magento2#21476](https://github.com/magento/magento2/pull/21476))
+ * [#19276](https://github.com/magento/magento2/issues/19276) -- Change different product price on selecting different product swatches on category pages (fixed in [magento/magento2#19376](https://github.com/magento/magento2/pull/19376))
+ * [#20527](https://github.com/magento/magento2/issues/20527) -- [Admin] Configurable product variations table cell labels wrong position (fixed in [magento/magento2#20528](https://github.com/magento/magento2/pull/20528))
+ * [#21493](https://github.com/magento/magento2/issues/21493) -- Setting default sorting (fixed in [magento/magento2#21498](https://github.com/magento/magento2/pull/21498))
+ * [#21499](https://github.com/magento/magento2/issues/21499) -- Cart is emptied when enter is pressed after changing product quantity (fixed in [magento/magento2#21509](https://github.com/magento/magento2/pull/21509))
+ * [#310](https://github.com/magento/magento2/issues/310) -- Problems with Controller's Router (fixed in [magento/graphql-ce#311](https://github.com/magento/graphql-ce/pull/311))
+ * [#429](https://github.com/magento/magento2/issues/429) -- In dev54, the captcha of backend (Admin Login and Admin Forget Password) can't display. (fixed in [magento/graphql-ce#444](https://github.com/magento/graphql-ce/pull/444))
+ * [#419](https://github.com/magento/magento2/issues/419) -- Some translation keys are not correct. (fixed in [magento/graphql-ce#451](https://github.com/magento/graphql-ce/pull/451))
+ * [#424](https://github.com/magento/magento2/issues/424) -- Please combine tier pricing messages into block sentences... (fixed in [magento/graphql-ce#442](https://github.com/magento/graphql-ce/pull/442))
+ * [#427](https://github.com/magento/magento2/issues/427) -- Clearing Admin notification causes "Fatal error: Maximum function nesting level of '100' reached" (fixed in [magento/graphql-ce#448](https://github.com/magento/graphql-ce/pull/448))
+ * [#420](https://github.com/magento/magento2/issues/420) -- The errors happed when create new API User from backend- dev53 (fixed in [magento/graphql-ce#450](https://github.com/magento/graphql-ce/pull/450))
+ * [#430](https://github.com/magento/magento2/issues/430) -- ExtJS - Update to latest version (fixed in [magento/graphql-ce#471](https://github.com/magento/graphql-ce/pull/471))
+ * [#18017](https://github.com/magento/magento2/issues/18017) -- URL pre-selection of configurable product swatches with associated product images throws JavaScript error (fixed in [magento/magento2#19635](https://github.com/magento/magento2/pull/19635))
+ * [#20414](https://github.com/magento/magento2/issues/20414) -- Recent orders grid not aligned from left in mobile as all content aligned from left (fixed in [magento/magento2#20429](https://github.com/magento/magento2/pull/20429))
+ * [#20928](https://github.com/magento/magento2/issues/20928) -- Admin product grid Massaction design issue with sub menu (fixed in [magento/magento2#20938](https://github.com/magento/magento2/pull/20938))
+ * [#20989](https://github.com/magento/magento2/issues/20989) -- Admin Customizable Options Dropdown sort_order issue (fixed in [magento/magento2#21371](https://github.com/magento/magento2/pull/21371))
+ * [#21419](https://github.com/magento/magento2/issues/21419) -- Wishlist is missing review summary (fixed in [magento/magento2#21420](https://github.com/magento/magento2/pull/21420))
+ * [#20809](https://github.com/magento/magento2/issues/20809) -- Advanced Search layout not proper (fixed in [magento/magento2#21611](https://github.com/magento/magento2/pull/21611))
+ * [#20905](https://github.com/magento/magento2/issues/20905) -- Minicart, search & logo not vertically aligned between 640 to767 device pixel. (fixed in [magento/magento2#21638](https://github.com/magento/magento2/pull/21638))
+ * [#21521](https://github.com/magento/magento2/issues/21521) -- Broken Tax Rate Search Filter - SQLSTATE[23000] (fixed in [magento/magento2#21701](https://github.com/magento/magento2/pull/21701))
+ * [#13612](https://github.com/magento/magento2/issues/13612) -- 1 exception(s): Exception #0 (Exception): Warning: Illegal offset type in isset or empty in /home/jewelrynest2/public_html/magento/vendor/magento/module-eav/Model/Entity/Attribute/Source/AbstractSource.php on line 76 (fixed in [magento/magento2#20001](https://github.com/magento/magento2/pull/20001))
+ * [#18761](https://github.com/magento/magento2/issues/18761) -- Bug with REPLACE method in Advanced Prices in CSV Import (fixed in [magento/magento2#21189](https://github.com/magento/magento2/pull/21189))
+ * [#21384](https://github.com/magento/magento2/issues/21384) -- JS minify field is not disabled in developer configuration (fixed in [magento/magento2#21444](https://github.com/magento/magento2/pull/21444))
+ * [#21541](https://github.com/magento/magento2/issues/21541) -- Whitespace issues for related, cross and upsell grids (fixed in [magento/magento2#21582](https://github.com/magento/magento2/pull/21582))
+ * [#167](https://github.com/magento/magento2/issues/167) -- Fatal error: Class 'Mage' not found (fixed in [magento/magento2#21731](https://github.com/magento/magento2/pull/21731))
+ * [#20511](https://github.com/magento/magento2/issues/20511) -- Sorting by 'Websites' not working in product grid in backoffice (fixed in [magento/magento2#20512](https://github.com/magento/magento2/pull/20512))
+ * [#19360](https://github.com/magento/magento2/issues/19360) -- Missed form validation in Admin Order Address Edit route sales/order/address (fixed in [magento/magento2#20840](https://github.com/magento/magento2/pull/20840))
+ * [#17295](https://github.com/magento/magento2/issues/17295) -- Search REST API returns wrong total_count (fixed in [magento/magento2#21713](https://github.com/magento/magento2/pull/21713))
+ * [#18630](https://github.com/magento/magento2/issues/18630) -- Postcode / Zipcode in checkout form already validated on page load (fixed in [magento/magento2#18633](https://github.com/magento/magento2/pull/18633))
+ * [#21648](https://github.com/magento/magento2/issues/21648) -- Checkout Agreements checkbox missing asterisk (fixed in [magento/magento2#21649](https://github.com/magento/magento2/pull/21649))
+ * [#12396](https://github.com/magento/magento2/issues/12396) -- "Total Amount" cart rule without tax (fixed in [magento/magento2#21288](https://github.com/magento/magento2/pull/21288))
+ * [#21467](https://github.com/magento/magento2/issues/21467) -- Tier price of simple item not working in Bundle product (fixed in [magento/magento2#21469](https://github.com/magento/magento2/pull/21469))
+ * [#21510](https://github.com/magento/magento2/issues/21510) -- Can't access backend indexers page after creating a custom index (fixed in [magento/magento2#21575](https://github.com/magento/magento2/pull/21575))
+ * [#21750](https://github.com/magento/magento2/issues/21750) -- Product attribute labels are translated (fixed in [magento/magento2#21751](https://github.com/magento/magento2/pull/21751))
+ * [#19835](https://github.com/magento/magento2/issues/19835) -- Admin grid button flicker issue after page load due to re-ordering (fixed in [magento/magento2#21791](https://github.com/magento/magento2/pull/21791))
+ * [#21374](https://github.com/magento/magento2/issues/21374) -- Dot is not allowed when editing CMS block in-line (fixed in [magento/magento2#21376](https://github.com/magento/magento2/pull/21376))
+ * [#21396](https://github.com/magento/magento2/issues/21396) -- [Frontend] Additional addresses DataTable Pagination count displaying wrong. (fixed in [magento/magento2#21399](https://github.com/magento/magento2/pull/21399))
+ * [#21692](https://github.com/magento/magento2/issues/21692) -- Incorrect constructor of Magento\Sales\Model\Order\Address\Validator (fixed in [magento/magento2#21693](https://github.com/magento/magento2/pull/21693))
+ * [#21752](https://github.com/magento/magento2/issues/21752) -- Error while installing Magento from scratch if Locale Resolver is injected in cli command (fixed in [magento/magento2#21693](https://github.com/magento/magento2/pull/21693))
+ * [#20825](https://github.com/magento/magento2/issues/20825) -- Missing required argument $productAvailabilityChecks of Magento\Sales\Model\Order\Reorder\OrderedProductAvailabilityChecker. (fixed in [magento/magento2#21820](https://github.com/magento/magento2/pull/21820))
+ * [#20859](https://github.com/magento/magento2/issues/20859) -- Luma theme - Input Box and Radio Button shadow is not proper (fixed in [magento/magento2#21851](https://github.com/magento/magento2/pull/21851))
+ * [#482](https://github.com/magento/magento2/issues/482) -- Cms pages meta title (fixed in [magento/graphql-ce#492](https://github.com/magento/graphql-ce/pull/492))
+ * [#20209](https://github.com/magento/magento2/issues/20209) -- errors/local.xml and error page templates are publicly accessible (fixed in [magento/magento2#20212](https://github.com/magento/magento2/pull/20212))
+ * [#20434](https://github.com/magento/magento2/issues/20434) -- Product URL duplicate when changing visibility via mass action (fixed in [magento/magento2#20774](https://github.com/magento/magento2/pull/20774))
+ * [#18754](https://github.com/magento/magento2/issues/18754) -- Negative order amount in dashboard latest order when order is cancelled where coupon has been used (fixed in [magento/magento2#21283](https://github.com/magento/magento2/pull/21283))
+ * [#21281](https://github.com/magento/magento2/issues/21281) -- Wrong order amount on dashboard on Last orders listing when order has discount and it is partially refunded (fixed in [magento/magento2#21283](https://github.com/magento/magento2/pull/21283))
+ * [#21620](https://github.com/magento/magento2/issues/21620) -- Update title of Review content (fixed in [magento/magento2#21621](https://github.com/magento/magento2/pull/21621))
+ * [#21001](https://github.com/magento/magento2/issues/21001) -- Unit Tests failed (fixed in [magento/magento2#21880](https://github.com/magento/magento2/pull/21880))
+ * [#432](https://github.com/magento/magento2/issues/432) -- [Feature request] Make reindex for specific store view (fixed in [magento/graphql-ce#449](https://github.com/magento/graphql-ce/pull/449))
+ * [#14926](https://github.com/magento/magento2/issues/14926) -- "Rolled back transaction has not been completed correctly" on Magento 2.2.3 (fixed in [magento/magento2#21697](https://github.com/magento/magento2/pull/21697))
+ * [#18752](https://github.com/magento/magento2/issues/18752) -- Rolled back transaction has not been completed correctly" on Magento 2.1.15 (fixed in [magento/magento2#21697](https://github.com/magento/magento2/pull/21697))
+ * [#21734](https://github.com/magento/magento2/issues/21734) -- Error in JS validation rule (fixed in [magento/magento2#21776](https://github.com/magento/magento2/pull/21776))
+ * [#422](https://github.com/magento/magento2/issues/422) -- Cannot run a new module installation script after Magento 2 installation (fixed in [magento/graphql-ce#467](https://github.com/magento/graphql-ce/pull/467))
+ * [#478](https://github.com/magento/magento2/issues/478) -- wishlist cannot get product item caused the fatal error (fixed in [magento/graphql-ce#491](https://github.com/magento/graphql-ce/pull/491))
+ * [#485](https://github.com/magento/magento2/issues/485) -- Problem with configuration of SetupFactory in di.xml (fixed in [magento/graphql-ce#496](https://github.com/magento/graphql-ce/pull/496))
+ * [#15972](https://github.com/magento/magento2/issues/15972) -- Since Magento 2.2.1, certain variables in the configuration get resolved to their actual value (fixed in [magento/magento2#18067](https://github.com/magento/magento2/pull/18067))
+ * [#17658](https://github.com/magento/magento2/issues/17658) -- validate function in vatvalidation calls checkVatNumber a lot (fixed in [magento/magento2#19265](https://github.com/magento/magento2/pull/19265))
+ * [#20766](https://github.com/magento/magento2/issues/20766) -- AttributeCode column name length validation throws wrong error message (fixed in [magento/magento2#20526](https://github.com/magento/magento2/pull/20526))
+ * [#20943](https://github.com/magento/magento2/issues/20943) -- No complete validation while creation of attributes. (fixed in [magento/magento2#20526](https://github.com/magento/magento2/pull/20526))
+ * [#13319](https://github.com/magento/magento2/issues/13319) -- Incorrect method return value in \Magento\Shipping\Model\Carrier\AbstractCarrier::getTotalNumOfBoxes() (fixed in [magento/magento2#20898](https://github.com/magento/magento2/pull/20898))
+ * [#21134](https://github.com/magento/magento2/issues/21134) -- Invalid argument supplied for foreach thrown in EAV code (fixed in [magento/magento2#21135](https://github.com/magento/magento2/pull/21135))
+ * [#10893](https://github.com/magento/magento2/issues/10893) -- Street fields in checkout don't have a label that's readable by a screenreader (fixed in [magento/magento2#21484](https://github.com/magento/magento2/pull/21484))
+ * [#21805](https://github.com/magento/magento2/issues/21805) -- Filter in url rewrites table in backend isn't being remembered (fixed in [magento/magento2#21834](https://github.com/magento/magento2/pull/21834))
+ * [#423](https://github.com/magento/magento2/issues/423) -- Can't login backend after running some time - dev53 (fixed in [magento/graphql-ce#460](https://github.com/magento/graphql-ce/pull/460))
+ * [#13951](https://github.com/magento/magento2/issues/13951) -- Exception on customer edit under restricted admin access (fixed in [magento/magento2#18386](https://github.com/magento/magento2/pull/18386))
+ * [#19761](https://github.com/magento/magento2/issues/19761) -- Custom import adapter data validation issue (fixed in [magento/magento2#19765](https://github.com/magento/magento2/pull/19765))
+ * [#21755](https://github.com/magento/magento2/issues/21755) -- Magento should create a log entry if an observer does not implement ObserverInterface (fixed in [magento/magento2#21767](https://github.com/magento/magento2/pull/21767))
+ * [#295](https://github.com/magento/magento2/issues/295) -- [Backend] System Configuration UI issues (fixed in [magento/graphql-ce#404](https://github.com/magento/graphql-ce/pull/404))
+ * [#19909](https://github.com/magento/magento2/issues/19909) -- Not possible to use multidimensional arrays in widget parameters (fixed in [magento/magento2#21008](https://github.com/magento/magento2/pull/21008))
+ * [#21926](https://github.com/magento/magento2/issues/21926) -- Exception on reorder from admin (fixed in [magento/magento2#21928](https://github.com/magento/magento2/pull/21928))
+ * [#20140](https://github.com/magento/magento2/issues/20140) -- Product per row not proper on listing page (fixed in [magento/magento2#21948](https://github.com/magento/magento2/pull/21948))
+ * [#21244](https://github.com/magento/magento2/issues/21244) -- Luma theme huge whitespace on category grid (fixed in [magento/magento2#21948](https://github.com/magento/magento2/pull/21948))
+ * [#512](https://github.com/magento/magento2/issues/512) -- Theme Thumbnails not showing (fixed in [magento/graphql-ce#562](https://github.com/magento/graphql-ce/pull/562))
+ * [#479](https://github.com/magento/magento2/issues/479) -- Different locale Settings don't work (fixed in [magento/graphql-ce#558](https://github.com/magento/graphql-ce/pull/558))
+ * [#21789](https://github.com/magento/magento2/issues/21789) -- [BUG] Product gallery opening by mistake (fixed in [magento/magento2#21790](https://github.com/magento/magento2/pull/21790))
+ * [#21998](https://github.com/magento/magento2/issues/21998) -- Magento/ImportExport/Model/Import has _coreConfig declared dynamically (fixed in [magento/magento2#21999](https://github.com/magento/magento2/pull/21999))
+ * [#21993](https://github.com/magento/magento2/issues/21993) -- config:set not storing scoped values (fixed in [magento/magento2#22012](https://github.com/magento/magento2/pull/22012))
+ * [#20186](https://github.com/magento/magento2/issues/20186) -- phpcs error on rule classes - must be of the type integer (fixed in [magento/magento2#22081](https://github.com/magento/magento2/pull/22081))
+ * [#20366](https://github.com/magento/magento2/issues/20366) -- The parent product doesn't have configurable product options. (fixed in [magento/magento2#21083](https://github.com/magento/magento2/pull/21083))
+ * [#22001](https://github.com/magento/magento2/issues/22001) -- Magento backend dashboard: Most viewed products tabs gives 404 error in console. (fixed in [magento/magento2#22002](https://github.com/magento/magento2/pull/22002))
+ * [#581](https://github.com/magento/magento2/issues/581) -- About ByPercent.php under different currencies (fixed in [magento/graphql-ce#586](https://github.com/magento/graphql-ce/pull/586))
+ * [#21916](https://github.com/magento/magento2/issues/21916) -- Elasticsearch6 generation does not exist (fixed in [magento/magento2#22046](https://github.com/magento/magento2/pull/22046))
+ * [#21976](https://github.com/magento/magento2/issues/21976) -- Magento doesn't work after upgrade from 2.3.0 to 2.3.1 (fixed in [magento/magento2#22046](https://github.com/magento/magento2/pull/22046))
+ * [#21715](https://github.com/magento/magento2/issues/21715) -- Previous scrolling to invalid form element is not being canceled on hitting submit multiple times (fixed in [magento/magento2#22117](https://github.com/magento/magento2/pull/22117))
+ * [#21824](https://github.com/magento/magento2/issues/21824) -- Filter in admin users grid in backend isn't being remembered (fixed in [magento/magento2#22128](https://github.com/magento/magento2/pull/22128))
+ * [#21973](https://github.com/magento/magento2/issues/21973) -- Why phar stream is being unregistered? (fixed in [magento/magento2#22171](https://github.com/magento/magento2/pull/22171))
+ * [#22166](https://github.com/magento/magento2/issues/22166) -- Information and link in README.md file related to Security issue reporting should be updated (fixed in [magento/magento2#22195](https://github.com/magento/magento2/pull/22195))
+ * [#7623](https://github.com/magento/magento2/issues/7623) -- Web Setup Wizard not visible in backend (V.2.1.2) ONGOING (fixed in [magento/magento2#20182](https://github.com/magento/magento2/pull/20182))
+ * [#11892](https://github.com/magento/magento2/issues/11892) -- Web Setup Wizard not visible in backend magento 2.1.9 (fixed in [magento/magento2#20182](https://github.com/magento/magento2/pull/20182))
+ * [#20830](https://github.com/magento/magento2/issues/20830) -- On Header customer name appearing twice after login (fixed in [magento/magento2#20832](https://github.com/magento/magento2/pull/20832))
+ * [#21375](https://github.com/magento/magento2/issues/21375) -- Same product quantity not increment when added with guest user. (fixed in [magento/magento2#21501](https://github.com/magento/magento2/pull/21501))
+ * [#21786](https://github.com/magento/magento2/issues/21786) -- Asynchronous email sending for the sales entities which were created with disabled email sending (fixed in [magento/magento2#21788](https://github.com/magento/magento2/pull/21788))
+ * [#21753](https://github.com/magento/magento2/issues/21753) -- Order Item Status to Enable Downloads is set to "Pending," but no download links are presented in "My Downloads" when logged in (fix provided) (fixed in [magento/magento2#22073](https://github.com/magento/magento2/pull/22073))
+ * [#426](https://github.com/magento/magento2/issues/426) -- The 'register' should be 'Register' in default.xml of pluse theme (fixed in [magento/graphql-ce#441](https://github.com/magento/graphql-ce/pull/441))
+ * [#425](https://github.com/magento/magento2/issues/425) -- Installation of dev53 fails (fixed in [magento/graphql-ce#441](https://github.com/magento/graphql-ce/pull/441))
+ * [#564](https://github.com/magento/magento2/issues/564) -- Catalog product images - Do not removing from file system (fixed in [magento/graphql-ce#571](https://github.com/magento/graphql-ce/pull/571) and [magento/graphql-ce#614](https://github.com/magento/graphql-ce/pull/614))
+ * [#12386](https://github.com/magento/magento2/issues/12386) -- Order Status resets to default Status after Partial Refund (fixed in [magento/magento2#20378](https://github.com/magento/magento2/pull/20378))
+ * [#16513](https://github.com/magento/magento2/issues/16513) -- Can not save an inactive Admin User that has no access tokens generated (fixed in [magento/magento2#20772](https://github.com/magento/magento2/pull/20772))
+ * [#21868](https://github.com/magento/magento2/issues/21868) -- Method importFromArray from \Magento\Eav\Model\Entity\Collection\AbstractCollection doesn't return a working collection (fixed in [magento/magento2#21869](https://github.com/magento/magento2/pull/21869))
+ * [#22030](https://github.com/magento/magento2/issues/22030) -- Typo issue: Magento admin sales order shipment header typo issue (fixed in [magento/magento2#22031](https://github.com/magento/magento2/pull/22031))
+ * [#22090](https://github.com/magento/magento2/issues/22090) -- MsrpPriceCalculator exception after upgrade to 2.3.1 (fixed in [magento/magento2#22197](https://github.com/magento/magento2/pull/22197))
+ * [#22190](https://github.com/magento/magento2/issues/22190) -- Exception (BadMethodCallException): Missing required argument $msrpPriceCalculators of Magento\Msrp\Pricing\MsrpPriceCalculator. (fixed in [magento/magento2#22197](https://github.com/magento/magento2/pull/22197))
+ * [#18557](https://github.com/magento/magento2/issues/18557) -- Value of created_at and updated_at columns not updating in ui_bookmark table (fixed in [magento/magento2#22340](https://github.com/magento/magento2/pull/22340))
+ * [#21299](https://github.com/magento/magento2/issues/21299) -- HEAD request returns 404 (fixed in [magento/magento2#21378](https://github.com/magento/magento2/pull/21378))
+ * [#21907](https://github.com/magento/magento2/issues/21907) -- Place order button disabled after failed email address validation check with braintree credit card (fixed in [magento/magento2#21936](https://github.com/magento/magento2/pull/21936))
+ * [#6715](https://github.com/magento/magento2/issues/6715) -- Few weaknesses in the code (fixed in [magento/magento2#21968](https://github.com/magento/magento2/pull/21968))
+ * [#21960](https://github.com/magento/magento2/issues/21960) -- Layered Navigation: “Equalize product count” not working as expected (fixed in [magento/magento2#21968](https://github.com/magento/magento2/pull/21968))
+ * [#22152](https://github.com/magento/magento2/issues/22152) -- Click on search icon it does not working (fixed in [magento/magento2#22154](https://github.com/magento/magento2/pull/22154))
+ * [#22199](https://github.com/magento/magento2/issues/22199) -- A bug with health_check.php (fixed in [magento/magento2#22200](https://github.com/magento/magento2/pull/22200))
+ * [#15090](https://github.com/magento/magento2/issues/15090) -- app:config:import fails with "Please specify the admin custom URL." (fixed in [magento/magento2#22281](https://github.com/magento/magento2/pull/22281))
+ * [#20917](https://github.com/magento/magento2/issues/20917) -- Alignment Issue While Editing Order Data containing Downlodable Products in Admin Section (fixed in [magento/magento2#22298](https://github.com/magento/magento2/pull/22298))
+ * [#21747](https://github.com/magento/magento2/issues/21747) -- catalog_product_flat_data for store view populated with default view data when it should be store view data (fixed in [magento/magento2#22318](https://github.com/magento/magento2/pull/22318))
+ * [#22317](https://github.com/magento/magento2/issues/22317) -- CodeSniffer should not mark correctly aligned DocBlock elements as code style violation. (fixed in [magento/magento2#22321](https://github.com/magento/magento2/pull/22321))
+ * [#22330](https://github.com/magento/magento2/issues/22330) -- Error "extend ' .no-link a' has no matches" when compiling email-inline css using an alternative less compiler (fixed in [magento/magento2#22332](https://github.com/magento/magento2/pull/22332))
+ * [#22309](https://github.com/magento/magento2/issues/22309) -- Category Update without "name" cannot be saved in scope "all" with REST API (fixed in [magento/magento2#22362](https://github.com/magento/magento2/pull/22362))
+ * [#607](https://github.com/magento/magento2/issues/607) -- sitemap.xml filename is not variable (fixed in [magento/graphql-ce#610](https://github.com/magento/graphql-ce/pull/610))
+ * [#605](https://github.com/magento/magento2/issues/605) -- tinyMceWysiwyg is not working in admin form edit (fixed in [magento/graphql-ce#616](https://github.com/magento/graphql-ce/pull/616))
+ * [#604](https://github.com/magento/magento2/issues/604) -- 'Continue' button is disabled even though 'I've read OSL licence' is checked (fixed in [magento/graphql-ce#614](https://github.com/magento/graphql-ce/pull/614))
+ * [#19825](https://github.com/magento/magento2/issues/19825) -- Magento 2.3.0: Backup tool not correctly detecting .maintenance.flag (fixed in [magento/magento2#19993](https://github.com/magento/magento2/pull/19993))
+ * [#13409](https://github.com/magento/magento2/issues/13409) -- custom widget with wysiwyg problem on insert widget via pages or blocks (fixed in [magento/magento2#20174](https://github.com/magento/magento2/pull/20174))
+ * [#19742](https://github.com/magento/magento2/issues/19742) -- Widgets with a WYSIWYG parameter fail when inserting them into a WYSIWYG in a form. (fixed in [magento/magento2#20174](https://github.com/magento/magento2/pull/20174))
+ * [#21654](https://github.com/magento/magento2/issues/21654) -- \Magento\Framework\Data\Collection::clear does not clear the result for \Magento\Framework\Data\Collection::getSize (fixed in [magento/magento2#21670](https://github.com/magento/magento2/pull/21670))
+ * [#21702](https://github.com/magento/magento2/issues/21702) -- Purchasing a downloadable product as guest then creating an account on the onepagesuccess step doesn't link product with account (fixed in [magento/magento2#21711](https://github.com/magento/magento2/pull/21711))
+ * [#21779](https://github.com/magento/magento2/issues/21779) -- Adminhtml textarea field doesn't accept maxlength (fixed in [magento/magento2#21816](https://github.com/magento/magento2/pull/21816))
+ * [#22246](https://github.com/magento/magento2/issues/22246) -- Programatically created invoices miss items when both simple products and bundled products are mixed in an order (fixed in [magento/magento2#22263](https://github.com/magento/magento2/pull/22263))
+ * [#22355](https://github.com/magento/magento2/issues/22355) -- Import product quantity is empty after import (fixed in [magento/magento2#22382](https://github.com/magento/magento2/pull/22382))
+ * [#6272](https://github.com/magento/magento2/issues/6272) -- Changing sample for downloadable product failure (fixed in [magento/magento2#19806](https://github.com/magento/magento2/pull/19806))
+ * [#3283](https://github.com/magento/magento2/issues/3283) -- «Yes/No» attributes should be allowed in the Layered Navigation (fixed in [magento/magento2#21772](https://github.com/magento/magento2/pull/21772))
+ * [#21771](https://github.com/magento/magento2/issues/21771) -- Performance degradation in Layered navigation using Yes/No attribute (fixed in [magento/magento2#21772](https://github.com/magento/magento2/pull/21772))
+ * [#8035](https://github.com/magento/magento2/issues/8035) -- Join extension attributes are not added to Order results (REST api) (fixed in [magento/magento2#21797](https://github.com/magento/magento2/pull/21797))
+ * [#22223](https://github.com/magento/magento2/issues/22223) -- Missing/Wrong data display on downloadable report table reports>downloads in BO (fixed in [magento/magento2#22291](https://github.com/magento/magento2/pull/22291))
+ * [#7227](https://github.com/magento/magento2/issues/7227) -- "x_forwarded_for" value is always empty in Order object. (fixed in [magento/magento2#21787](https://github.com/magento/magento2/pull/21787))
+ * [#22047](https://github.com/magento/magento2/issues/22047) -- Magento CRON Job Names are missing in NewRelic: "Transaction Names" (fixed in [magento/magento2#22059](https://github.com/magento/magento2/pull/22059))
+ * [#21737](https://github.com/magento/magento2/issues/21737) -- Duplicating product with translated url keys over multiple storeviews causes non-unique url keys to be generated (fixed in [magento/magento2#22178](https://github.com/magento/magento2/pull/22178))
+ * [#22474](https://github.com/magento/magento2/issues/22474) -- Incomplete Dependency on Backup Settings Configuration (fixed in [magento/magento2#22475](https://github.com/magento/magento2/pull/22475))
+ * [#22402](https://github.com/magento/magento2/issues/22402) -- PUT /V1/products/:sku/media/:entryId does not change the file (fixed in [magento/magento2#22424](https://github.com/magento/magento2/pull/22424))
+ * [#22124](https://github.com/magento/magento2/issues/22124) -- Magento 2.3.1: Catalog setup fails with error "Magento\Catalog\Setup\Media does not exist" (fixed in [magento/magento2#22446](https://github.com/magento/magento2/pull/22446))
+ * [#22434](https://github.com/magento/magento2/issues/22434) -- While add cart price rule from admin click on Condition drop-down arrow direction not change. (fixed in [magento/magento2#22456](https://github.com/magento/magento2/pull/22456))
+ * [#20111](https://github.com/magento/magento2/issues/20111) -- Email Template Information Insert Variable popup blank (fixed in [magento/magento2#22469](https://github.com/magento/magento2/pull/22469))
+ * [#21147](https://github.com/magento/magento2/issues/21147) -- Can't scroll in modal-popup on iOS (fixed in [magento/magento2#21150](https://github.com/magento/magento2/pull/21150))
+ * [#21962](https://github.com/magento/magento2/issues/21962) -- Magento Sales Order: Design Align issue (fixed in [magento/magento2#21963](https://github.com/magento/magento2/pull/21963))
+ * [#19544](https://github.com/magento/magento2/issues/19544) -- Grunt watch triggers entire page reload (fixed in [magento/magento2#22276](https://github.com/magento/magento2/pull/22276))
+ * [#22299](https://github.com/magento/magento2/issues/22299) -- Cms block cache key does not contain the store id (fixed in [magento/magento2#22302](https://github.com/magento/magento2/pull/22302))
+ * [#22270](https://github.com/magento/magento2/issues/22270) -- 2.2.8 Configurable product option dropdown - price difference incorrect when catalog prices are entered excluding tax (fixed in [magento/magento2#22466](https://github.com/magento/magento2/pull/22466))
+ * [#9155](https://github.com/magento/magento2/issues/9155) -- Adding product from wishlist not adding to cart showing warning message. (fixed in [magento/magento2#19653](https://github.com/magento/magento2/pull/19653))
+ * [#20481](https://github.com/magento/magento2/issues/20481) -- REST products update category_ids cannot be removed (fixed in [magento/magento2#20842](https://github.com/magento/magento2/pull/20842))
+ * [#21477](https://github.com/magento/magento2/issues/21477) -- Magento 2.3 quote_item table has incorrect default value in declarative schema (fixed in [magento/magento2#21486](https://github.com/magento/magento2/pull/21486))
+ * [#16939](https://github.com/magento/magento2/issues/16939) -- Incorrect configuration scope is occasionally returned when attempting to resolve a null scope id (fixed in [magento/magento2#21633](https://github.com/magento/magento2/pull/21633))
+ * [#19908](https://github.com/magento/magento2/issues/19908) -- REST-API locale is always default scope (fixed in [magento/magento2#19913](https://github.com/magento/magento2/pull/19913))
+ * [#21842](https://github.com/magento/magento2/issues/21842) -- Checkout error for registered customer with cache_id_prefix on multi server setup (fixed in [magento/magento2#21856](https://github.com/magento/magento2/pull/21856))
+ * [#21032](https://github.com/magento/magento2/issues/21032) -- Error on design configuration save with imageUploader form element populated from gallery (fixed in [magento/magento2#22132](https://github.com/magento/magento2/pull/22132))
+ * [#22052](https://github.com/magento/magento2/issues/22052) -- Customer account confirmation is overwritten by backend customer save (fixed in [magento/magento2#22147](https://github.com/magento/magento2/pull/22147))
+ * [#12802](https://github.com/magento/magento2/issues/12802) -- QuoteRepository get methods won't return CartInterface but Quote model (fixed in [magento/magento2#22149](https://github.com/magento/magento2/pull/22149))
+ * [#21596](https://github.com/magento/magento2/issues/21596) -- Checkout: it is possible to leave blank Shipping Details section and get to Payment Details section by URL (fixed in [magento/magento2#22405](https://github.com/magento/magento2/pull/22405))
+* GitHub pull requests:
+ * [magento/magento2#18706](https://github.com/magento/magento2/pull/18706) -- icon text showing feature (by @Karlasa)
+ * [magento/magento2#19546](https://github.com/magento/magento2/pull/19546) -- Fix typo in SQL join when joining custom option prices for price indexer (by @udovicic)
+ * [magento/magento2#19598](https://github.com/magento/magento2/pull/19598) -- Images in XML sitemap are always linked to base store in multistore on Schedule (by @Nazar65)
+ * [magento/magento2#20011](https://github.com/magento/magento2/pull/20011) -- Issue fix #20010 Wrong price amount in opengraph (by @milindsingh)
+ * [magento/magento2#20092](https://github.com/magento/magento2/pull/20092) -- Fix error on logo upload for Transactional Emails (#20091) (by @chaplynsky)
+ * [magento/magento2#20173](https://github.com/magento/magento2/pull/20173) -- [Forwardport] 'customer-login-page-input-field-are-short-width-on-tablet-view' :: a… (by @nainesh2jcommerce)
+ * [magento/magento2#20381](https://github.com/magento/magento2/pull/20381) -- Order shipping method bug (by @maheshWebkul721)
+ * [magento/magento2#20461](https://github.com/magento/magento2/pull/20461) -- #20376 Fix issue with file uploading if an upload field is disabled (by @serhiyzhovnir)
+ * [magento/magento2#20556](https://github.com/magento/magento2/pull/20556) -- Fixed issue #20555 Meta Keywords/Meta Description are input field in product form while they are defined as textarea (by @amitcedcoss)
+ * [magento/magento2#20992](https://github.com/magento/magento2/pull/20992) -- focus-not-proper-on-configurable-product-swatches:: focus not proper … (by @nainesh2jcommerce)
+ * [magento/magento2#21055](https://github.com/magento/magento2/pull/21055) -- added min=0 to qty field product detail page (by @awviraj)
+ * [magento/magento2#21120](https://github.com/magento/magento2/pull/21120) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#19631](https://github.com/magento/magento2/pull/19631) -- Backend: Fixed checkbox alignment (by @suryakant-krish)
+ * [magento/magento2#20012](https://github.com/magento/magento2/pull/20012) -- typos corrected (by @mjsachan-cedcoss)
+ * [magento/magento2#20027](https://github.com/magento/magento2/pull/20027) -- hardcoded table name (by @melaxon)
+ * [magento/magento2#20115](https://github.com/magento/magento2/pull/20115) -- Fixed Issue #19891 ,Added checks of type_id (by @GovindaSharma)
+ * [magento/magento2#20499](https://github.com/magento/magento2/pull/20499) -- Fix typo in _resets.less (by @sjaakvdbrom)
+ * [magento/magento2#20887](https://github.com/magento/magento2/pull/20887) -- Removed github oauth token in sample file. The token is a personal to… (by @hostep)
+ * [magento/magento2#21007](https://github.com/magento/magento2/pull/21007) -- disable add to cart until page load (by @sunilit42)
+ * [magento/magento2#21022](https://github.com/magento/magento2/pull/21022) -- products-in-category-checkbox-not-align-properly (by @priti2jcommerce)
+ * [magento/magento2#21090](https://github.com/magento/magento2/pull/21090) -- Add alt text to saved payment method for accessibility (by @pmclain)
+ * [magento/magento2#21097](https://github.com/magento/magento2/pull/21097) -- Apply PHP-CS-Fixer "braces" fixes on `if` and `foreach` statements (by @yogeshsuhagiya)
+ * [magento/magento2#21096](https://github.com/magento/magento2/pull/21096) -- Updated sprintf usage; Simplified isset usage (by @df2k2)
+ * [magento/magento2#21100](https://github.com/magento/magento2/pull/21100) -- [Sales] Improves the UX by scrolling down the customer to the Recent Orders (by @eduard13)
+ * [magento/magento2#21129](https://github.com/magento/magento2/pull/21129) -- Remove unused reference on wishlist ConvertSerializedData controller (by @sasangagamlath)
+ * [magento/magento2#20165](https://github.com/magento/magento2/pull/20165) -- issue fixed #20163 On iPhone5 device newsletter subscription input bo... (by @cedarvinda)
+ * [magento/magento2#20466](https://github.com/magento/magento2/pull/20466) -- view-order-price-subtotal-alignment-not-proper-mobile (by @priti2jcommerce)
+ * [magento/magento2#20682](https://github.com/magento/magento2/pull/20682) -- Full Tax Summary display wrong numbers (by @niravkrish)
+ * [magento/magento2#20847](https://github.com/magento/magento2/pull/20847) -- Fixed validation strategy label in import form (by @elevinskii)
+ * [magento/magento2#20881](https://github.com/magento/magento2/pull/20881) -- Add the ability to disable/remove an action from Mass(Tree)Action (by @Beagon)
+ * [magento/magento2#20896](https://github.com/magento/magento2/pull/20896) -- Fixed #17861 Customer Name Prefix shows white space when extra separator is addes (by @shikhamis11)
+ * [magento/magento2#20895](https://github.com/magento/magento2/pull/20895) -- Entered data missing when entering the wrong date for from, to in cart rule (by @realadityayadav)
+ * [magento/magento2#20902](https://github.com/magento/magento2/pull/20902) -- Fixed #17564 Magento 2 inline edit date issues in admin grid with Ui Component (by @satyaprakashpatel)
+ * [magento/magento2#20953](https://github.com/magento/magento2/pull/20953) -- #18698 Fixed order email sending via order async email sending when order was created with disabled email sending (by @serhiyzhovnir)
+ * [magento/magento2#20963](https://github.com/magento/magento2/pull/20963) -- bundle-product-table-data-grouped-alignment :: Bundle product table d… (by @parag2jcommerce)
+ * [magento/magento2#21009](https://github.com/magento/magento2/pull/21009) -- issue fixed #20919 Email label and email field not aligned from left ... (by @cedarvinda)
+ * [magento/magento2#21038](https://github.com/magento/magento2/pull/21038) -- quantity-not-center-align-on-review-order (by @nainesh2jcommerce)
+ * [magento/magento2#21071](https://github.com/magento/magento2/pull/21071) -- Fixed Luma theme my account Order status tabs 21070 (by @abrarpathan19)
+ * [magento/magento2#21102](https://github.com/magento/magento2/pull/21102) -- [Catalog] Fixing compare block product removing action from sidebar (by @eduard13)
+ * [magento/magento2#21145](https://github.com/magento/magento2/pull/21145) -- Fixed #21144 Can't change customer group when placing an admin order (by @gauravagarwal1001)
+ * [magento/magento2#21165](https://github.com/magento/magento2/pull/21165) -- Fix tests breaking when upgrading from 2.2 to 2.3 (by @navarr)
+ * [magento/magento2#18852](https://github.com/magento/magento2/pull/18852) -- Changes cache hosts warning / critical levels and continue on multiple hosts (by @wiardvanrij)
+ * [magento/magento2#19608](https://github.com/magento/magento2/pull/19608) -- Fixed Custom option price calculation is wrong with multi currency when option price type is percentage (by @emiprotech)
+ * [magento/magento2#19996](https://github.com/magento/magento2/pull/19996) -- Fixed issue Unable to open URL for downloadable product (by @shikhamis11)
+ * [magento/magento2#20495](https://github.com/magento/magento2/pull/20495) -- #18347 - Element 'css', attribute 'as': The attribute 'as' is not allowed. (CSS preloading) (by @vasilii-b)
+ * [magento/magento2#20923](https://github.com/magento/magento2/pull/20923) -- Fixed issue if there are multiple skus in catalog rule condition combination (by @suneet64)
+ * [magento/magento2#21069](https://github.com/magento/magento2/pull/21069) -- Error icon issue resolved (by @speedy008)
+ * [magento/magento2#21093](https://github.com/magento/magento2/pull/21093) -- Removed useless sprintf and removed code no longer needed (by @df2k2)
+ * [magento/magento2#21095](https://github.com/magento/magento2/pull/21095) -- Fixing returning types (by @eduard13)
+ * [magento/magento2#21098](https://github.com/magento/magento2/pull/21098) -- Updated Deprecated functions call (by @ankitsrivastavacedcoss)
+ * [magento/magento2#19359](https://github.com/magento/magento2/pull/19359) -- Removed direct use of SessionManager class, used SessionManagerInterface instead (by @jaimin-ktpl)
+ * [magento/magento2#21260](https://github.com/magento/magento2/pull/21260) -- Code clean for page doc comment on select.test.js (by @lpj822)
+ * [magento/magento2#19191](https://github.com/magento/magento2/pull/19191) -- Customer related values are NULL for guests converted to customers after checkout. #19166 (by @Nazar65)
+ * [magento/magento2#19487](https://github.com/magento/magento2/pull/19487) -- Fix DHL Quotes for Domestic Shipments when Content Type is set to Non-Document (by @gwharton)
+ * [magento/magento2#19566](https://github.com/magento/magento2/pull/19566) -- Minimum Qty Allowed in Shopping Cart not working on related product (by @mageprince)
+ * [magento/magento2#19679](https://github.com/magento/magento2/pull/19679) -- #19575 magentoDataFixture should allow to use Module Prefix - Integrations Test (by @larsroettig)
+ * [magento/magento2#20237](https://github.com/magento/magento2/pull/20237) -- Backend: User Role Checkbox alignement. (by @suryakant-krish)
+ * [magento/magento2#20839](https://github.com/magento/magento2/pull/20839) -- Checkout shipping tooltip 20838 (by @abrarpathan19)
+ * [magento/magento2#21197](https://github.com/magento/magento2/pull/21197) -- [Ui] Fixing the changing state of dropdown's icon (by @eduard13)
+ * [magento/magento2#21227](https://github.com/magento/magento2/pull/21227) -- remove-duplicated-media (by @priti2jcommerce)
+ * [magento/magento2#19505](https://github.com/magento/magento2/pull/19505) -- ISSUE-5021 fixed guest checkout with custom shipping carrier with unde... (by @vovsky)
+ * [magento/magento2#21046](https://github.com/magento/magento2/pull/21046) -- Remove unwanted condition check (by @dominicfernando)
+ * [magento/magento2#21121](https://github.com/magento/magento2/pull/21121) -- Applied PHP-CS-Fixer: concat_space, no_multiline_whitespace_around_double_arrow, ordered_imports (by @yogeshsuhagiya)
+ * [magento/magento2#21178](https://github.com/magento/magento2/pull/21178) -- Fix issue 21177 - Cart page cross-sell product add-to-cart button issue resolved (by @speedy008)
+ * [magento/magento2#21210](https://github.com/magento/magento2/pull/21210) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#20971](https://github.com/magento/magento2/pull/20971) -- Cast attribute ID to integer - Fixes #20969 (by @k4emic)
+ * [magento/magento2#21175](https://github.com/magento/magento2/pull/21175) -- Added translation for comment tag (by @yogeshsuhagiya)
+ * [magento/magento2#21265](https://github.com/magento/magento2/pull/21265) -- Backend Module Manager disable icon fix. (by @speedy008)
+ * [magento/magento2#21301](https://github.com/magento/magento2/pull/21301) -- span tag for more swatches link (by @mageho)
+ * [magento/magento2#20308](https://github.com/magento/magento2/pull/20308) -- Small PHPDocs fixes [Backend module] (by @SikailoISM)
+ * [magento/magento2#20617](https://github.com/magento/magento2/pull/20617) -- 14882 product types xml doesn t allow numbers in model instance (by @lisovyievhenii)
+ * [magento/magento2#21272](https://github.com/magento/magento2/pull/21272) -- Fixed address book display horizontal scroll in responsive view (by @mage2pratik)
+ * [magento/magento2#19395](https://github.com/magento/magento2/pull/19395) -- store_view_code-column-has-empty-values-in-csv-17784. (by @Valant13)
+ * [magento/magento2#20071](https://github.com/magento/magento2/pull/20071) -- [Forwardport] [Backport] fixed store wise product filter issue (by @shikhamis11)
+ * [magento/magento2#20856](https://github.com/magento/magento2/pull/20856) -- ipad-view-order-summary-block (by @dipti2jcommerce)
+ * [magento/magento2#21298](https://github.com/magento/magento2/pull/21298) -- Fixed pagination drop-down size does not appropriate. (by @mage2pratik)
+ * [magento/magento2#21310](https://github.com/magento/magento2/pull/21310) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#20371](https://github.com/magento/magento2/pull/20371) -- Issue Fixed: #8086: Multiline admin field is broken (by @vivekkumarcedcoss)
+ * [magento/magento2#20621](https://github.com/magento/magento2/pull/20621) -- Fix referenced to "store", changing to "scope" in Framework/Mail components (by @gwharton)
+ * [magento/magento2#20596](https://github.com/magento/magento2/pull/20596) -- Optimize snail_case replacement to PascalCase (by @lbajsarowicz)
+ * [magento/magento2#21020](https://github.com/magento/magento2/pull/21020) -- Make the module list more deterministic (by @ajardin)
+ * [magento/magento2#18503](https://github.com/magento/magento2/pull/18503) -- Checkout - Fix JS error Cannot read property 'quoteData' of undefined (by @ihor-sviziev)
+ * [magento/magento2#19988](https://github.com/magento/magento2/pull/19988) -- Fix for issue 19983 Can't upload customer Image attribute programmatically (by @Nazar65)
+ * [magento/magento2#20043](https://github.com/magento/magento2/pull/20043) -- Make it possible to generate sales PDF's using the API (by @AntonEvers)
+ * [magento/magento2#20307](https://github.com/magento/magento2/pull/20307) -- Fixed issue #20305 Update button on payment checkout is not proper alligned (by @GovindaSharma)
+ * [magento/magento2#20583](https://github.com/magento/magento2/pull/20583) -- 13982 customer login block sets the title for the page when rendered (by @lisovyievhenii)
+ * [magento/magento2#20950](https://github.com/magento/magento2/pull/20950) -- magento/magento2#20773: Do not throw exception during autoload (by @Vinai)
+ * [magento/magento2#21045](https://github.com/magento/magento2/pull/21045) -- Update static block in nginx.conf.sample (by @jaideepghosh)
+ * [magento/magento2#21328](https://github.com/magento/magento2/pull/21328) -- Issue Fixed #21322 : Declarative schema: Omitting indexType throws exception (by @milindsingh)
+ * [magento/magento2#21335](https://github.com/magento/magento2/pull/21335) -- Fixed #15059 Cannot reorder from the first try (by @shikhamis11)
+ * [magento/magento2#21347](https://github.com/magento/magento2/pull/21347) -- Applied PHP-CS-Fixer for code cleanup. (by @yogeshsuhagiya)
+ * [magento/magento2#21360](https://github.com/magento/magento2/pull/21360) -- Solve #21359 Search with long string display horizontal scroll in front end (by @mageprince)
+ * [magento/magento2#21368](https://github.com/magento/magento2/pull/21368) -- Css property name issue (by @amol2jcommerce)
+ * [magento/magento2#20044](https://github.com/magento/magento2/pull/20044) -- Sitemap filename can't exceed 32 characters #13937 (by @irajneeshgupta)
+ * [magento/magento2#20339](https://github.com/magento/magento2/pull/20339) -- issue fixed #20337 Option Title breaking in two line because applying... (by @cedarvinda)
+ * [magento/magento2#20578](https://github.com/magento/magento2/pull/20578) -- Added original exception as the cause to the new exception on product delete error (by @woutersamaey)
+ * [magento/magento2#20858](https://github.com/magento/magento2/pull/20858) -- Update details.phtml (by @mageho)
+ * [magento/magento2#21105](https://github.com/magento/magento2/pull/21105) -- Fixed pagination issue in admin review grid (by @dominicfernando)
+ * [magento/magento2#21295](https://github.com/magento/magento2/pull/21295) -- Fix empty cart validation (by @wojtekn)
+ * [magento/magento2#21302](https://github.com/magento/magento2/pull/21302) -- Misconfigured aria-labelledby for product tabs (by @mageho)
+ * [magento/magento2#21330](https://github.com/magento/magento2/pull/21330) -- Change comment to "database" (by @DanielRuf)
+ * [magento/magento2#21395](https://github.com/magento/magento2/pull/21395) -- As low as displays incorrect pricing on category page, tax appears to be added twice #21383 (by @Jitheesh)
+ * [magento/magento2#21401](https://github.com/magento/magento2/pull/21401) -- Show error message when customer click on Add to cart button without selecting atleast one product from recently orderred list (by @mageprince)
+ * [magento/magento2#21405](https://github.com/magento/magento2/pull/21405) -- Removed unused else block and corrected return types (by @yogeshsuhagiya)
+ * [magento/magento2#21429](https://github.com/magento/magento2/pull/21429) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#21426](https://github.com/magento/magento2/pull/21426) -- fixes-for-product-page-product-in-website-multi-store-view-not-displa... (by @priti2jcommerce)
+ * [magento/magento2#21431](https://github.com/magento/magento2/pull/21431) -- Fix grammar (by @DanielRuf)
+ * [magento/magento2#21151](https://github.com/magento/magento2/pull/21151) -- Database Rollback not working M2.3.0 (by @Stepa4man)
+ * [magento/magento2#21458](https://github.com/magento/magento2/pull/21458) -- Elasticsearch6 implementation. (by @romainruaud)
+ * [magento/magento2#20316](https://github.com/magento/magento2/pull/20316) -- Change product_price_value in cart data section based on tax settings (by @NickdeK)
+ * [magento/magento2#20482](https://github.com/magento/magento2/pull/20482) -- [TASK] Remove translation of attribute store label in getAdditionalData (by @c-walter)
+ * [magento/magento2#21094](https://github.com/magento/magento2/pull/21094) -- Also populate the storesCache when importing product only on storevie… (by @hostep)
+ * [magento/magento2#21130](https://github.com/magento/magento2/pull/21130) -- Remove unused use statement in Wishlist Allcart Controller (by @oshancp)
+ * [magento/magento2#21275](https://github.com/magento/magento2/pull/21275) -- Static tests: forbid 'or' instead of '||' #21062. (by @novikor)
+ * [magento/magento2#21338](https://github.com/magento/magento2/pull/21338) -- [Catalog] [MediaStorage] Fix watermark in media application (by @progreg)
+ * [magento/magento2#21363](https://github.com/magento/magento2/pull/21363) -- [Catalog] Fixing the Products grid with default values on multi stores (by @eduard13)
+ * [magento/magento2#21356](https://github.com/magento/magento2/pull/21356) -- Checkout Page Cancel button is not working #21327 (by @Jitheesh)
+ * [magento/magento2#21443](https://github.com/magento/magento2/pull/21443) -- Fixed #21425 Date design change show not correctly value in backend (by @shikhamis11)
+ * [magento/magento2#21474](https://github.com/magento/magento2/pull/21474) -- Refactoring the Form class (by @eduard13)
+ * [magento/magento2#20079](https://github.com/magento/magento2/pull/20079) -- [2.3] Add support for validation message callback (by @floorz)
+ * [magento/magento2#20129](https://github.com/magento/magento2/pull/20129) -- Issue fixed #20128 : Date range returns the same start and end date (by @milindsingh)
+ * [magento/magento2#20818](https://github.com/magento/magento2/pull/20818) -- 14857: prevent cache drop for frontend caches on sitemap generation (by @david-fuehr)
+ * [magento/magento2#21079](https://github.com/magento/magento2/pull/21079) -- Fixes for product tabbing issue (by @prakash2jcommerce)
+ * [magento/magento2#21303](https://github.com/magento/magento2/pull/21303) -- Fix-issue-21292 Google Analytics isAnonymizedIpActive always true (by @Nazar65)
+ * [magento/magento2#21455](https://github.com/magento/magento2/pull/21455) -- Infinite redirects in Magento admin #21454 (by @Jitheesh)
+ * [magento/magento2#17668](https://github.com/magento/magento2/pull/17668) -- Adding property mapper for product eav attribute -> search weight. (by @bartoszkubicki)
+ * [magento/magento2#18705](https://github.com/magento/magento2/pull/18705) -- Correct child node load when multiple calls to CategoryManagement::ge… (by @pmclain)
+ * [magento/magento2#19637](https://github.com/magento/magento2/pull/19637) -- Fixed Issue #19632 - Backend Marketing Cart Price Rule Label Alignment Issue (by @speedy008)
+ * [magento/magento2#20239](https://github.com/magento/magento2/pull/20239) -- Fixed issue #20187 Downloadble Price duplicate issue (by @GovindaSharma)
+ * [magento/magento2#20484](https://github.com/magento/magento2/pull/20484) -- Fix performance leak in salesrule collection (by @david-fuehr)
+ * [magento/magento2#21170](https://github.com/magento/magento2/pull/21170) -- Fix issue with custom option file uploading (by @nikolaevas)
+ * [magento/magento2#21279](https://github.com/magento/magento2/pull/21279) -- Fixed: #21278, Add sort order on downloadable links (by @maheshWebkul721)
+ * [magento/magento2#21462](https://github.com/magento/magento2/pull/21462) -- URL rewrite fix while product website update using mass action (by @AnshuMishra17)
+ * [magento/magento2#21476](https://github.com/magento/magento2/pull/21476) -- Fix/issue 21192 (by @DenisSaltanahmedov)
+ * [magento/magento2#21503](https://github.com/magento/magento2/pull/21503) -- Remove setting of page title from Form/Register block and add title to customer_account_create layout (by @mfickers)
+ * [magento/magento2#19376](https://github.com/magento/magento2/pull/19376) -- 19276 - Fixed price renderer issue (by @sarfarazbheda)
+ * [magento/magento2#20391](https://github.com/magento/magento2/pull/20391) -- Success message is not showing when creating invoice & shipment simultaniously #19942 (by @XxXgeoXxX)
+ * [magento/magento2#20528](https://github.com/magento/magento2/pull/20528) -- Fix for #20527 [Admin] Configurable product variations table cell labels wrong position (by @vasilii-b)
+ * [magento/magento2#21498](https://github.com/magento/magento2/pull/21498) -- Setting default sorting #21493 (by @Jitheesh)
+ * [magento/magento2#21509](https://github.com/magento/magento2/pull/21509) -- Fix: Cart is emptied when enter is pressed after changing product quantity (by @lfluvisotto)
+ * [magento/magento2#21536](https://github.com/magento/magento2/pull/21536) -- Fix type hints and replace deprecated method usage (by @avstudnitz)
+ * [magento/magento2#21534](https://github.com/magento/magento2/pull/21534) -- correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#13184](https://github.com/magento/magento2/pull/13184) -- [FEATURE] added ability to create default/fixed value nodes during XSD Schema Validation (by @matthiasherold)
+ * [magento/magento2#19635](https://github.com/magento/magento2/pull/19635) -- Patch 18017 magento 23 (by @niravkrish)
+ * [magento/magento2#20429](https://github.com/magento/magento2/pull/20429) -- 'fixes-for-#20414' :: Recent orders grid not aligned from left in mob… (by @nainesh2jcommerce)
+ * [magento/magento2#20938](https://github.com/magento/magento2/pull/20938) -- Fixed Massaction design with submenu on grid pages (by @ananth-iyer)
+ * [magento/magento2#21074](https://github.com/magento/magento2/pull/21074) -- Added space above error message. (by @suryakant-krish)
+ * [magento/magento2#21371](https://github.com/magento/magento2/pull/21371) -- Fix Admin Customizable Options Dropdown sort_order issue (by @omiroshnichenko)
+ * [magento/magento2#21420](https://github.com/magento/magento2/pull/21420) -- Wishlist review summary (by @Den4ik)
+ * [magento/magento2#21542](https://github.com/magento/magento2/pull/21542) -- Remove Environment emulation for better performance on sitemap generation (by @Nazar65)
+ * [magento/magento2#21611](https://github.com/magento/magento2/pull/21611) -- Advanced-Search-layout-not-proper (by @amol2jcommerce)
+ * [magento/magento2#21638](https://github.com/magento/magento2/pull/21638) -- Minicart search logo not vertically aligned (by @amol2jcommerce)
+ * [magento/magento2#21685](https://github.com/magento/magento2/pull/21685) -- Spelling Correction (by @ansari-krish)
+ * [magento/magento2#21701](https://github.com/magento/magento2/pull/21701) -- Fix Broken Tax Rate Search Filter Admin grid #21521 (by @tuyennn)
+ * [magento/magento2#21716](https://github.com/magento/magento2/pull/21716) -- [DB] Remove unused variable (by @eduard13)
+ * [magento/magento2#20001](https://github.com/magento/magento2/pull/20001) -- #13612 Fixed-Quantity_and_stock_status when visibility set to storefront throwing exception (by @aditisinghcedcoss)
+ * [magento/magento2#21180](https://github.com/magento/magento2/pull/21180) -- [ForwardPort] #18896 Add Mexico Regions (by @osrecio)
+ * [magento/magento2#21189](https://github.com/magento/magento2/pull/21189) -- Fix/issue 18761 (by @DenisSaltanahmedov)
+ * [magento/magento2#21468](https://github.com/magento/magento2/pull/21468) -- Fix long string display horizontal scroll in all pages in admin (by @mageprince)
+ * [magento/magento2#21444](https://github.com/magento/magento2/pull/21444) -- Disable dropdown in JavaScript and CSS Settings in developer configuration (by @ananth-iyer)
+ * [magento/magento2#21600](https://github.com/magento/magento2/pull/21600) -- Fixed typo mistake (by @yogeshsuhagiya)
+ * [magento/magento2#21582](https://github.com/magento/magento2/pull/21582) -- Fixed Whitespace issues for related, cross and upsell grids (by @amol2jcommerce)
+ * [magento/magento2#21683](https://github.com/magento/magento2/pull/21683) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#21731](https://github.com/magento/magento2/pull/21731) -- Fixed wrong proxing in the inventory observer (by @VitaliyBoyko)
+ * [magento/magento2#21740](https://github.com/magento/magento2/pull/21740) -- Removed extra whitespaces (by @yogeshsuhagiya)
+ * [magento/magento2#19859](https://github.com/magento/magento2/pull/19859) -- MUI controller lacks JSON response, instead returns status 200 with empty body (by @woutersamaey)
+ * [magento/magento2#20512](https://github.com/magento/magento2/pull/20512) -- Sorting by Websites not working in product grid in backoffice #20511 (by @XxXgeoXxX)
+ * [magento/magento2#20785](https://github.com/magento/magento2/pull/20785) -- [Forwardport] Use batches and direct queries to fix sales address upgrade (by @ihor-sviziev)
+ * [magento/magento2#20840](https://github.com/magento/magento2/pull/20840) -- Missed form validation in Admin Order Address Edit route sales/order/address (by @XxXgeoXxX)
+ * [magento/magento2#21713](https://github.com/magento/magento2/pull/21713) -- Resolve Issue : Search REST API returns wrong total_count (by @ronak2ram)
+ * [magento/magento2#18633](https://github.com/magento/magento2/pull/18633) -- Fix for issue magento/magento2#18630 (by @dverkade)
+ * [magento/magento2#21649](https://github.com/magento/magento2/pull/21649) -- Fix #21648 Checkout Agreements checkbox missing asterisk (by @Karlasa)
+ * [magento/magento2#21782](https://github.com/magento/magento2/pull/21782) -- Edited headings to be more consistent (by @mikeshatch)
+ * [magento/magento2#21288](https://github.com/magento/magento2/pull/21288) -- magento/magento2#12396: Total Amount cart rule without tax (by @AleksLi)
+ * [magento/magento2#21469](https://github.com/magento/magento2/pull/21469) -- Update price-bundle.js so that correct tier price is calculated while displaying in bundle product (by @adarshkhatri)
+ * [magento/magento2#21575](https://github.com/magento/magento2/pull/21575) -- Fix for issue #21510: Can't access backend indexers page after creating a custom index (by @ccasciotti)
+ * [magento/magento2#21751](https://github.com/magento/magento2/pull/21751) -- fix #21750 remove translation of product attribute label (by @Karlasa)
+ * [magento/magento2#21774](https://github.com/magento/magento2/pull/21774) -- MSI: Add deprecation message to CatalogInventory SPIs (by @lbajsarowicz)
+ * [magento/magento2#21785](https://github.com/magento/magento2/pull/21785) -- [Forwardport] [Checkout] Fix clearing admin quote address when removing all items (by @eduard13)
+ * [magento/magento2#21795](https://github.com/magento/magento2/pull/21795) -- [Wishlist] Covering the Wishlist classes by integration and unit tests (by @eduard13)
+ * [magento/magento2#21791](https://github.com/magento/magento2/pull/21791) -- #19835 Fix admin header buttons flicker (by @OlehWolf)
+ * [magento/magento2#21826](https://github.com/magento/magento2/pull/21826) -- Flying Fists of Kung Fu Cleanup (by @lefte)
+ * [magento/magento2#21376](https://github.com/magento/magento2/pull/21376) -- Fixed Inline block edit identifier validation (by @niravkrish)
+ * [magento/magento2#21399](https://github.com/magento/magento2/pull/21399) -- Fixed : Additional addresses DataTable Pagination count displaying wrong (by @Dharmeshvaja91)
+ * [magento/magento2#21693](https://github.com/magento/magento2/pull/21693) -- Fix #21692 #21752 - logic in constructor of address validator and Locale Resolver check (by @Bartlomiejsz)
+ * [magento/magento2#21815](https://github.com/magento/magento2/pull/21815) -- Fill data_hash from BULK response with correct data (by @silyadev)
+ * [magento/magento2#21820](https://github.com/magento/magento2/pull/21820) -- #20825 Missing required argument $productAvailabilityChecks of Magent... (by @kisroman)
+ * [magento/magento2#21843](https://github.com/magento/magento2/pull/21843) -- Fix typo (by @nasanabri)
+ * [magento/magento2#21851](https://github.com/magento/magento2/pull/21851) -- [Frontend] Fixing the accessibility standards violation (by @eduard13)
+ * [magento/magento2#21884](https://github.com/magento/magento2/pull/21884) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#19727](https://github.com/magento/magento2/pull/19727) -- Use repository to load order when manually creating an invoice (by @JeroenVanLeusden)
+ * [magento/magento2#20212](https://github.com/magento/magento2/pull/20212) -- Secure errors directory (by @schmengler)
+ * [magento/magento2#20774](https://github.com/magento/magento2/pull/20774) -- 20434 consider url rewrite when change product visibility attribute 2 3 (by @VitaliyBoyko)
+ * [magento/magento2#21283](https://github.com/magento/magento2/pull/21283) -- Fixed calculation of 'Total' column under "Last Orders" listing on the admin dashboard (by @rav-redchamps)
+ * [magento/magento2#21621](https://github.com/magento/magento2/pull/21621) -- Updated review text in admin menu (by @gelanivishal)
+ * [magento/magento2#21778](https://github.com/magento/magento2/pull/21778) -- Multishipping checkout agreements now are the same as default checkout agreements (by @samuel27m)
+ * [magento/magento2#21825](https://github.com/magento/magento2/pull/21825) -- When setting `background` for labels explicitly the labels in admin will (by @TomashKhamlai)
+ * [magento/magento2#21880](https://github.com/magento/magento2/pull/21880) -- magento/magento2#21001 - fix unit tests, by passing currency to numbe… (by @kdegorski)
+ * [magento/magento2#21899](https://github.com/magento/magento2/pull/21899) -- Trigger contentUpdate on reviews load (by @jahvi)
+ * [magento/magento2#19871](https://github.com/magento/magento2/pull/19871) -- Added custom_options file upload directory to .gitignore. (by @erfanimani)
+ * [magento/magento2#21697](https://github.com/magento/magento2/pull/21697) -- Root exception not logged on QuoteManagement::submitQuote (by @david-fuehr)
+ * [magento/magento2#21776](https://github.com/magento/magento2/pull/21776) -- #21734 Error in JS validation rule (by @kisroman)
+ * [magento/magento2#21822](https://github.com/magento/magento2/pull/21822) -- Refactor \Order\Shipment\AddTrack Controller to use ResultInterface (by @JeroenVanLeusden)
+ * [magento/magento2#21919](https://github.com/magento/magento2/pull/21919) -- Fix gallery full-screen triggers (by @iGerchak)
+ * [magento/magento2#21921](https://github.com/magento/magento2/pull/21921) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#18067](https://github.com/magento/magento2/pull/18067) -- Fixes variables in configuration fields not being replaced with actual value… (by @hostep)
+ * [magento/magento2#19265](https://github.com/magento/magento2/pull/19265) -- add missing fields to quote_address (by @ErikPel)
+ * [magento/magento2#20526](https://github.com/magento/magento2/pull/20526) -- [EAV] Improving the EAV attribute code validation, by not allowing to use n... (by @eduard13)
+ * [magento/magento2#20898](https://github.com/magento/magento2/pull/20898) -- Fixed #13319 , Incorrect method return value in \Magento\Shipping\Model\Carrier\AbstractCarrier::getTotalNumOfBoxes() (by @cedmudit)
+ * [magento/magento2#21053](https://github.com/magento/magento2/pull/21053) -- Allow redis compression options to be specified during `setup:install` process (by @cmacdonald-au)
+ * [magento/magento2#21065](https://github.com/magento/magento2/pull/21065) -- Refactored Retrieval Of Entity ID To Make AbstractDataProvider Usable (by @sprankhub)
+ * [magento/magento2#21135](https://github.com/magento/magento2/pull/21135) -- Fix eav form foreach error #21134 (by @wojtekn)
+ * [magento/magento2#21465](https://github.com/magento/magento2/pull/21465) -- Module data fixtures for @magentoDataFixtureBeforeTransaction annotations (by @Vinai)
+ * [magento/magento2#21484](https://github.com/magento/magento2/pull/21484) -- Populate label elements for street address fields in checkout (by @scottsb)
+ * [magento/magento2#21511](https://github.com/magento/magento2/pull/21511) -- SHQ18-1568 Updating UPS endpoint to use https. Http is no longer reli… (by @wsajosh)
+ * [magento/magento2#21749](https://github.com/magento/magento2/pull/21749) -- Sitemap Generation - Product URL check null fix (by @asim-vax)
+ * [magento/magento2#21834](https://github.com/magento/magento2/pull/21834) -- Add argument to show filter text in URL rewrite grid after click on back button (by @vbmagento)
+ * [magento/magento2#18386](https://github.com/magento/magento2/pull/18386) -- Cleaner documentation for Travis CI static tests (by @Thundar)
+ * [magento/magento2#19765](https://github.com/magento/magento2/pull/19765) -- Resolved undefined index issue for import adapter (by @jaimin-ktpl)
+ * [magento/magento2#21216](https://github.com/magento/magento2/pull/21216) -- Elasticsearch price fieldname is incorrect during indexing when storeId and websiteId do not match (by @alexander-aleman)
+ * [magento/magento2#21767](https://github.com/magento/magento2/pull/21767) -- Magento should create a log entry if an observer does not implement ObserverInterface (by @Nazar65)
+ * [magento/magento2#21896](https://github.com/magento/magento2/pull/21896) -- Contact us layout in I-pad not proper (by @amol2jcommerce)
+ * [magento/magento2#21927](https://github.com/magento/magento2/pull/21927) -- Removing obsolete non-English translation files, these aren't transla… (by @hostep)
+ * [magento/magento2#21940](https://github.com/magento/magento2/pull/21940) -- [UI] Adjusting the Magento_Ui typos (by @eduard13)
+ * [magento/magento2#22026](https://github.com/magento/magento2/pull/22026) -- Removed two time zlib.output_compression on section (by @samuel20miglia)
+ * [magento/magento2#22055](https://github.com/magento/magento2/pull/22055) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22056](https://github.com/magento/magento2/pull/22056) -- Spelling Correction (by @ansari-krish)
+ * [magento/magento2#22075](https://github.com/magento/magento2/pull/22075) -- Add space after asterisk to show as list (by @likemusic)
+ * [magento/magento2#18440](https://github.com/magento/magento2/pull/18440) -- [2.3] Reworked gallery.phtml to move generation of gallery json strings to own block functions (by @gwharton)
+ * [magento/magento2#18933](https://github.com/magento/magento2/pull/18933) -- Update typeReferenceBlock definition (by @leandrommedeiros)
+ * [magento/magento2#19987](https://github.com/magento/magento2/pull/19987) -- Fix broken widget placeholders after upgrading from 2.2 (by @vovayatsyuk)
+ * [magento/magento2#21008](https://github.com/magento/magento2/pull/21008) -- [Widget] Fixing the multidimensional array as value for the widget's parameter (by @eduard13)
+ * [magento/magento2#21545](https://github.com/magento/magento2/pull/21545) -- Ensure `__toString()` catches all error types (by @tylerssn)
+ * [magento/magento2#21647](https://github.com/magento/magento2/pull/21647) -- MFTF / Remove redundant ActionGroups (by @lbajsarowicz)
+ * [magento/magento2#21754](https://github.com/magento/magento2/pull/21754) -- Fixes nested array for used products cache key (by @michaellehmkuhl)
+ * [magento/magento2#21818](https://github.com/magento/magento2/pull/21818) -- Remove all marketing get params on Varnish to minimize the cache objects (by @ihor-sviziev)
+ * [magento/magento2#21928](https://github.com/magento/magento2/pull/21928) -- Set minimum qty 1 after cast to int (by @likemusic)
+ * [magento/magento2#21948](https://github.com/magento/magento2/pull/21948) -- Fixed WhiteSpace issue in product grid (by @shrinet)
+ * [magento/magento2#21966](https://github.com/magento/magento2/pull/21966) -- Remove timestap from current date when saving product special price from date (by @JeroenVanLeusden)
+ * [magento/magento2#22054](https://github.com/magento/magento2/pull/22054) -- fix strpos args order (by @quasilyte)
+ * [magento/magento2#20951](https://github.com/magento/magento2/pull/20951) -- Direct STDERR output when listing crontab to /dev/null (by @danielatdattrixdotcom)
+ * [magento/magento2#21023](https://github.com/magento/magento2/pull/21023) -- Corrected the translation for comment tag (by @yogeshsuhagiya)
+ * [magento/magento2#21790](https://github.com/magento/magento2/pull/21790) -- #21789 Fix gallery event observer (by @Den4ik)
+ * [magento/magento2#21999](https://github.com/magento/magento2/pull/21999) -- #21998 Magento/ImportExport/Model/Import has _coreConfig declared dyn… (by @kisroman)
+ * [magento/magento2#22012](https://github.com/magento/magento2/pull/22012) -- Correct bug 21993 config:set not storing scoped values (by @ochnygosch)
+ * [magento/magento2#22081](https://github.com/magento/magento2/pull/22081) -- phpcs error on rule classes - must be of the type integer (by @Nazar65)
+ * [magento/magento2#21083](https://github.com/magento/magento2/pull/21083) -- Turn on edit mode for product repository when adding children (by @pedrosousa13)
+ * [magento/magento2#21540](https://github.com/magento/magento2/pull/21540) -- Move Magento\Framework\HTTP\ClientInterface preference to app/etc/di.xml (by @kassner)
+ * [magento/magento2#21932](https://github.com/magento/magento2/pull/21932) -- Admin-Order-Create-Set-Save-address-checkbox-true-as-default-#106 (by @krnshah)
+ * [magento/magento2#22002](https://github.com/magento/magento2/pull/22002) -- Removed unwanted interface implementation (by @vishal-7037)
+ * [magento/magento2#22135](https://github.com/magento/magento2/pull/22135) -- Fix broken link in README.md (by @samuel27m)
+ * [magento/magento2#21821](https://github.com/magento/magento2/pull/21821) -- Aligning tooltip action on dashboard (by @rafaelstz)
+ * [magento/magento2#22046](https://github.com/magento/magento2/pull/22046) -- FIX for issue #21916 - Elasticsearch6 generation does not exist (by @phoenix128)
+ * [magento/magento2#22091](https://github.com/magento/magento2/pull/22091) -- Fixed assignment of the guest customer to the guest group when 'Automatic Assignment by VAT ID' is enabled (by @vovayatsyuk)
+ * [magento/magento2#22117](https://github.com/magento/magento2/pull/22117) -- Previous scrolling to invalid form element is not being canceled on h… (by @yvechirko)
+ * [magento/magento2#22128](https://github.com/magento/magento2/pull/22128) -- Fixes issue - #21824. "save_parameters_in_session" set to true for admin user grid (by @jayankaghosh)
+ * [magento/magento2#22151](https://github.com/magento/magento2/pull/22151) -- Update PatchApplierTest.php - Corrected Spelling (by @ryantfowler)
+ * [magento/magento2#22171](https://github.com/magento/magento2/pull/22171) -- unregister phar only when appropriate (by @adaudenthun)
+ * [magento/magento2#22184](https://github.com/magento/magento2/pull/22184) -- Removing incorrect less selector '.abs-cleafix', it has a typo + it i… (by @hostep)
+ * [magento/magento2#22195](https://github.com/magento/magento2/pull/22195) -- 22166: updated README to follow-up the switch from Bugcrowd to hackerone (by @mautz-et-tong)
+ * [magento/magento2#22201](https://github.com/magento/magento2/pull/22201) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22205](https://github.com/magento/magento2/pull/22205) -- Translated exception message (by @yogeshsuhagiya)
+ * [magento/magento2#22207](https://github.com/magento/magento2/pull/22207) -- Translate comment tag in DHL config settings (by @yogeshsuhagiya)
+ * [magento/magento2#22210](https://github.com/magento/magento2/pull/22210) -- Typography_change (by @krnshah)
+ * [magento/magento2#22239](https://github.com/magento/magento2/pull/22239) -- Spelling Correction (by @ansari-krish)
+ * [magento/magento2#22258](https://github.com/magento/magento2/pull/22258) -- Use proper variables for tooltip styles on tablet devices (by @vovayatsyuk)
+ * [magento/magento2#19530](https://github.com/magento/magento2/pull/19530) -- Fixed fatal error if upgrading from Magento v2.0.0 to v2.3 and non system attributes missing (by @suneet64)
+ * [magento/magento2#20182](https://github.com/magento/magento2/pull/20182) -- Use correct base path to check if setup folder exists (by @JeroenVanLeusden)
+ * [magento/magento2#20832](https://github.com/magento/magento2/pull/20832) -- fixes-for-customer-name-twice-desktop (by @priti2jcommerce)
+ * [magento/magento2#21501](https://github.com/magento/magento2/pull/21501) -- Same product quantity not increment when added with guest user. #21375 (by @Jitheesh)
+ * [magento/magento2#21788](https://github.com/magento/magento2/pull/21788) -- #21786 Fixed asynchronous email sending for the sales entities which were created with disabled email sending (by @serhiyzhovnir)
+ * [magento/magento2#22073](https://github.com/magento/magento2/pull/22073) -- Bug fix for #21753 (2.3-develop) (by @crankycyclops)
+ * [magento/magento2#22220](https://github.com/magento/magento2/pull/22220) -- Remove an unused variable from order_list fixture in the integration test suite. (by @evktalo)
+ * [magento/magento2#20295](https://github.com/magento/magento2/pull/20295) -- Small PHPDocs fixes (by @SikailoISM)
+ * [magento/magento2#20378](https://github.com/magento/magento2/pull/20378) -- 12386: Order Status resets to default Status after Partial Refund. (by @nmalevanec)
+ * [magento/magento2#20772](https://github.com/magento/magento2/pull/20772) -- Fixed inactive admin user token (by @mage2pratik)
+ * [magento/magento2#20968](https://github.com/magento/magento2/pull/20968) -- Remove direct $_SERVER variable use (by @dominicfernando)
+ * [magento/magento2#21869](https://github.com/magento/magento2/pull/21869) -- Fix importFromArray by setting _isCollectionLoaded to true after import (by @slackerzz)
+ * [magento/magento2#22031](https://github.com/magento/magento2/pull/22031) -- Fixed typo error in sales grid at admin (by @vishal-7037)
+ * [magento/magento2#22160](https://github.com/magento/magento2/pull/22160) -- Remove duplicate styling (by @arnoudhgz)
+ * [magento/magento2#22197](https://github.com/magento/magento2/pull/22197) -- Fix > Exception #0 (BadMethodCallException): Missing required argument $msrpPriceCalculators of Magento\Msrp\Pricing\MsrpPriceCalculator. (by @lfluvisotto)
+ * [magento/magento2#22202](https://github.com/magento/magento2/pull/22202) -- Fixed wrong url redirect when edit product review from product view page (by @ravi-chandra3197)
+ * [magento/magento2#22340](https://github.com/magento/magento2/pull/22340) -- Fixed Value of created_at and updated_at columns (by @shikhamis11)
+ * [magento/magento2#22357](https://github.com/magento/magento2/pull/22357) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#21378](https://github.com/magento/magento2/pull/21378) -- Fix for issue #21299. Change HEAD action mapping to GET action interface and add HEAD request handling (by @mattijv)
+ * [magento/magento2#21936](https://github.com/magento/magento2/pull/21936) -- 21907: Place order button disabled after failed email address validation check with braintree credit card (by @kisroman)
+ * [magento/magento2#21968](https://github.com/magento/magento2/pull/21968) -- Layered Navigation: “Equalize product count” not working as expected (by @Nazar65)
+ * [magento/magento2#22133](https://github.com/magento/magento2/pull/22133) -- setAttributeSetFilter accepts both integer and integer-array (by @NiklasBr)
+ * [magento/magento2#22154](https://github.com/magento/magento2/pull/22154) -- Fiexed 22152 - Click on search icon it does not working on admin grid sticky header (by @niravkrish)
+ * [magento/magento2#22200](https://github.com/magento/magento2/pull/22200) -- fatalErrorHandler returns 500 only on fatal errors (by @wexo-team)
+ * [magento/magento2#22226](https://github.com/magento/magento2/pull/22226) -- Remove all marketing get params on Varnish to minimize the cache objects (added facebook and bronto parameter) (by @lfluvisotto)
+ * [magento/magento2#22265](https://github.com/magento/magento2/pull/22265) -- Show the correct subtotal amount for partial creditmemo email (by @kassner)
+ * [magento/magento2#22281](https://github.com/magento/magento2/pull/22281) -- Fixed "Please specify the admin custom URL" error on app:config:import CLI command (by @davidalger)
+ * [magento/magento2#22298](https://github.com/magento/magento2/pull/22298) -- Alignment Issue While Editing Order Data containing Downlodable Products with "Links can be purchased separately" enabled in Admin Section (by @ansari-krish)
+ * [magento/magento2#22318](https://github.com/magento/magento2/pull/22318) -- #21747 Fix catalog_product_flat_data attribute value for store during indexer (by @OlehWolf)
+ * [magento/magento2#22320](https://github.com/magento/magento2/pull/22320) -- Removed redundant Gallery subscription for catalog rules (by @VitaliyBoyko)
+ * [magento/magento2#22321](https://github.com/magento/magento2/pull/22321) -- magento/magento2#22317: CodeSniffer should not mark correctly aligned DocBlock elements as code style violation. (by @p-bystritsky)
+ * [magento/magento2#22332](https://github.com/magento/magento2/pull/22332) -- Fixes a less compilation error: '.no-link a' isn't defined when .emai… (by @hostep)
+ * [magento/magento2#22339](https://github.com/magento/magento2/pull/22339) -- Spelling Mistake in Setup > Patch (by @sudhanshu-bajaj)
+ * [magento/magento2#22362](https://github.com/magento/magento2/pull/22362) -- [Fixed] Category Update without "name" cannot be saved in scope "all" with REST API (by @niravkrish)
+ * [magento/magento2#22381](https://github.com/magento/magento2/pull/22381) -- Qty box visibility issue in wishlist when product is out of stock (by @ansari-krish)
+ * [magento/magento2#19993](https://github.com/magento/magento2/pull/19993) -- fixed issue of Backup tool not correctly detecting .maintenance.flag (by @hiren0241)
+ * [magento/magento2#20174](https://github.com/magento/magento2/pull/20174) -- Fix issues inserting Widgets with nested WYSIWYGs (by @molovo)
+ * [magento/magento2#21670](https://github.com/magento/magento2/pull/21670) -- Fix getSize method after clearing data collection (by @sergeynezbritskiy)
+ * [magento/magento2#21711](https://github.com/magento/magento2/pull/21711) -- Purchasing a downloadable product as guest then creating an account on the onepagesuccess step doesn't link product with account (by @Jitheesh)
+ * [magento/magento2#21756](https://github.com/magento/magento2/pull/21756) -- Fixes race condition when building merged css/js file during simultaneous requests (by @Ian410)
+ * [magento/magento2#21816](https://github.com/magento/magento2/pull/21816) -- #21779 Adminhtml textarea field doesn't accept maxlength (by @kisroman)
+ * [magento/magento2#22233](https://github.com/magento/magento2/pull/22233) -- [Fixed] Full Tax Summary missing calculation Admin create order (by @niravkrish)
+ * [magento/magento2#22263](https://github.com/magento/magento2/pull/22263) -- Prevented /Magento/Sales/Model/Service/InvoiceService.php incorrectly… (by @ryanpalmerweb)
+ * [magento/magento2#22382](https://github.com/magento/magento2/pull/22382) -- Don't skip row on import if image not available. (by @Nazar65)
+ * [magento/magento2#22420](https://github.com/magento/magento2/pull/22420) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#22421](https://github.com/magento/magento2/pull/22421) -- Spelling correction (by @ansari-krish)
+ * [magento/magento2#18336](https://github.com/magento/magento2/pull/18336) -- add more CDATA-related tests for `Magento\Framework\Config\Dom::merge` and fix failing ones (by @enl)
+ * [magento/magento2#19806](https://github.com/magento/magento2/pull/19806) -- Fixed Changing sample for downloadable product failure (by @ravi-chandra3197)
+ * [magento/magento2#21772](https://github.com/magento/magento2/pull/21772) -- Make sure Yes/No attribute Layered Navigation filter uses index (by @stkec)
+ * [magento/magento2#21797](https://github.com/magento/magento2/pull/21797) -- magento/magento2#8035: Join extension attributes are not added to Order results (REST api) (by @swnsma)
+ * [magento/magento2#21979](https://github.com/magento/magento2/pull/21979) -- [Component Rule] Revert es6 variable declarations (by @Den4ik)
+ * [magento/magento2#22033](https://github.com/magento/magento2/pull/22033) -- Add multibyte support for attributeSource getOptionId method (by @gomencal)
+ * [magento/magento2#22082](https://github.com/magento/magento2/pull/22082) -- Remove fotorama.min.js (by @iGerchak)
+ * [magento/magento2#22089](https://github.com/magento/magento2/pull/22089) -- Fotorama - disabling swipe on the item with class "disableSwipe" (by @iGerchak)
+ * [magento/magento2#22291](https://github.com/magento/magento2/pull/22291) -- Fixed #22223 Missing/Wrong data display on downloadable report table … (by @shikhamis11)
+ * [magento/magento2#22364](https://github.com/magento/magento2/pull/22364) -- Fix buttonId for credit memo button on admin invoice view (by @kassner)
+ * [magento/magento2#21787](https://github.com/magento/magento2/pull/21787) -- Fix for Issue #7227: "x_forwarded_for" value is always empty in Order object (by @cmuench)
+ * [magento/magento2#22059](https://github.com/magento/magento2/pull/22059) -- #22047 Feature: Newrelic transaction name based on CLI name (by @lbajsarowicz)
+ * [magento/magento2#22074](https://github.com/magento/magento2/pull/22074) -- Remove @SuppressWarnings and optimize imports on Category View (by @arnoudhgz)
+ * [magento/magento2#22178](https://github.com/magento/magento2/pull/22178) -- #21737 Duplicating product with translated url keys over multiple sto… (by @yvechirko)
+ * [magento/magento2#22324](https://github.com/magento/magento2/pull/22324) -- Adding a validation before adding or executing layout generator class. (by @tiagosampaio)
+ * [magento/magento2#22475](https://github.com/magento/magento2/pull/22475) -- Fixed Dependency on Backup Settings Configuration (by @keyuremipro)
+ * [magento/magento2#22285](https://github.com/magento/magento2/pull/22285) -- make return_path_email and set_return_path configurable on website and store scope as well (by @mhauri)
+ * [magento/magento2#22411](https://github.com/magento/magento2/pull/22411) -- Checkout Totals Sort Order fields can't be empty and should be a number (by @barbanet)
+ * [magento/magento2#22424](https://github.com/magento/magento2/pull/22424) -- PUT /V1/products/:sku/media/:entryId does not change the file (by @Nazar65)
+ * [magento/magento2#22446](https://github.com/magento/magento2/pull/22446) -- Removes usage of classes which don't exist from DB migration scripts. (by @hostep)
+ * [magento/magento2#22456](https://github.com/magento/magento2/pull/22456) -- Fixed issue of drop-down arrow direction in cart price rule (by @hiren0241)
+ * [magento/magento2#22469](https://github.com/magento/magento2/pull/22469) -- Fix #20111 - display variables in popup while editing existing email template (by @Bartlomiejsz)
+ * [magento/magento2#22470](https://github.com/magento/magento2/pull/22470) -- Correct spelling (by @ravi-chandra3197)
+ * [magento/magento2#18541](https://github.com/magento/magento2/pull/18541) -- Set view models as shareable by default (by @thomas-kl1)
+ * [magento/magento2#21150](https://github.com/magento/magento2/pull/21150) -- Can't scroll in modal popup on i os (by @priti2jcommerce)
+ * [magento/magento2#21963](https://github.com/magento/magento2/pull/21963) -- Fixed shipping method block alignment issue (by @vishal-7037)
+ * [magento/magento2#22276](https://github.com/magento/magento2/pull/22276) -- only trigger livereload by .css files (by @torhoehn)
+ * [magento/magento2#22302](https://github.com/magento/magento2/pull/22302) -- #22299: Cms block cache key does not contain the store id (by @tzyganu)
+ * [magento/magento2#22466](https://github.com/magento/magento2/pull/22466) -- Fix configurable dropdown showing tax incorrectly in 2.3-develop (by @danielpfarmer)
+ * [magento/magento2#19653](https://github.com/magento/magento2/pull/19653) -- Adding product from wishlist not adding to cart showing warning message. (by @khodu)
+ * [magento/magento2#20842](https://github.com/magento/magento2/pull/20842) -- REST products update category_ids cannot be removed (by @ygyryn)
+ * [magento/magento2#21486](https://github.com/magento/magento2/pull/21486) -- Fix for issue #21477 sets CURRENT_TIMESTAMP on updated_at fields (by @dverkade)
+ * [magento/magento2#21549](https://github.com/magento/magento2/pull/21549) -- Fixed curl adapter to properly set http version based on $http_ver argument (by @davidalger)
+ * [magento/magento2#21633](https://github.com/magento/magento2/pull/21633) -- [Forwardport] Resolve incorrect scope code selection when the requested scopeCode is null (by @mage2pratik)
+ * [magento/magento2#19913](https://github.com/magento/magento2/pull/19913) -- [#19908] locale in rest calls is always default locale (by @jwundrak)
+ * [magento/magento2#21856](https://github.com/magento/magento2/pull/21856) -- 21842: don't cache absolute file paths in validator factory (by @david-fuehr)
+ * [magento/magento2#22147](https://github.com/magento/magento2/pull/22147) -- Fixed #22052 Customer account confirmation is overwritten by backend customer save (by @shikhamis11)
+ * [magento/magento2#22132](https://github.com/magento/magento2/pull/22132) -- Error on design configuration save with imageUploader form element po… (by @yvechirko)
+ * [magento/magento2#22149](https://github.com/magento/magento2/pull/22149) -- Fix #12802 - allow to override preference over CartInterface and return correct object from QuoteRepository (by @Bartlomiejsz)
+ * [magento/magento2#22230](https://github.com/magento/magento2/pull/22230) -- Shortening currency list in Configuration->General (replace PR #20397) (by @melaxon)
+ * [magento/magento2#22399](https://github.com/magento/magento2/pull/22399) -- Fix the invalid currency error in credit card payment of PayPal Payflow Pro or Payments Pro (by @Hailong)
+ * [magento/magento2#22405](https://github.com/magento/magento2/pull/22405) -- [Fixed] Checkout Section: Shipping step is getting skipped when customer hitting direct payment step URL (by @niravkrish)
+
+2.3.0
+=============
+To get detailed information about changes in Magento 2.3.0, see the [Release Notes](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html)
+
+2.2.0
+=============
+To get detailed information about changes in Magento 2.2.0, see the [Release Notes](https://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html)
+
+2.1.0
+=============
+To get detailed information about changes in Magento 2.1.0, please visit [Magento Community Edition (CE) Release Notes](https://devdocs.magento.com/guides/v2.3/release-notes/ReleaseNotes2.1.0CE.html "Magento Community Edition (CE) Release Notes")
+
+2.0.0
+=============
+* Fixed bugs:
+ * Fixed an issue where discount to the shipping amount was not applied during invoice creation
+ * Fixed an issue where inline translations did not work correctly for phrases with special characters
+ * Eliminated multiple escaping in the inline translation pop-up
+ * Fixed an issue where searching in Billing Agreements grid in Admin resulted in an SQL
+ * Fixed the Refresh Lifetime Statistics functionality in Reports
+ * Increased the limit of cookies per domain, according to following recommendations https://tools.ietf.org/html/rfc6265#section-6.1
+ * Fixed filtering by date in grids
+ * Fixed an issue where Totals were not calculated correctly if discount was applied when placing an order from Admin
+ * Fixed filtering of online customers by session Start Time
+ * Fixed an issue where it was impossible to register a customer on the storefront if an attribute with file type was required
+ * Fixed the issues in the Custom Admin URL with https functionality
+ * Fixed an issue where the category storefront URL did not include its parents
+ * Fixed an issue where Product API did not work properly for not default store code
+ * Fixed issues with adding images for a first product in a new attribute set
+ * Fixed an issue where it was impossible to create a credit memo for the order with downloadable product and sales rule applied
+ * Fixed an issue where it was impossible to manually add products to a configurable product
+ * Fixed an issue with custom timezone
+
+2.0.0-rc2
+=============
+* Fixed bugs:
+ * Fixed an issue where video didn’t play on iPad and iPhone
+ * Fixed an issue where Admin panel was not accessible if port was used in URL
+ * Fixed an issue where database name could not be changed after fail during installation process
+ * Fixed an issue where bundle items quantities could not be saved when editing a bundle product in a wishlist on the storefront
+ * Fixed PHP issue which appeared during Text Swatch product attribute creation
+ * Fixed Mini Shopping Cart re-sizing after removing the product
+ * Fixed an issue with negative subtotal during PayPal checkout
+ * Fixed inconsistent credit card validation
+ * Fixed an issue where the Product Gallery did not completely overlay the bottom layer in the full-screen view
+ * Fixed an issue where the Product Gallery could not be easily opened in the full-screen view
+ * Fixed an issue where the “+” icon was displayed on video preview hover
+ * Fixed an issue where video preview was visible under video player
+ * Fixed an issue where 'Admin' was not a required field for the new Swatch
+ * Fixed an issue where shipping and billing country information was not transmitted to PayPal
+ * Fixed an issue with the attribute in configurable products
+ * Fixed a category page load time
+ * Removed space outside the visible area in Admin
+ * Fixed an issue where Magento was stuck in the maintenance mode, if a backup was created when disabling modules via Web Setup Wizard
+ * Fixed session response to be in JSON
+ * Fixed an issue where an out of stock product was displayed on the storefront
+ * Fixed an error which appeared during product import with replace behavior
+ * Fixed an issue were URL rewrites in catalog categories were wrong after URL key for a store view was changed or a category was moved
+ * Fixed an issue where JSON was received instead of normal page when trying to delete a category after reset
+ * Fixed an issue where product API with "all" store code did not work
+ * Fixed the misleading system message about invalid indexers
+ * Fixed an issue where a bundle product created using Web API was not visible on the storefront
+ * Fixed an issue where it was impossible to save more than one configuration for a configurable product with the text swatch attribute
+ * Fixed an issue with the absence of a proper indication about why an image could not be deleted not deleted when it was used in one of the store views
+ * Fixed an issue with data modification in export result file
+ * Fixed an issue with the incorrect behavior of the required check box custom
+ * Fixed an issue where an exception was thrown when trying to install Magento having previously installed and uninstalled it
+ * Fixed an issue where changing the layout of a CMS page caused its design theme to change to Magento Blank
+ * Fixed an issue where CMS pages API did not work with store code
+ * Fixed an issue where CMS blocks API did not work for multiple websites
+ * Fixed an issue where XSS Payload could been saved into Admin Panel
+ * Fixed an issue where an error caused by adding a new swatch attribute persisted after deleting the attribute
+ * Fixed PHP notice which appeared during text swatch product attribute creation
+ * Fixed JS error on credit memo view grid during export to CSV
+ * Fixed an issue where a user was redirected to a blank page when canceling checkout with PayPal Express in Website Payments Pro Hosted Solution
+ * Fixed an issue where it was impossible to checkout if Persistent Shopping Cart is enabled
+ * Fixed an issue where it was impossible to complete the Braintree PayPal Checkout if Street line 2 is empty
+ * Fixed an issue with XSS Payload in website's translation table
+ * Fixed an issue where payment functionality matrix section was suitable only for AbstractMethod specializations, leaving other payment methods without valuable information
+* GitHub issues and requests:
+ * [#2276](https://github.com/magento/magento2/issues/2276) -- Notice: getimagesize(): Read error! in app/code/Magento/Catalog/Model/Product/Image.php on line 949
+ * [#2128](https://github.com/magento/magento2/issues/2128) -- wrong filename on products list
+
+2.0.0-rc
+=============
+* Performance improvements:
+ * Refactored observer classes to satisfy the single-responsibility requirement in order to minimize the time on observer object loading
+ * Improved performance of catalog advanced search
+ * Improved performance of catalog quick search
+ * Various micro-optimizations of the Magento framework
+ * Optimized stores initialization and data loading
+ * Improved the CSS and JavaScript minification mechanism
+ * Sales rules (cart promotions) performance optimization
+ * Improved performance of table rendering
+ * Improved sample data performance
+* Payment methods improvements:
+ * Implemented the eWay online payment gateway using both Client side encryption and Responsive shared page APIs.
+ * Implemented PayPal best practices for PayPal Express Checkout
+ * Improved the UI for the Braintree payment method
+* Checkout improvements:
+ * Implemented persistence of entered customer’s data on Checkout flow
+ * Implemented persistence of customer Shopping Cart
+ * Improved Terms and Conditions settings
+ * Improved error handling mechanism on Checkout flow
+ * Improved the collect totals mechanism
+ * Improved the checkout credit card form design
+* Product improvements:
+ * Added the ability to manage the list of variations/configurations using the wizard or manually
+ * Added the ability to manage the list of variations based on removing or adding a new attribute
+ * Added the ability to notify the user during product information update or management
+ * Added the ability to notify the user during the change of the product template set when saving a product
+ * Added the ability to update product data during mass action update
+ * Added the "remove attribute" button to each attribute on the second step of the configurable product attributes creation
+ * Removed grouped price from product creation functionality
+ * Discounts logic is based on the selected option of a configurable product
+* CMS improvements:
+ * Added a sticky header and controls to data grids
+ * Added the support for multiple select in data grid filters
+ * Added the ability to change column width in data grids
+ * Added the ability of inline and bulk inline editing in data grids
+* WebApi Framework improvements:
+ * Added the support for store codes in API calls
+ * Added the ability to update the Magento system to a particular version of Magento
+ * Added the ability to enable/disable modules for Magento application
+ * Added the ability to use maintenance mode
+ * Introduced the common interface for Webapi payload processors
+ * Moved the Search API from the Search module to the Search Framework library
+* Framework improvements:
+ * Refactored observer classes to implement the same interface
+ * Added HHVM compatibility with the `intl` extension
+ * Added the support for PHP 7
+ * Improved catalog image generation
+ * Added the ability to store Magento code in the `vendor` directory
+ * Added support for the URN schema in configuration files
+ * Implemented a new component for Model Windows to simplify input/modification data in pop-us
+ * Implemented the gallery widget with MVP functionality in Global JS Widgets Library
+ * Included the migration tool to Magento CLI
+ * Added inline editing in data grids
+ * Updated data grids mass actions
+ * Added the export to data grids
+ * Implemented the full text search in data grids in Admin
+ * Applied finalized new data grid to Customer List
+ * Removed the DesignEditor module and related code
+ * Added Swagger REST API schema generation for automatic API documentation creation
+ * Added the ability to generate a page that reports all REST APIs in the system
+ * Added the Webapidoc module to generate on-the-fly API documentation for a particular Magento instance
+ * Added the support for inline translation in Magento UI components
+ * New data grid component applied on Sales data grid
+ * Unified database resource connections interface
+ * Implemented a mechanism for rendering escaped string
+ * Added the ability to extend any Magento JS Component after it is loaded on the page and before it is executed
+ * Added the @remove and @display attributes to handle block and container appearance
+ * Added the ability to send the purge requests for multiple servers
+ * Removed deprecated code from modules and Magento/Framework
+ * Implemented the independent template hints for the storefront and the Admin panel
+* Setup
+ * Improved the wording in the Web Installation Wizard UI
+ * Updated the extensions styles in the Web Installation Wizard
+ * Added the ability to control access to the setup tool
+ * Added the Install Components functionality for Web Installation Wizard
+ * Updated styles
+* Sample Data:
+ * Improved sample data installation UX
+ * Updated sample data with Product Heroes, color swatches, MAP and rule based product relations
+ * Improved sample data upgrade flow
+ * Added the ability to log errors and set the error flag during sample data installation
+* Various improvements:
+ * Added integration with NewRelic
+ * Added dashboard for Platinum integration partners
+ * Improved downloadable products UI in the Admin panel in order to provide the same experience with all other product types
+ * Implemented email templates responsiveness and localization
+ * Implemented WebApi to retrieve store information, country list and currency information
+ * Implemented discount coupon generation, search, and multi-actions APIs
+ * Added the ability to declare filter components inside the data grid column definition
+ * Added the console command `catalog:image:resize`
+ * Consolidated the algorithms for populating system packages for upgrade and other tasks
+ * Implemented various accessibility improvements
+ * Improved UX for Tax Rule Management
+ * The Luma theme became default storefront theme
+ * Refactored grid store selectors for their unification
+ * Refactored Magento UI Library to use the 'lib-' prefix in all library mixins
+ * Refactored styles to eliminate log file errors after static files deployment is executed
+ * Improved user experience on the backup pages of Component Manager
+ * Increased JS and PHP code coverage with unit tests
+ * Implemented the product attribute swatches functionality
+* GitHub issues and requests:
+ * [#1397](https://github.com/magento/magento2/pull/1397) -- Allow multiple caplitalized words (like typical vendor names) in ACL resource IDs
+ * [#1231](https://github.com/magento/magento2/pull/1231) -- Update Cm_Cache_Backend_Redis to v1.8 and Credis_Client to v1.5
+ * [#1375](https://github.com/magento/magento2/pull/1375) -- Allow phrases to contain more than nine numeric placeholders
+ * [#1454](https://github.com/magento/magento2/pull/1454) -- Permissions not set correctly #1453
+ * [#1410](https://github.com/magento/magento2/pull/1410) -- Allow custom config files with virtual types only by adding generic schema locator
+ * [#1416](https://github.com/magento/magento2/pull/1416) -- Add abstract method execute() to \Magento\Framework\App\Action\Action
+ * [#1406](https://github.com/magento/magento2/pull/1406) -- Fixes issue with reading store config for store with code of 'default'
+ * [#1447](https://github.com/magento/magento2/pull/1447) -- Missing strings for Javascript Translations
+ * [#1465](https://github.com/magento/magento2/pull/1465) -- Fix typo: itno => into
+ * [#1476](https://github.com/magento/magento2/pull/1476) -- fix typo in dispatched event
+ * [#1516](https://github.com/magento/magento2/pull/1516) -- Typo in addAction function: _.findIdnex should be .findIndex
+ * [#1533](https://github.com/magento/magento2/pull/1533) -- Updated the broken dev doc links in the README.md
+ * [#1469](https://github.com/magento/magento2/pull/1469) -- Remove dependency of date renderer on global state locale
+ * [#1462](https://github.com/magento/magento2/pull/1462) -- Product collection - Add url rewrite from different website
+ * [#1422](https://github.com/magento/magento2/pull/1422) -- Improve \Magento\Framework\Api\SortOrder
+ * [#1528](https://github.com/magento/magento2/pull/1528) -- Really hide Pdf totals with zero amounts
+ * [#1641](https://github.com/magento/magento2/pull/1641) -- Update create-admin-account.phtml
+ * [#1440](https://github.com/magento/magento2/pull/1440) -- Update Console Tool Usage for Cache and Index Operations
+ * [#1523](https://github.com/magento/magento2/pull/1523) -- Permissions not set correctly
+ * [#1517](https://github.com/magento/magento2/pull/1517) -- add router.php for php Built-in webserver
+ * [#1654](https://github.com/magento/magento2/pull/1654) -- Update filter.phtml
+ * [#1602](https://github.com/magento/magento2/pull/1602) -- Improve product export performance
+ * [#1062](https://github.com/magento/magento2/pull/1062) -- Add check to see if PHP > 5.6 and always_populate_raw_post_data = -1
+ * [#1496](https://github.com/magento/magento2/pull/1496) -- Add "Not Specified" as a gender option when customer does not specify gender
+ * [#1664](https://github.com/magento/magento2/pull/1664) -- AbstractPdf::_getTotalsList - fix return comment
+ * [#1502](https://github.com/magento/magento2/pull/1502) -- Loosened Regex on GB postcodes
+ * [#1801](https://github.com/magento/magento2/pull/1801) -- Enable translation for gender
+ * [#1835](https://github.com/magento/magento2/pull/1835) -- Added exception to event data
+ * [#1854](https://github.com/magento/magento2/pull/1854) -- Added missing @method annotation for setWebsiteIds
+ * [#1818](https://github.com/magento/magento2/pull/1818) -- use return value instead of reference parameter
+ * [#1206](https://github.com/magento/magento2/pull/1206) -- Allow modules to live outside of app/code directory
+ * [#1869](https://github.com/magento/magento2/pull/1869) -- Typo in function name fixed (stove->store)
+ * [#1792](https://github.com/magento/magento2/pull/1792) -- Fix invalid @method phpdoc to prevent prophecy mocking error
+ * [#1483](https://github.com/magento/magento2/issues/1483) -- admin external extjs.com requests acknowledged bug CS needs update
+ * [#1489](https://github.com/magento/magento2/issues/1489) -- Russia is eligible PayPal merchant country but absent in Magento 2.0 "Merchant Country" dropdown
+ * [#1461](https://github.com/magento/magento2/issues/1461) -- Cart Items are not deleted after success checkout
+ * [#1452](https://github.com/magento/magento2/issues/1452) -- First two orders with sample data fail
+ * [#1458](https://github.com/magento/magento2/issues/1458) -- window.checkout is undefined if minicart is removed
+ * [#1443](https://github.com/magento/magento2/issues/1443) -- GET /V1/carts/mine/items is returning "cartId is a required field"
+ * [#1442](https://github.com/magento/magento2/issues/1442) -- Running 'log:clean' through cli results in an error: 'Area code not set'
+ * [#1435](https://github.com/magento/magento2/issues/1435) -- Fatal error: Class 'Magento\Framework\HTTP\Client_Curl' not found
+ * [#1432](https://github.com/magento/magento2/issues/1432) -- Doesn't work sorting in the search list.
+ * [#460](https://github.com/magento/magento2/issues/460) -- Optimization on Weee tax calculation
+ * [#647](https://github.com/magento/magento2/issues/647) -- Template path hints behavior
+ * [#771](https://github.com/magento/magento2/issues/771) -- Fatal error when calling execute()
+ * [#896](https://github.com/magento/magento2/issues/896) -- i18n generator generates dictionary with duplicated phrases
+ * [#930](https://github.com/magento/magento2/issues/930) -- Flushing cache fails to wipe view_preprocessed dir
+ * [#933](https://github.com/magento/magento2/issues/933) -- Admin fields that use WYSIWYG don't pass the js validation
+ * [#939](https://github.com/magento/magento2/issues/939) -- Inline Translation adds within
+ * [#941](https://github.com/magento/magento2/issues/941) -- [Question] How to get the currency code and symbol of an AbstractPrice?
+ * [#1159](https://github.com/magento/magento2/issues/1159) -- Warning: The email and password is visible in front-end
+ * [#1167](https://github.com/magento/magento2/issues/1167) -- Magento_Log: creating new record with wrong store_id every each refresh page for Adminhtml
+ * [#1192](https://github.com/magento/magento2/issues/1192) -- Error in monetary value Brazil
+ * [#1367](https://github.com/magento/magento2/issues/1367) -- String class name issue for php7
+ * [#1242](https://github.com/magento/magento2/issues/1242) -- eclipse pdt validator error
+ * [#1279](https://github.com/magento/magento2/issues/1279) -- related products not able to add to cart
+ * [#1423](https://github.com/magento/magento2/issue/1423) -- Magento\Email\Model\Template\Filter Comment vs Code
+ * [#1418](https://github.com/magento/magento2/issue/1418) -- Items in minicart are not cleared after successful placing an order
+ * [#1408](https://github.com/magento/magento2/issue/1408) -- Error command cli setup:static-content:deploy
+ * [#1396](https://github.com/magento/magento2/issue/1396) -- Products are not shown in category right after import
+
+1.0.0-beta
+=============
+* Framework improvements:
+ * Improved the way the return type of a method is derived during WSDL generation
+ * Added the ability to retrieve a list of available endpoints for a given Magento instance
+* Search improvements:
+ * Introduced the Search field in scope of Enhanced Data Grids on CMS
+ * Introduced the Search Indexer interface and XML declaration
+ * Introduced the Search module API to support the search functionality
+ * Product attributes have different weight by default
+ * Implemented per store full text index
+ * Search API moved from the Catalog to the Search module
+* Various improvements:
+ * Payment gateway infrastructure improvements
+ * Removed the outdated GoogleShopping module
+ * Implemented the integration with Braintree payment gateway
+ * Moved the Authorize.net payment method back to CE
+ * Updated processing of the fraud status for orders
+ * Added data attributes for checkout sections
+ * The enhanced grid component is applied to the Product grid and the whole Sales module
+ * Added the ability to create account during and after the checkout process is complete
+ * Enabled coupon code in URL for empty carts
+ * Added new icons to the admin-icons font
+ * Improved the configurable product creation flow to be consistent with other product types creation
+ * Eliminated email markup duplication and simplified email content management by including footer/header content and styles from a single place for email templates
+* Fixed bugs:
+ * Fixed an issue where there was no successful message about VAT validation
+ * Fixed an issue where it was not possible to change State/Province in customer address
+ * Fixed an issue where the "Array to string conversion" notice appeared during order creation if custom address attribute existed
+ * Fixed an issue in API service where a customer was created even when there was a validation error
+ * Fixed an issue where a new custom theme added to the file system, was not accessible in Admin
+ * Fixed an issue where it was impossible to save a customer record in Admin after selecting to add a new address and then deleting the address fields
+ * Fixed an issue where it was impossible to add to cart by SKU more, than one product at a time on the storefront
+ * Fixed an issue where it was impossible to place an order on the storefront using PayPal Payments Pro
+ * Fixed an issue where checkout was performed without applying existing and active catalog rules
+ * Fixed an issue where category displayed outdated prices until page cache was manually reset or timed out
+ * Fixed with the wrong label for catalog price rules processing dropdown
+ * Fixed the copyright text on the storefront
+ * Fixed an issue where the Create new Customer Account form was broken on the storefront
+ * Fixed an issue where CMS page was saved automatically once a widget is added to the page content
+ * Fixed an issue where a user was redirected to the Orders page after clicking the Get Payment Update in Admin
+ * Fixed a comment in the \Magento\Framework\App\Http::launch() method
+ * Fixed an issue where editable multi-select fields were not always displayed on the new tax rule creation page
+ * Fixed a JavaScript error which blocked guest checkout if JavaScript bundling was enabled
+ * Fixed an issue where the Cookie Restriction Mode block was not displayed on the storefront
+ * Fixed an issue where the Tax Rate edit form showed an empty selected value instead of *
+ * Fixed an issue for Internet Explorer v.11 where the Remove button in the mini shopping cart did not work
+ * Fixed an issue where the Email field was duplicated on the send invitation form
+ * Fixed an issue where the product images where not displayed on a storefront product page for simple products
+ * Fixed the error handling for PHP settings check in Setup Wizard which was caused by timeout
+ * Fixed an issue where a credit card type was undefined in iframe request
+ * Fixed the iframe payment method flow
+ * Fixed an issue where it was possible to place an order with the empty Purchase Order Number required field
+ * Fixed an issue where a loader was not displayed in mini shopping cart
+ * Fixed an issue where autocomplete was enabled on credit card form
+ * Fixed issues with PayPal conflict resolution
+ * Fixed cache collisions for static view files cache
+ * Fixed an issue where an admin user with limited access to only Content could not access CMS pages in Admin
+ * Fixed an issue where "Privacy and Cookie Policy" CMS page content was unreadable
+ * Fixed an issue where shopping cart became empty if a customer configured an item to be the same as already existing in the shopping cart
+ * Fixed an issue where Maestro credit card did not pass validation
+ * Fixed an issue where a custom order status appeared in the Order State drop down
+ * Fixed an issue where it was impossible to add products to a package and create a shipping label
+ * Fixed the incorrect text message in the Products Requiring Attention grid for product with enabled Qty Increments
+ * Fixed an issue where the thumbnail image option was not applied correctly for grouped products
+ * Fixed an issue where the Newsletter Subscribers grid was not displayed
+ * Fixed an issue where the order number was absent on the success page for PayPal Advanced Checkout
+ * Fixed non-working sales tax report
+ * Fixed an issue where sales reports with empty rows did not work
+ * Fixed the broken layout on the shipping checkout step for the Blank theme
+ * Fixed an issue where the Phone Number hint was displayed outside of the visible screen when adding a new address
+ * Fixed the style for the Add button on certain pages in Admin
+ * Fixed an issue where it was impossible to confirm signing of a billing agreement during checkout
+ * Fixed an issue with missing events subscriptions
+ * Fixed the incorrect message displayed when trying to delete a product from mini shopping cart
+ * Fixed an issue where it was possible to share a wish list after a short-term session was expired when the Persistent Shopping Cart functionality was enabled
+ * Fixed an issue where the "optional" placeholder was displayed for the Password field when logging in during checkout
+ * Fixed an issue where placing an order with the same parameters was becoming slower on each iteration
+ * Fixed an issue where the controls on the Review & Payments page were disabled in case PayPal transaction had been declined during checkout
+ * Fixed an issue where the terms and conditions links were always displayed during checkout
+ * Fixed an issue where customer address was not saved during checkout
+ * Fixed an issue where tax information was shown in order summary for a guest customer
+ * Fixed an issue with currency in different locales
+ * Fixed an issue where tax information was not displayed in mini shopping cart
+ * Fixed an issue with the Display Full Tax Summary configuration setting
+ * Fixed an issue with Advanced Fraud Protection in the Braintree payment method
+ * Fixed an issue with tax and FPT information missing in the order summary on the storefront
+ * Fixed the auto load error after running setup:di:compile
+ * Fixed an issue with publishing files in production mode
+ * Fixed a cron re-indexing issue
+ * Fixed an issue with JS minification errors which appeared when adding products to cart
+ * Fixed the broken Reset Password link in a welcome email for a customer created in Admin
+ * Fixed an issue where WSDL generated for any Web API service had an invalid element
+ * Fixed the records displaying order in the Sales grids
+ * Fixed an issue with invalid path parsing in exclude list during bundle collecting
+ * Fixed an issue where there was no success message after place order via Payflow Link on mobile device
+ * Fixed an issue where it was not possible to place order as a guest via Authorize.net Direct Post
+ * Fixed an issue where it was not possible to place order via Express Checkout with enabled Terms and Conditions
+ * Fixed an issue where the last transaction ID was displayed for order placed within PayPal Payflow Link on the storefront
+ * Fixed an issue where it was not possible to perform products mass update in Internet Explorer
+ * Fixed an issue where product did not appear on front after category change and indexers set to update on schedule
+ * Fixed an issue where special chars in custom options were replaced with HTML entities
+ * Fixed the invalid title of the Update Attributes page in Admin
+ * Fixed performance issue in the storefront search
+ * Fixed the _initCustomer() method in the Customer module controllers
+ * Fixed an issue where the customer_save_after_data_object event dispatched a few times
+ * Fixed an issue where it was not possible to create customer account from order success page
+ * Fixed an issue where styles were missing on the storefront
+ * Fixed the "No such entity with cartId = " error on One Page Checkout if online payment was used
+ * Fixed an issue where flush of one type of cache made other flushed
+ * Fixed sales orders grid for orders placed using PayPal when the PayPal module was disabled
+ * Fixed an issue where loader hanged out if admin did not specify shipping address or method for order
+ * Fixed an irrelevant note in Payflow Pro section on One Page Checkout
+ * Fixed an issue where an HTML tag was displayed in the Instructions field of the bank transfer payment form during checkout on the storefront
+ * Fixed an issue where it was not possible to place order as a guest via Authorize.net Direct Post
+ * Fixed an issue where the Refund and Refund Offline buttons styles on the Credit Memo page
+ * Fixed an issue where Modal window for "Sign In" was not closed when clicking outside
+ * Fixed an issue where the Compare Products functionality was accessible in a store with the responsive Blank theme applied when browsing using Iphone6
+ * Fixed incorrect relative paths in LESS files
+ * Fixed an issue where it was not possible to save newsletter subscription information of a customer in Admin
+ * Fixed an issue where order number was missing on PayPal (Payflow) Express Checkout solutions
+ * Fixed an issue where Product quantity was still displayed in the mini shopping cart after Place Order on storefront
+ * Fixed indexer failure with re-index on schedule
+ * Fixed catalog price rule calculation for Group price
+ * Fixed an issue where specific product tabs were accumulated on switching between product templates
+ * Fixed an issue where grid actions in custom options dialog did not work
+ * Fixed an issue where page cache was not invalidated when products were changed via mass action
+ * Fixed an issue where catalog page was not updated after product returned to stock again if Varnish was enabled
+ * Fixed incorrect price of configurable product on storefront
+ * Fixed an issue where the Catalog page in Admin did not work in production mode
+ * Fixed an issue where the Add to cart button did not redirect to the configuration page for configurable products
+ * Fixed an issue where it was not possible to perform mass delete having used the Select All functionality to select the products
+ * Fixed an issue where PayPal Express Checkout was always displayed as disabled in Internet Explorer
+ * Fixed an issue where PayPal Express labels on checkout were small
+ * Fixed an issue where the Configure Product modal window blended in with page content during order creation
+ * Fixed an issue where hints behaved not user-friendly on the storefront
+ * Fixed an issue with exception when creating account for guest customer after placing order within Express Checkout
+ * Fixed orders grid mass actions
+ * Fixed invoice grid search on Invoices tab of Order View page
+ * Fixed an issue where gallery images were not loaded for Configurable Product
+ * Fixed an issue where currency rates were displayed incorrectly
+ * Fixed exception framework misuse in indexers
+Tests:
+ * Increased code coverage of the Theme module
+ * Refactored some methods to decrease C.R.A.P index and implemented unit tests for CMS, Sitemap and Widget modules
+ * Sample data installation covered with unit tests
+ * Moved all test data for functional tests to repositories
+ * Increased test coverage for setup fixtures which are used for performance tests
+ * Updated some variations for checkout related automated tests
+ * Increased SOAP connection timeout to prevent SOAP failures in API tests
+* GitHub issues and requests:
+ * [#1272](https://github.com/magento/magento2/issues/1272) -- In dashboard Last Orders items quantity showing wrong some times
+ * [#1341](https://github.com/magento/magento2/issues/1341) -- [Question] How to specify attributes to load on ProductRepository::getList()
+ * [#1370](https://github.com/magento/magento2/issues/1370) -- EAV Attribute Repository linking to catalog_eav_attribute
+ * [#1382](https://github.com/magento/magento2/issues/1382) -- setup:install can now accept {{base_url}} as input to --base-url
+ * [#1385](https://github.com/magento/magento2/pull/1385) -- Specify `Magento_Catalog` module on template for sorting
+ * [#1411](https://github.com/magento/magento2/issues/1411) -- No error message shown when purchase qty mismatch the 'Qty Increments' setup
+ * [#1420](https://github.com/magento/magento2/pull/1420) -- Make Api\SearchResults implement Api\SearchResultsInterface
+ * [#1421](https://github.com/magento/magento2/pull/1421) -- Rename Api\SearchCriteriaBuilder::addFilter() to addFilters()
+ * [#1427](https://github.com/magento/magento2/issues/1427) -- Fatal error: Call to a member function format() on null in magento2/lib/internal/Magento/Framework/Stdlib/DateTime/Timezone.php on line 260
+ * [#1434](https://github.com/magento/magento2/issues/1434) -- Failed to add product variation
+
+0.74.0-beta16
+=============
+* Framework improvements:
+ * Improved declaration of JS widgets with mixins node
+ * Optimized Magento\Framework\View\Element\Template for production mode
+ * Added color picker JS library
+* Various improvements:
+ * Implemented enhanced checkout flow
+ * Increased security of search filters
+ * Added price variation caching based on WEEE
+ * Updated adapter in payment gateway
+ * Data version control was implemented on Customer and Quote modules to reduce number of unnecessary model saves
+ * Optimized Magento\PageCache\Model\Observer\ProcessLayoutRenderElement::execute
+ * Added event to make an ability to add elements on a main tab of attribute editing page
+ * Email markup duplication is eliminated and email content management is simplified
+ * Implemented and ability to update/replace and export advanced product prices
+ * Added import history
+ * Implemented and ability to export configurable products
+* Payment improvements:
+ * Moved PayPal solutions back to CE
+ * PayPal Payments Standard is updated to PayPal Express Checkout API
+ * Improved conflict resolution rules for PayPal configuration
+* Tests:
+ * Increased timeout for HTTP requests in api-functional test framework to avoid error "HTTP request failed"
+ * Increased unit test coverage for Reports, CatalogRule, Config and CurrencySymbol modules
+ * Functional tests maintenance for Tax, Sales, Reports modules
+ * Created fixture generation scripts for functional tests
+ * Fixed CheckoutWithGiftMessagesTest functional test
+* Fixed bugs:
+ * Fixed wrong redirect after adding to compare, wish list or cart from private content blocks
+ * Fixed an issue where tax information was not saved in orders
+ * Fixed an issue where total amount was not set in the correct place
+ * Fixed an issue where product options details were missing while adding to wish list
+ * Fixed an issue with empty customer first name and last name when new address is added on backend
+ * Fixed an issue where it was not possible to create customer from backend if there was custom attribute
+ * Fixed an issue where email could not be retrieved from Quote address after adding an address in backend order creation
+ * Fixed XSS in order details
+* GitHub issues and requests:
+ * [#1389](https://github.com/magento/magento2/pull/1389) -- Replaced string check with simpler logic
+ * [#1412](https://github.com/magento/magento2/pull/1412) -- Fix typo - change getChildhtml to getChildHtml
+ * [#1415](https://github.com/magento/magento2/pull/1415) -- Add placeholder containers to invoice and shipment creation sections
+
+0.74.0-beta15
+=============
+* Framework improvements:
+ * Introduced Drag&Drop Columns functionality in scope of Enhanced Data Grids on CMS
+ * Improved Column Actions functionality in scope of Enhanced Data Grids on CMS
+ * Adapted Payment\Gateway framework to client requirements
+ * Removed 'field_expr' option from filters
+ * Added product details renderer list support on Catalog category page
+ * Security: Clickjacking solution - introduced X-Frame-Options
+ * Gift message was moved to shopping cart
+ * Improved simple products export
+ * Separated import of advanced prices
+ * Changed 'updated_at' filter for products export
+ * Added the link with sample product import file
+ * Cleared and improved the messages and names in different modules
+ * Added mbstring extension as a requirement
+* Tests:
+ * Increased test coverage for the CatalogInventory, Email and Newsletter modules
+ * Added wait to form element before filling a value in functional tests
+ * Increased test coverage of Reports module
+ * Functional tests were fixed and maintained
+* Fixed bugs:
+ * Fixed loading of images from database media storage with separate connection
+ * Eliminated duplication of ComposerInformation class in Magento Framework and Setup Application
+ * Fixed an error message format inconsistency in theme uninstall command
+ * Fixed an issue where incorrect action name checks led to customer info leak
+ * Fixed an issue where /magento_version exposed too detailed version information
+ * Fixed an issue where generate data failed when table prefix exceeded length of 5
+ * Fixed an issue where product options were displayed not styled on "Edit Product from Wishlist" Frontend page
+ * Fixed an issue where payment information was displayed broken on "Order Management" Backend page forms
+ * Fixed an issue where admin panel pop-ups contained lots of empty space
+ * Fixed an issue where Customer account form was displayed broken
+ * Fixed an issue where all text fields were invisible in Backend "Add New Customer" page
+ * Fixed XSS issues in Magento - wishlist sending
+ * Fixed an issue where it was unable to specify all values of "Multiple Select" Product Custom Option to purchase
+ * Fixed an issue where setting a permission for 'ALL Groups' produced an error if other permissions existed
+ * Fixed an issue where stock was not updated when Stock indexer was in Update on Schedule mode
+ * Fixed an issue where it was not possible to update stock items of product using API service
+ * Fixed an issue where Customer review changes in backend were not reflected in frontend until cache was cleared
+ * Fixed an issue where cache was not updated when changing stock status using mass action
+ * Fixed an issue where Stock Items API service to return low stock information did not return correct results
+ * Fixed an issue where found records in global search in Backend could not be selected via keyboard
+ * Fixed an issue where Category menu items went out of screen when page side was reached
+ * Fixed an issue where subcategories in menu were shown instantly when user moved mouse quickly
+ * Fixed an issue where popup header was out of window range while creating group product
+ * Fixed an issue where region field was absent in customer address form on backend for "United Kingdom" country
+ * Fixed an ability to edit the Order from Admin panel
+ * Fixed an issue where email could not be retrieved from \Magento\Quote\Api\Data\AddressInterface after adding an address on OnePageCheckout
+ * Fixed an issue where Products were not displayed correctly across all storeviews of the catalog
+* GitHub issues:
+ * [#1378](https://github.com/magento/magento2/issues/1319) -- jquery-cookie.js is not published by deploy tool in production mode
+ * [#1314](https://github.com/magento/magento2/pull/1314)-- Fixed a bug where type attribute for tag button was missing
+ * [#1354](https://github.com/magento/magento2/pull/1354) -- Add gitter.im badge to ReadMe.
+ * [#1378](https://github.com/magento/magento2/pull/1378) -- Fix incorrect js filename
+
+0.74.0-beta14
+=============
+* Framework improvements:
+ * Introduced an ability to uninstall modules which were installed via composer (bin/magento module:uninstall 'moduleName')
+ * Introduced an ability to uninstall themes (bin/magento theme:uninstall 'themeName')
+ * Introduced an ability to backup and rollback DB and Media via CLI (bin/magento setup:backup, options are --code, --db or --media)
+ * Introduced an ability to uninstall language packages (bin/magento i18n:uninstall 'languagePack')
+ * Introduced API notation for the following modules: Backend, Backup, Cron, Log, PageCache
+ * Added join processors to search services, joined config for services with extension attributes
+ * Renamed hidden_tax to discount_tax_compensation
+ * The customer address entity table was transformed from EAV into a flat model to minimize database operations
+* Fixed bugs:
+ * Fixed an issue where Setup Wizard failed on readiness check when Magento was deployed by composer create-project
+ * Fixed the local file path disclosure when trying to browse image cache directory
+ * Fixed an issue where development errors resulted in too many redirects
+ * Fixed an integration test failure in Reports ViewedTest
+ * Fixed an issue where it was impossible to save existent Grouped Product with no child items
+ * Fixed an issue where message "We don't have as many "conf1" as you requested" appeared
+ * Fixed an issue where second product from bundle product was ordered as separate item after checkout
+ * Fixed an issue where configs for payments and shipping providers were not encrypted
+ * Fixed an issue where Table Rates shipping method did not work
+ * Fixed an issue where admin could not set locale properly on Account page
+ * Fixed incomplete generated results of single tenant compiler
+ * Fixed an issue with full page caching where one set of prices was cached for all customers
+ * Fixed incorrect urls for private content
+ * Fixed an issue where it was not possible to assign a product link to another product using API
+ * Fixed an issue where zip code was not displayed as required field on Create New Order page
+ * Fixed the Sample Data re-installation
+ * Fixed random fails on inventory tab for test CreateSimpleProductEntityTest
+* Tests:
+ * Covered various modules with unit tests
+ * Functional tests fixed and maintained
+* GitHub issues:
+ * [#1156](https://github.com/magento/magento2/pull/1156) -- Moves common code to all auto-generated Interceptor classes into a trait
+ * [#1206](https://github.com/magento/magento2/pull/1206) -- Allow modules to live outside of app/code directory
+ * [#1245](https://github.com/magento/magento2/pull/1245) -- Unable to save product per website wise
+ * [#1347](https://github.com/magento/magento2/pull/1347) -- Fixed failing Install during integration tests (MAGETWO-38482)
+ * [#1368](https://github.com/magento/magento2/pull/1368) -- Fix typo in getCurrentCategoryKey
+
+0.74.0-beta13
+=============
+* Framework improvements:
+ * Created Join Directive, Join Process for Tables, XML Config support to define a performance join for search services
+ * Added support of field weighting for MySQL Search Engine
+ * Modified indexer declaration to support field declaration
+ * Model related methods and properties are removed from Magento Object
+* Various improvements:
+ * Added supporting of lost product types for Product Import/Export
+ * Improved performance of Product Import/Export
+ * Implemented Payment\Gateway infrastructure as a new design for payment methods
+ * Fixed messages in Setup CLI
+ * JS Smart fixed scroll
+ * Improved sub-menu animation and sub-menu links mouse event effects
+ * Automated UI Documentation build process with Grunt.js
+ * Updated composer dependency to newer version
+ * Implemented direct web link on Magento order transactions records
+* Tests:
+ * Reduced Travis CI integration test time
+ * Increased test coverage for the Integration module
+ * Re-structured unit tests for the updater app to follow the convention used by the rest of Magento code
+* Fixed Bugs:
+ * Fixed Help links in Install Wizard
+ * Fixed an issue where composer install failed since ext-xsl was not available
+ * Fixed web installer on HHVM
+ * Fixed broken links to static assets when error occurs
+ * Fixed failed integration tests on Travis CI builds
+ * Fixed an issue where menu with one sub-menu item not being displayed
+ * Fixed an issue where IPN messages did not show relevant info about transaction
+ * Fixed an issue where Magento\Framework\Data\Form did not accept data-mage-init parameter
+ * Fixed an issue where not all specified "Multiple Select" Bundle options were added to Shopping Cart
+ * Fixed ConfigureProductInCustomerWishlistOnBackendTest functional test
+ * Fixed an issue with all mandatory fields in the Sales data interfaces
+ * Fixed an issue where billing and shipping sections did not contain address information on order print from Guest
+ * Fixed an issue where orders placed in different store views had duplicated IDs
+ * Fixed an issue where Shopping Cart Price Rules were not applying properly for Bundled products
+ * Fixed an issue where column coupon_rule_name was not filled in the sales_order table when you create the order
+ * Fixed an issue where customer registration or login on frontend created an empty cart
+ * Fixed an issue where Product Model sometimes values change in getters methods
+ * Fixed an issue where deleting option through API service for configurable product did not unlink variations
+ * Fixed an issue where there was no ability to place order using multishipping if cart contained virtual product
+ * Fixed an issue where "Terms and Conditions" was absent on order review step
+ * Fixed an issue where grid actions for "Shopping Cart Items" grid was absent in Customer Account (Backend)
+ * Fixed XSS vulnerability in Magento "Add to cart" link
+ * Fixed UI issues on view order info frontend pages for guest customer
+ * Fixed an issue where "Currency Rates" backend form was displayed broken
+ * Fixed an issue where padding was missed for Custom Price Checkbox on "Create Order" Backend page
+ * Fixed an issue where "Choose Variation" buttons lost alignment on "Create Configurable Product" Backend page
+ * Fixed an issue where "Date & Time" Custom option was displayed broken on "Create Order" Backend page
+ * Fixed an issue where colon was displayed before every Product Attribute label on Frontend
+ * Fixed an issue where record from url_rewrite table was not removed when CMS page deleted
+ * Fixed an issue where widget option "Number of Products to Display" did not work
+ * Fixed validation message issues for CMS pages
+ * Fixed an issue where "Click for Price" link was displayed in widgets for product with "Display Actual Price" != "On Gesture" MAP setting
+ * Fixed an issue where Form_key cookie was not listed in privacy page
+ * Fixed an issue where merchant wasn’t redirected to correspondent option when trying to enable Dashboard charts
+ * Fixed an issue where wrong message was displayed after exceeding maximum failed login attempts
+* GitHub issues:
+ * [#1292](https://github.com/magento/magento2/pull/1292) Admin menu with 1 submenu item does not show the subitem
+ * [#1133](https://github.com/magento/magento2/pull/1133) Getter methods shouldn't change values
+ * [#1263](https://github.com/magento/magento2/issues/1263) "We don't have as many "product name" as you requested" not showing in mini cart
+ * [#1284](https://github.com/magento/magento2/issues/1284) Order tracking link redirected to dashboard in admin
+
+0.74.0-beta12
+=============
+* MTF Improvements:
+ * Functional tests maintenance
+* Framework improvements:
+ * Customer entity table was transformed from EAV into a flat model to minimize DB operations
+ * Improved admin authentication and removed bypass
+ * Exposed CMS api's as web API
+* Fixed bugs:
+ * Fixed an issue where "Add Item To Return" button became disabled after required item fields were filled on Frontend
+ * Fixed an issue with fatal error during place order with non default time zone
+ * Fixed an issue where it was not possible to filter backups on name
+ * Fixed an issue where routeIdType did not allow numbers
+ * Fixed an issue with discounted prices for fixed bundle product
+ * Fixed an issue with catalog prices not including custom option prices
+ * Fixed an issue with tier prices being displayed 4 characters
+ * Fixed an issue with extra FPT labels in mini shopping cart
+ * Fixed an issue where it was not possible to place orders for products with FPT and catalog prices including tax
+ * Fixed an issue with FPT attribute being required when creating product
+ * Fixed an issue where final price was not recalculated after selecting product options
+ * Fixed an issue where tax labels were not displayed for Bundle options on 'multi-select' and 'dropdown' controls
+ * Fixed an issue where filters were not shown on product reviews report grid
+ * Fixed an issue where second customer address was not deleted from customer account
+ * Fixed an issue where custom options pop-up was still displayed after submit
+ * Fixed an issue where Second Product was not added to Shopping Cart from Wishlist at first attempt
+ * Fixed an issue where customer invalid email message was not displayed
+ * Fixed an issue where All Access Tokens for Customer without Tokens could not be revoked
+ * Fixed an issue where it was impossible to add Product to Shopping Cart from shared Wishlist
+ * Magento_Sendfriend module should have upper case 'F'
+ * Fixed set of issues with Ui module
+ * Fixed JavaScript error on Invoice creation page
+* Various improvements:
+ * Hide payment credentials in debug log
+ * Simplification of Payment Configuration
+ * Introduced new Dialog widget
+* Github issues:
+ * [#1330](https://github.com/magento/magento2/pull/1330) -- Removing unused memory limit in htaccess
+ * [#1307](https://github.com/magento/magento2/pull/1307) -- Corrected a sentence by removing a word
+
+0.74.0-beta11
+=============
+* Framework improvements:
+ * Improved component Bookmarks component in scope of Enhanced Data Grids on CMS
+ * Improved component Advanced Filtering component in scope of Enhanced Data Grids on CMS
+* Fixed bugs:
+ * Fixed an issue where incorrect keys in REST request body allowed the request to go through successfully
+ * Fixed an issue where interceptors were Generated with Invalid __wakeup()
+ * Fixed an issue where redirect on the current page was not working in certain conditions
+ * Fixed an issue where first store could not be selected on frontend
+ * Fixed an issue with performance toolkit category creation
+ * Fixed an issue when columns 'Interval', 'Price Rule' had incorrect values in Coupon Usage report
+ * Fixed an issue where fatal error occurred on Abandoned Carts report grid
+ * Fixed an issue where it was not possible to add product to shopping cart if Use Secure URLs in Frontend = Yes
+ * Fixed an issue where email was not required during Guest Checkout
+ * Fixed broken ability to skip reindex in `bin/magento setup:performance:generate-fixtures` command
+ * Fixed an issue where `bin/magento indexer:reindex` command failed after `bin/magento setup:di:compile` was run
+ * Fixed bug with broken JS i18n
+ * Fixed an issue with wrong value at created_at updated_at fields after quote* save
+ * Fixed an issue where customer could not be created in backend after adding Image type attribute
+ * Fixed Sales InvoiceItem and Order data interfaces implementation
+ * Fixed an issue with performance toolkit medium profile
+ * Fixed an issue where Excel Formula Injection via CSV/XML export
+ * Fixed an issue where it was not possible to open the Customers page in backend
+ * Fixed an issue with internal server error after clicking Continue on Billing information
+ * Fixed an issue where it was not possible to place order with Fedex shipping method
+* Various changes:
+ * Magento Centinel Removal
+ * Removed ability to have multi-statement queries
+* Test coverage:
+ * Unit tests coverage
+ * Covered php code by unit tests after new checkout implementation
+* Github issues:
+ * [#424](https://github.com/magento/magento2/issues/424) -- Combine tier pricing messages into block sentences
+ * [#1300](https://github.com/magento/magento2/issues/1300), [#1311](https://github.com/magento/magento2/issues/1311), [#1313](https://github.com/magento/magento2/issues/1313) -- Creating product error with startdate
+
+0.74.0-beta10
+=============
+* Framework improvements:
+ * Created Admin Login support into the Upgrade Setup Tool
+ * Added support for image types as custom attributes
+ * Added @api annotations to all classes that are considered as stable public APIs; marked public data interfaces with '@api'
+ * Defined Public API for modules: Catalog, CatalogRule, Msrp, UrlRewrite, CatalogUrlRewrite, CmsUrlRewrite, Sales, Quote, SalesRule, Captcha, Cms, Widget
+ * Created documentation and code samples for Sales & Checkout Module Integration APIs
+ * Increased code coverage of Integration module
+ * Fixed performance issues in unit tests
+ * Moved Sample Data install.php, dev/shell/cron.sh, performance-toolkit/generate.php, dependencies tools, and xmlUpdater to new bin/magento CLI
+ * Separated Config File (config.php) into Environmental and App configs
+ * Better validation of install and setup CLI commands
+ * Changed option names to use dashes in order to conform to naming convention
+* Code quality improvements:
+ * Removed unused classes in Magento\Reports module
+ * Overall unit test coverage was improved
+ * Replaced all functional tests which were not end-to-end with injectable test
+ * Replaced end-to-end test for automatic tax applying with injectable test
+ * Functional tests maintained
+ * Updated getElements method for Selenium Driver class in MTF
+ * Implemented mechanism of cleaning up all data after scenario execution
+ * Fixed integration testLayoutFilesTest
+* Design improvements:
+ * New look&feel for Collapsible Panels in backend
+ * New look&feel for System Warnings Pop-Ups in backend
+ * New look&feel for Grid Tables in backend
+* Various improvements:
+ * Implemented checkout UI rendering in browser
+ * Added exact image sizes provision in templates
+ * Added width and height attributes to Frontend logo
+ * Integrated JIT(Just In Time) plugin loader for Grunt.js
+ * Handling Invalid Less During PHP Compilation
+ * Enhanced PageCache invalidation
+ * Private data rendering in browser based on JSON data obtained from server side and kept in Local Storage instead of HTML obtained using AJAX PageCache action
+ * Refactor blocks on most frequently used pages (Catalog, CMS) to use new private data rendering mechanism
+ * Refactor blocks which can be added on any page (like widgets, banners) to use new private data rendering mechanism
+ * Default PageCache entries TTL value increased from 2 minutes to 24 hours
+ * Cache entries invalidation logging was introduced in order to simplify running of invalidation process
+* Fixed bugs:
+ * Fixed an issue where orders total report was not showing results grouped by day
+ * Fixed an issue with non-displaying Abandoned Carts report grid
+ * Fixed integration test failure in Reports GridTest
+ * Fixed an issue where fixed bundle product could not be created
+ * Fixed an issue where grouped product with quantity 0 was added to cart with quantity of 1
+ * Fixed an issue where versions tab was absent after publish CMS page
+ * Fixed an issue where shopping cart was empty after attempt to update it
+ * Fixed an issue where there was no redirect to shopping cart after EDIT/UPDATE cart product if custom options
+ * Fixed an issue where New Accounts report did not work
+ * Fixed bug when Admin user wasn't locked after exceeding maximum login failures attempts
+ * Fixed an issue where downloadable Product detailed info wasn't displayed in Cart & on Checkout
+ * Fixed an issue with wrong copyright year for store front
+ * Fixed: JSMinException when deploying static files in production mode with minification enabled
+ * Fixed: Overlapped FPT Attribute in Mini Shopping Cart
+ * Fixed: View of current item for Customer menu tabs
+ * Fixed an issue where status label was not refreshed when disabling/enabling cache
+ * Fixed an issue where Success Page of Web Setup did not show https
+ * Fixed an issue with irrelevant/unused template
+ * Fixed an issue where static content running setup:static-content:deploy with language code {a-Z}{a-Z}{a-Z} couldn't be generated
+ * [Usability] Output from language, and timezone help commands is alphabetized
+ * Fixed an issue with two identical IdentityInterface definitions in code base.
+ * Fixed an issue where default value of timezone in installer was not correct
+ * Fixed an issue where bank Transfer payment instructions were not displayed
+ * Fixed an issue when New Accounts report did not work
+ * Fixed an issue when New Accounts report showed invalid data
+ * Fixed an issue with Exception in setup wizard after Magento is installed
+ * Fixed visual misfits for Custom Options on "edit Bundle Product" Frontend page
+ * Fixed broken layout for configurable variations when changing from pricing measure from $ to %
+ * Fixed widget UI issues on Frontend
+ * Fixed an issue with Float button bar on Backend
+ * Fixed UI issue shown in ACL Resource Tree
+ * Fixed an issue where it was not possible to place order on frontend using secure urls
+ * Fixed an issue with wrong behaviour for save new shipping address during checkout
+ * Fixed an issue with customers information leak via Checkout
+ * Fixed an issue where users could not login to Magento admin & front on HipHop Virtual Machine
+ * Fixed an issue where product Options details were not shown in Mini Cart
+ * Fixed an issue where Create Permanent Redirect check-box was inactive on Edit Category page
+ * Fixed an issue where it was impossible to perform product mass update
+ * Fixed an issue where category redirect was absent after update category url
+* Github issues:
+ * [#566](https://github.com/magento/magento2/issues/566) -- Fulltext search index: slow query in resetSearchResults()
+ * [#1269](https://github.com/magento/magento2/issues/1269) -- Magento dashboard revenue ,shipping ,qty,tax all are 0.
+ * [#1200](https://github.com/magento/magento2/issues/1200) -- I'm not getting default values (name & email) in contact form when i logged in
+ * [#1087](https://github.com/magento/magento2/pull/1087) -- Check for select and multiselect to ignore corrupted attributes
+ * [#1268](https://github.com/magento/magento2/issues/1268) -- Dist front: search is broken
+ * [#1195](https://github.com/magento/magento2/pull/1195) -- Use table alias for qty field
+ * [#1274](https://github.com/magento/magento2/pull/1274) -- CatalogImportExport validation
+ * [#1233](https://github.com/magento/magento2/issues/1233) -- Wrong message when moving a category
+ * [#1040](https://github.com/magento/magento2/issues/1040) -- Required date validation on Magento2 Backend
+ * [#1246](https://github.com/magento/magento2/issues/1246) -- How to load product store wise?
+ * [#1222](https://github.com/magento/magento2/issues/1222) -- Sku attribute save error
+ * [#1237](https://github.com/magento/magento2/issues/1237) -- Category admin reset button does nothing
+ * [#1046](https://github.com/magento/magento2/issues/1046) -- Two equal files
+ * [#1282](https://github.com/magento/magento2/pull/1282), [#1285](https://github.com/magento/magento2/pull/1285) -- Fix broken link in CHANGELOG.md
+ * [#1223](https://github.com/magento/magento2/issues/1223) -- Store config re-encrypt encrypted values on save
+ * [#1242](https://github.com/magento/magento2/issues/1242) -- Eclipse pdt validator error
+
+0.74.0-beta9
+=============
+* Framework improvements
+ * Magento became compatible with MySQL Cluster
+ * Zend Framework 2 is upgraded up to version 2.4.0
+* Various
+ * Updated payments infrastructure so it can use transparent redirects
+ * Defined public API for Tax/Pricing components
+ * Refactored controller actions in the Product area
+ * Moved commands cache.php, indexer.php, log.php, test.php, compiler.php, singletenant\_compiler.php, generator.php, pack.php, deploy.php and file\_assembler.php to the new bin/magento CLI framework
+* Data Migration Tool
+ * The Data Migration Tool is published in the separate [repository](https://github.com/magento/data-migration-tool-ce "Data Migration Tool repository")
+* Fixed bugs
+ * Fixed an issue where error appeared during placing order with virtual product
+ * Fixed an issue where billing and shipping sections didn't contain address information on order print
+ * Fixed an issue where fatal error appeared on Catalog page on backend for user with custom role scope
+ * Fixed an issue where product could not be found in search results when the website was assigned after product creation
+ * Fixed an issue where shopping cart was empty after attempt to update it
+ * Fixed an issue where there was no redirect to shopping cart after edit/updating cart product with custom options
+ * Fixed an issue where environment variables were messed up for different entry points
+ * Fixed an issue where tax class name was corrupted if containing '<' char
+ * Fixed an issue where there was no ability to place an order with custom option "file"
+ * Fixed an issue where sensitive cookies were persistent
+ * Fixed possible XSS in payment methods
+ * Fixed an issue with integration test failure when run in default mode
+ * Fixed an issue with integration tests failure when xdebug is enabled
+ * Fixed an issue where there was impossible to delete any entity which calls confirmation alert
+* GitHub issues and pull requests
+ * [#904](https://github.com/magento/magento2/issues/904) -- Installation Incomplete with XDebug enabled
+ * [#1083](https://github.com/magento/magento2/pull/1083) -- Move Topmenu CategoryData creation to a public method to enable plugin
+ * [#1125](https://github.com/magento/magento2/pull/1125) -- Saving category reset its changes in category tree
+ * [#1144](https://github.com/magento/magento2/pull/1144) -- Refactor bindRemoveButtons for improved performance
+ * [#1214](https://github.com/magento/magento2/pull/1214) -- Avoid following error
+ * [#1216](https://github.com/magento/magento2/issues/1216) -- Can't install sample data
+
+0.74.0-beta8
+=============
+* Performance Toolkit improvements
+ * Added order generator
+ * Added indexer mode switcher via profile config
+* UI Improvements
+ * Added hide/show columns for CMS pages/blocks grid on backend
+ * Updated the multi-select functionality & UI for CMS pages/blocks grid on backend
+ * Added the new look & feel for Edit Order Page (view/edit order)
+* Framework Improvements
+ * Updated API framework to support different integration object ACLs
+ * Updated unit and integration tests config files to include tests from the Updater Application
+ * Exceptions caught and logged before reaching Phrase::__toString() method
+* MTF Improvements
+ * Replaced end-to-end One-page Checkout test with online shipment methods with scenario test
+ * Replaced end-to-end Layered Navigation test with injectable test
+ * Replaced end-to-end Shopping Cart price rule test with injectable test
+ * Replaced end-to-end Switch Currency test with injectable test
+ * Fixed the filling condition element
+ * Updated a set of functional tests
+* Various
+ * Eliminated functional logic in constructors
+ * Updated public API definitions
+ * Added information for Downloadable Products to Catalog Product Data Object
+ * Added information for Catalog Inventory data to Catalog Product Data Object
+ * Added information for Grouped Products to Catalog Product Data Object
+ * Added information for Configurable Products to Catalog Product Data Object
+ * Cleaned Tax API data interfaces
+ * Removed OptionTypesListInterface and type field in OptionInterface
+* Fixed bugs
+ * Fixed an issue with focus state appearing on click event in Admin Menu logo.
+ * Fixed an issue where order was placed via Payflow link without providing credit card data
+ * Fixed an issue where titles were displayed for backend navigation menu group when it only contained a single section
+ * Fixed an issue where REST URL paths were not case-sensitive
+ * Implement transparent redirect API
+ * Fixed an issue in cron.php with checking for functions which are disabled in php.ini
+ * Front-end development workflow settings scope changed to Global
+ * Fixed an issue with widget title escape
+ * Fixed the filename filtering
+ * Fixed an issue with universal fatal error in the profiler option #2
+ * Fixed an issue when shipping address in backend could not be changed when creating order
+ * Fixed the performance issue with tax rules creation
+ * The extended attributes became optional
+ * Fixed an issue where final price did not recalculate when option was selected
+ * Fixed an issue with price currency symbols
+ * Fixed an issue when low_stock_date showed incorrect data
+ * Fixed an issue with random integration test failure
+* GitHub issues
+ * [#526] (https://github.com/magento/magento2/issues/526) -- Area Sessions: Magento 2 Should not Allow "area-less" Sessions During an Area Aware Request
+ * [#1212] (https://github.com/magento/magento2/issues/1212) -- Magento 2 0.74.0-beta5 unable to open home page after successful installation
+ * [#1213] (https://github.com/magento/magento2/issues/1213) -- Magento 2 0.74.0-beta6 unable to open home page right after successful installation
+ * [#1157] (https://github.com/magento/magento2/issues/1157) -- Something went wrong with the subscription
+ * [#1228] (https://github.com/magento/magento2/issues/1228) -- PDOException during attempt to export products: Unknown column 'entity_value.entity_type_id' in 'on clause’
+
+0.74.0-beta7
+=============
+* Framework improvements
+ * Exceptions are caught and logged before reaching the Phrase::__toString() method
+ * Refactored controller actions in the Checkout area
+ * Refactored controller actions in the Tax area
+ * Implemented new look & feel for the Edit Order page (View/Edit Order)
+ * Replaced the end-to-end test for Onepage Checkout with online shipment methods with the scenario test
+* Fixed bugs
+ * Fixed an issue where a success message was absent when adding a product with options from Wishlist to Shopping Cart
+ * Fixed an issue where an exception was thrown when trying to sort Customer Groups by Tax Class
+ * Fixed an issue where the background color changed to the “on focus” state when clicking the Admin Menu logo
+ * Fixed an issue with Mini Shopping Cart containing extra empty space
+* GitHub issues
+ * [#1173] (https://github.com/magento/magento2/pull/1173) -- Change to HttpClient4 from Java client; fix regex issues
+ * [#1185] (https://github.com/magento/magento2/pull/1185) -- Error message for duplicated phrases not allowed in Generator.php
+ * [#1199] (https://github.com/magento/magento2/pull/1199) -- Add Event for sales_order_state_change_before during Order->saveState()
+ * [#1201] (https://github.com/magento/magento2/pull/1101) -- Add customer_validate event
+ * [#1202] (https://github.com/magento/magento2/pull/1102) -- Email sending events
+
+0.74.0-beta6
+=============
+* Framework improvements
+ * Implemented a default exception handler for blocks
+ * Updated the root composer.json file
+ * Updated the setup tool to support different editions
+ * Added an ability to operate with Sales & Checkout APIs as guests and registered users
+ * Implemented the additional Sales & Checkout APIs for registered customers and guests
+ * Added unit tests to cover Sales & Checkout services code
+* Various
+ * Standardized the hierarchy of exceptions
+ * Added bundle product API integration to Catalog
+* Fixed bugs
+ * Fixed an issue where it was impossible to place an order using multiple address checkout
+ * Fixed an issue where DB timestamp columns with current_timestamp on update were not handled correctly
+ * Fixed an issue with FPT in partial invoices
+ * Fixed a performance issue in benchmark test
+ * Fixed the incorrect Exception class in the Magento_CurrencySymbol module
+ * Fixed an issue by letting MySQL determine a database table type instead of MyISAM
+ * Fixed an issue where test failures occurred when the database and the application were in different time zones
+ * Fixed an issue where \Magento\Framework\Phrase omitted placeholder values if no renderer was set
+
+0.74.0-beta5
+=============
+* Various
+ * Added the new methods/fields in the Catalog Product Data Object
+ * Improved the Nginx configuration sample file for better web-server responsiveness and security
+ * Implemented the new look & feel for Create New Order page
+ * Removed the redundant DB constraints for cascade operations related to order management
+ * Implemented the mechanism of asynchronous email notifications after creation of Orders, Invoices, Shipments and Credit Memos
+ * Moved the join logic on application level in order to make DB separation possible in Reports component
+ * Implemented the TTL and event approaches of cache invalidation, introduced the full and the partial Varnish Cache flush
+ * Moved all Setup commands to Magento CLI
+ * Exposed CMS API as Web API
+* Fixed bugs:
+ * Unexpected response for API "/V1/customers/password" service
+ * Can’t include a third-party link to frontend section via layout
+ * Specified details for Grouped product are lost after adding to wishlist
+ * Impossible to configure products in customer wishlist in Admin Panel
+ * Adding the product from wishlist to cart if more than one store view exists
+ * Specified product field custom options is not displayed in wishlist in Admin Panel
+ * Checkout doesn't work with JS bundling enabled in production mode
+ * Issue with price excluding tax when selecting downloadable links
+ * Undefined index warning in case the frontend cache information is missing in configuration file
+ * "New Order" email is not sent to customer after placing order via API service
+ * 503 error when placing order with multiple shipping addresses if mail transport doesn't exist
+ * Broken words for fields with long labels all over the Admin Panel
+ * Issue with saving 'is_virtual' flag in quote
+ * "Void" button available after "Deny Payment" operation
+ * Uninstall logic did not clean cache properly
+ * Obsolete code tests did not cover Tests folders
+ * Random fail of Magento\Log\Test\Unit\Model\VisitorTest
+* GitHub issues:
+ * [#1149] (https://github.com/magento/magento2/issues/1149) -- Checkout Grand Total amount miscalculation
+ * [#1165] (https://github.com/magento/magento2/pull/1165) -- Fix typos
+ * [#1182] (https://github.com/magento/magento2/pull/1182) -- Update system.xml for 'fix' sortOrder in adminhtml
+ * [#1186] (https://github.com/magento/magento2/pull/1186) -- SalesSequence: Fixed composer installer dependency
+
+0.74.0-beta4
+=============
+* Various
+ * Implemented the getDefaultResult method, to be able to catch exceptions in FrontController and redirect user to the correct page
+ * The getDefaultResult method is invoked to return default result of action execution within controllers. It can be used to generate the ‘execute’ method result in action controllers
+ * Eliminated the unused exceptions. Exceptions that weren't linked to any logic were also eliminated and replaced with LocalizedException or its child classes
+ * Refactored all controllers where possible: the default exception handling logic moved to FrontController. Controllers that cannot be refactored do not conflict with the new logic
+* Framework:
+ * Created Magento Console to perform CLI actions
+ * Introduced a new SalesSequence module that is responsible for documents numeration management across the Order Management System
+ * Implemented the mechanism of asynchronous indexing of sales entities grids
+* Setup
+ * Added the ConfigOption and ConfigOptionsList classes to be used by modules to manage deployment configuration
+ * Moved all existing segments logic to new classes
+ * Added the config:set command, which enables deployment configuration management
+ * Removed the old 'install-configuration' tool
+* Functional tests:
+ * Fixed functional test for order placement from backend
+ * Replaced the end-to-end test for a product with MAP with an injectable test
+* Design
+ * Updated the Blank and Luma themes to enable theme (not only library) variables overriding in the _theme.less file of any inherited theme. Included LESS code standards to the UI Library documentation
+* Fixed bugs:
+ * Fixed an issue where composite products could not be added to the order from the Recently Viewed Products section
+ * Fixed an issue where not all .js files were added to a bundle
+ * Fixed an issue where it was possible to save an incorrect IP value in the Developer Client Restriction field
+ * Fixed an issue where a raw DB error was thrown when trying to enter a custom variable with duplicated variable code
+
+0.74.0-beta3
+=============
+* API
+ * The orders were extended with the gift messages
+ * The page and block data and repository interfaces
+ * Updated the public API list
+* Framework improvements
+ * Improved the profile generator
+ * Introduced the new environment for Jasmine tests
+* Design
+ * Inverted the new admin area styles scope, clean up the old styles
+ * New Side Panels on Admin Area
+* Various
+ * Asynchronous indexing for sales grids
+ * Advanced Mini Cart
+ * The HTML minification management on Admin Area
+ * Minor UI improvements
+ * The GitHub contribution process was updated in the README.md file
+* Fixed bugs
+ * Fixed the assets deployment tool with the minification
+ * Fixed the JMeter scenario for the performance toolkit
+ * Fixed the static files caching on Varnish
+ * Fixed Admin user creation with the duplicated email or name (incorrect URL)
+ * Fixed the link on Reset password email for secure URL case
+ * Fixed the configured product adding from the wish-list to shopping cart
+ * Fixed the long labels display on Admin Area
+ * Fixed the Navigation Menu items on Admin Area
+ * Various unit and integration tests bugs
+* GitHub issues and requests
+ * [#675] (https://github.com/magento/magento2/issues/675) -- Fix for Textarea element cols and rows #675
+
+0.74.0-beta2
+=============
+* Fixed bugs
+ * Wrong capitalization of the label names (the sentence-style capitalization instead of the headline style)
+ * Inconsistency in the labels in the Admin panel
+ * Customer menu tabs aren't displayed as selected for the child pages
+ * An issue with the Active item in the navigation menu in the Blank and Luma themes
+ * Incorrect price alignment during checkout in the Blank and Luma themes
+ * Broken field "URL" in the Downloadable product in the Admin panel
+* GitHub issues and requests:
+ * [#1096] (https://github.com/magento/magento2/issues/1096) -- Customer model - getPrimaryAddresses without primary billing address
+ * [#1114] (https://github.com/magento/magento2/issues/1114) -- GA bug
+ * [#1116] (https://github.com/magento/magento2/issues/1116) -- Incorrect use of implode()
+ * [#1126] (https://github.com/magento/magento2/pull/1126) -- Fixed occurrences of implode with wrong argument order
+ * [#1128] (https://github.com/magento/magento2/pull/1128) -- Change wording for long operation warning
+
+0.74.0-beta1
+=============
+* Various
+ * Inline JS code was eliminated
+ * Fixed XSS vulnerability issues
+ * The "Last login time" functionality was moved from the `Magento_Log` module to the `Magento_Customer` module
+ * Implemented two-strategies JavaScript translation
+ * Improved backend menu keyboard accessibility
+ * Accessibility improvements: WAI-ARIA in a product item on a category page and related products
+ * Checkout flow code can work with a separate DB storage
+ * Unit tests moved to module directories
+ * Addressed naming inconsistencies in REST routes
+ * Added Advanced Developer workflow for frontend developers
+* Setup
+ * Utilized Magento error handler in the Setup application to convert errors and warnings to exceptions
+ * Fixed an issue when private content handling did not work with enabled HTML profiler and developer mode
+ * Fixed an issue where Magento Composer Installer failed to uninstall last package
+ * Fixed an issue where a fatal error was thrown in the Setup application after running composer install with the `--no-dev` option
+ * Fixed a JavaScript issue with expanding the list of modules on the Customize Your Store step in the Setup Wizard
+ * Fixed a JavaScript issue with returning from the Create Admin Account step to the Customize Your Store step in the Setup Wizard
+* Framework
+ * Added a new `Magento_MediaStorage` module to store components of the `Magento_Core` module
+ * Implemented JavaScript resources bundling (server side pre-processing)
+ * Replaced `Zend_Locale` with native PHP implementation
+ * Replaced `Zend_Date` with native PHP `DateTime` object/functions
+ * Refactored Magento\Framework\Exception\LocalizedException
+ * Renamed Magento\Framework\Validator\ValidatorException
+ * Renamed Magento\Framework\Controller\Result\JSON to meet PSR standard
+ * Updated the oyejorge/less.php library to the latest version
+ * Refactored WebApi framework to support particular types for custom attributes
+ * Version used in SOAP declarations is now taken from routes declared in webapi.xml
+ * Added ability to extend API data interfaces using extension attributes
+ * Removed the `Magento_Core` module
+* Web API Framework
+ * Factories are used instead of builders
+ * Removed auto-generation of builders
+ * Made `interfaceName` a required parameter in `Magento\Framework\Api\DataObjectHelper::populateWithArray` method
+* Performance
+ * Increased caching coverage of Magento storefront pages: Cart, Register, Login, My Account
+ * Finished work around HHVM compatibility
+ * Fixed EAV caching on storefront
+ * Optimized dependency injection compilation for interception
+* Design
+ * New design for the Magento Admin
+ * New message design in Setup Wizard
+ * New design for Minimum Advertised Price (MAP) on storefront catalog pages
+* Fixed bugs
+ * Catch syntax error in `module.xml` files
+ * Profiling of cache operations was permanently disabled
+ * Session was not cleared when layout is cached
+ * Page cache was invalidated by cron jobs after reindexing, even when nothing was changed
+ * Typo in method name in `Adminhtml/Index/Grid.php`
+ * Missing validation of table prefix in Step 2: Add a Database in the Setup wizard
+ * User hint of password strength validator in Web Setup wizard now consistent with the algorithm used
+ * New Logger did not format exception and debug info correctly
+ * Wrong styles structure
+ * Customer is redirected to shopping cart by clicking on mini-shopping cart after adding product
+ * Gift Message information for Order level is not presented on storefront or Admin orders
+ * Wrong `customer_id` value for GiftMessages created using API service
+ * No ability to place order for guest customer using API service
+ * Shopping Cart displayed partly broken if it contained a Product with an image as a custom option
+ * Impossible to add product to the shopping cart with Custom option of `type="file"`
+ * Adding to cart dialog widget with MSRP price on product page was broken
+ * Copy and paste detector is run against test files that are blacklisted
+ * Displayed the wrong price on product page when selecting an option for configurable product
+ * Tax amount (tax on full shipping) is refunded when partial shipping amount is refunded
+ * Price (including tax) is shown on product page when configuration is set to display excluding tax
+ * Fixed Product Tax (FPT) is not applied in shopping cart and orders for registered users
+ * FPT not applied for registered users when FPC is disabled
+ * "All categoryName" menu link is absent, subcategories are shown on hover of parent category
+ * Horizontal scrolling displays when browser width is resized to mobile size
+ * Broken design for "select store" element in CMS grid filter
+ * Attribute value uniqueness isn't checked for custom product template
+ * Category tree is not displayed in conditions for Catalog Price Rules
+ * Remove hard-coded IDs from catalog API code
+ * Bottom margin for "Wishlist Search" widget
+ * Custom option image with limits view for storefront
+ * Category page displayed outdated prices after catalog price rule was deleted
+ * Cart quantity is more than in-stock amount
+ * Page layout configuration cannot be extended or overridden by the theme
+ * Page layout with custom set of containers causing fatal error
+ * Reset password e-mails requested from second store view has link and name of the first main store
+ * Cannot place order for virtual product with customer address attribute from Admin
+ * Specified details for bundle product are lost after adding to wishlist
+ * Customer address is set to non-default after changing account information
+ * Unable to save newsletter subscription information of customer in Admin
+ * Guest can't add product to wishlist while registering
+ * Cron job for Shipping
+ * Solution for issue with attributes with list of countries
+ * Unable to generate variations while creating a configurable product
+ * Variations are created with out of stock status if configurable product has been switched from simple product
+ * Impossible to search Downloadable product using file title
+ * Change order of loading integration tests (load config annotations before fixtures)
+ * Impossible to upload files in configuration
+ * Price displaying on product page for bundle product
+ * Display bug for tier prices
+ * Required marker is displayed on wrong line in Admin
+ * Categories' titles in storefront navigation Menu overlap "expand" button on mobile
+ * Admin Login form alignment issues with IE9
+ * Display check boxes on Update Attributes page using a mass action
+ * Removed Test\Unit from cached dependency injection configuration for performance reasons
+ * Impossible to place order with DHL EU shipping method
+ * Updates while tables recreation in setup process
+ * Pagination issues in the Downloadable Products tab page in a customer account
+ * Adding existing attribute on New Product page
+ * "Manage Stock" is not saving for bundle product
+ * Filter did not work for Order Total report
+ * Error on reports for Order Totals if grouped by Year
+ * Customer can't find order on storefront
+ * Postal code is still mandatory for non-US addresses that don't use it
+ * Price of simple product isn't recalculated after selecting options on product page
+ * Don't load bundle quantity from options on bundle page
+ * Impossible to remove added row from "Minimum Qty Allowed in Shopping Cart"
+ * Impossible to add to the cart a product with required Custom Options of "Field" and/or "Area" type
+ * Syntax error in New Shipment email template
+ * Removed `adminhtml`-only web service route for using customer user password reset tokens and setting new passwords
+ * Removed the relevant URL Rewrites configuration after removing a category
+ * Static obsolete code test did not recognize partial namespaces
+ * Magento breaks when set specific locale
+ * Impossible to update Gift Message from Admin
+ * Impossible to create configurable product
+ * Impossible to create new attribute using the Product Creation page
+ * Product Template page did not work in IE9 and FF
+ * Product image could added only after double-click in IE9
+ * Inconsistent timestamp return for Admin timezone
+ * 404 page is displayed on any action with order that it viewed under guest
+ * "500 Internal Server Error" in case of excess "Maximum Qty Allowed in Shopping Cart" value
+ * MAP link is displayed for a product on category page after delete Catalog Price Rule
+ * Deploy script modifies LESS files with `@urls-resolved: true`
+ * Zip code field is missing in customer addresses in the Admin
+ * Impossible to add bundle product with required option to shopping cart without selecting all available options
+ * Empty email is sent when a registered user changes password in the storefront
+ * Tabs widget does not initialize sometimes on Product Creation page
+ * Fatal error when trying to send notify customer by email about shipment
+* Tests
+ * Fixed an issue with `WebDriverException` for iframes in functional tests
+ * Added functional test for Admin menu navigation
+ * Replaced end-to-end test for online one-page checkout with injectable test
+ * Replaced end-to-end test for administrator user with injectable test
+ * Replaced end-to-end test for catalog price rule with injectable test
+ * Replaced end-to-end test for store view with injectable test
+ * Increased integration tests coverage for `Magento_Indexer` module
+ * Increased unit test coverage for `Magento_Cms`, `Magento_Email`, and `Magento_Sales` modules
+* GitHub issues and requests:
+ * [#533] (https://github.com/magento/magento2/issues/533) -- Remove Allow all access in .htaccess
+ * [#850] (https://github.com/magento/magento2/issues/850) -- HTML Profiler and pub/static Resources
+ * [#919] (https://github.com/magento/magento2/issues/919) -- System information error when error is fixed but page wasn't refreshed
+ * [#987] (https://github.com/magento/magento2/pull/987) -- Fix mod_expires for dynamic content
+ * [#1004] (https://github.com/magento/magento2/issues/1004) -- Problem with template luma
+ * [#1014] (https://github.com/magento/magento2/issues/1014) -- php index.php update - Class Magento\Store\Model\StoreManagerInterface does not exist
+ * [#1015] (https://github.com/magento/magento2/issues/1015) -- After success setup/index.php update - "Missing required argument $engines of Magento\Framework\View\TemplateEngineFactory"
+ * [#1016] (https://github.com/magento/magento2/issues/1016) -- Backend Javascript Errors (new installation)
+ * [#1020] (https://github.com/magento/magento2/issues/1020) -- Bug generating Sitemap Cron expression
+ * [#1029] (https://github.com/magento/magento2/issues/1029) -- Admin dashboard Most Viewed Products Tab issue (without product list)
+ * [#1035] (https://github.com/magento/magento2/issues/1035) -- Bug in Magento\Framework\Simplexml\Element::appendChild
+ * [#1042] (https://github.com/magento/magento2/issues/1042) -- Lost catalog rewrite url after page/list-mode/limit changed
+ * [#1045] (https://github.com/magento/magento2/issues/1045) -- Bad rendering frontend category menu
+ * [#1048] (https://github.com/magento/magento2/pull/1048) -- Make possible to upload SVG logo by admin
+ * [#1052] (https://github.com/magento/magento2/pull/1052) -- Fix history cleanup for missed cron jobs
+ * [#1062] (https://github.com/magento/magento2/pull/1062) -- Add check to see if PHP > 5.6 and always_populate_raw_post_data = -1
+ * [#1082] (https://github.com/magento/magento2/pull/1082) -- Fix incorrect variable name ($schema -> $scheme)
+ * [#1086] (https://github.com/magento/magento2/issues/1086) -- Email message containing non English character is displayed incorrectly on the receiver
+ * [#1088] (https://github.com/magento/magento2/pull/1088) -- Add developer mode example to .htaccess
+ * [#1107] (https://github.com/magento/magento2/issues/1107) -- Serious security issue in Customer Address edit section
+
+0.42.0-beta11
+=============
+* Various improvements:
+ * Added LICENSE to Developer module
+ * Refactored Catalog and related module to use mutable data object interface
+ * Refactored Sales and related modules to use mutable data interfaces
+* Setup:
+ * Added styles for new module enabling / disabling section in Installation wizard
+ * Modules Install and upgrade capabilities are refactored to implement interfaces used by Setup application
+* Framework:
+ * Moved/refactored Magento\IO\Sftp adapter into Filesystem library
+ * Removed Magento IO library
+ * Implemented Dynamic Types Binding in SOAP
+ * Implemented Extensible Attributes generation
+ * Improved Web API Related Code Quality
+ * Moved Specific Helper Components From the Magento/Core Module to Magento/Framework
+* Performance:
+ * Inline JS code is eliminated
+ * Created fixture for changing Magento config update via Performance Toolkit Generator
+* Fixed bugs:
+ * Issue with multiple addresses checkout
+ * Issue with catalog page update after a product status changes
+ * Issue with distance between "Log in" & "or" & "Register" in Frontend header
+ * Issue with tax details and amounts in frontend and backend order
+ * JavaScript error when clicking on toggle arrow to show FPT in shopping cart
+ * PHP Warning when trying to checkout with Multiple Addresses on review order page
+* Functional tests:
+ * Refactored end-to-end test for order placement from backend and for OnePageCheckout
+* GitHub requests:
+ * [#1035] (https://github.com/magento/magento2/issues/1035) -- Bug in Magento\Framework\Simplexml\Element::appendChild
+ * [#1053] (https://github.com/magento/magento2/issues/1053) -- #865: add getParams/setParam to RequestInterface
+ * [#1066] (https://github.com/magento/magento2/issues/1066) -- PHP 5.5.16-1+deb.sury.org~precise+1
+
+0.42.0-beta10
+=============
+* Framework
+ * Replaced \Magento\Framework\Model\Exception with LocalizedException
+ * Replaced obsolete exceptions
+ * Config components are moved to new Magento_Config module
+ * Variables components are moved to new Magento_Variable module
+ * Preferences, shared instance creation and compiled factory accelerated by 3%
+ * Fixed "HEADERS ALREADY SENT" error when controller action outputs directly
+* Setup
+ * Added ability to install and upgrade components in Setup Tool (CLI)
+ * Added ability to manage list of modules in Setup Wizard
+ * Fixed error after "Start Readiness Check" button press in Setup Wizard
+ * Fixed error with Base URL change after "Previous" button press on Step 4 in Setup Wizard
+ * Fixed error with HTTPS options related to auto-filled Base URL on Step 3 of Setup Wizard
+ * Fixed error in "app\design\frontend\Magento\luma\composer.json"
+* LESS Compiler
+ * Added automatic update in "pub/static" of changed "css/js/images" after materialization
+ * Variable names are renamed to meet Magento Code Standards
+ * Added client-side LESS files compilation to reduce page load time in developer mode
+* Widgets
+ * Fixed fatal error on page which contain a widget with a condition based on "Category"
+* GitHub requests
+ * [#899](https://github.com/magento/magento2/issues/899) -- When accessing any category - error report generated
+ * [#986](https://github.com/magento/magento2/pull/986) -- Make it possible to exclude classes (directories) for compilation
+ * [#1054](https://github.com/magento/magento2/pull/1054) -- Fix typo in MAGE_MODE
+
+0.42.0-beta9
+=============
+* Framework Improvements:
+ * Layout Models are moved from Core module to appropriate modules
+ * View components are moved from Core to Theme module
+ * Rest of theme related configuration files are refactored
+ * StoreManagerInterface is moved from Framework to App folder
+ * ZF1 controller libraries are updated
+ * Class definitions in multi-tenant mode are removed
+ * DI configuration became more optimal: OM cached configuration uses the general pattern for all argument types in application
+ * Varnish 4 configuration is updated
+ * Layout Processing became more fast
+ * HTML response minified
+ * App Components and Specific Helper Components are moved from the Magento_Core Module
+* UI improvements:
+ * Add to cart operation became asynchronous and doesn`t reload page (AJAX call)
+* Fixed Defects:
+ * When Inline Translation is enabled, JQuery buttons for translate were broken
+ * Base URL has invalid place inside Magento Admin Address on "Web Configuration" step of installation wizard
+ * Inability of submit Product from keyboard while Product Creation
+ * Sold products aren't displayed in Bestsellers
+ * Compiled definitions can cause unexpected errors compared to runtime definitions
+* Accessibility improvements:
+ * WAI-ARIA attributes are added to Frontend Layered Navigation and Customer Dropdown, Frontend Product Page Tabs, Frontend Cart Summary collapsible panels, Frontend forms and notifications, Frontend Checkout pages
+* Tests improvements:
+ * Added mechanism of replacing 3-rd party credentials in functional tests
+ * Update of end-to-end tests for create product, update product, promoted product, out of stock product, create product with new category, unassign products on category, create backend customer with injectable test
+* Various improvements:
+ * JS template engine became unified on Backend and Frontend
+ * Increased unit test coverage for Magento/Indexer module
+ * Version number info became accessible at a public URL
+* GitHub requests:
+ * [#1027](https://github.com/magento/magento2/issues/1027) -- Can't add new subcategory
+ * [#921](https://github.com/magento/magento2/issues/921) -- Change resource ids from Magento_Adminhtml::* to Magento_Backend
+
+0.42.0-beta8
+=============
+* Various improvements:
+ * Existing Builders were replaced with DataFactories in Customer and Tax modules
+ * Refactored controller actions in the Checkout and CMS modules
+ * Increased coverage with static tests for `.phtml` files
+ * Moved Cookie related functionality from `Theme` and `Core` modules into a new `Cookie` module
+ * Moved minfication configuration settings to the `View` library level
+* UI improvements:
+ * Restyled installation wizard
+ * Prepared styles for Dashboard in the Backend area
+* Framework improvements:
+ * Added `setCustomAttribute` and `setCustomAttributes` methods to `ExtensibleDataInterface`
+ * Added setter methods to data object interfaces
+ * Replaced `Builders` with `Factories`
+ * Added `DataObjectHelper.php` which contains the common set of methods of all builders
+ * Refactored `__()` to return `Phrase` object
+ * Allowed usage of `LocalizedException` on the framework's library level
+ * Added expiration/lifetime management of frontend resources
+ * Unified MTF configurations format for Framework, TestCase variations and TestCase scenario configurations
+* Fixed bugs:
+ * Fixed an issue with product reviews list paging
+ * Fixed an issue where sold products were not displayed in Bestsellers
+ * Fixed an issue with image rendering on the CMS page on Frontend when `webserver rewrites = no`
+* GitHub requests:
+ * [#790](https://github.com/magento/magento2/issues/790) -- Magento API fails in a CGI env (zf1 issue)
+ * [#909](https://github.com/magento/magento2/issues/909) -- Manage Titles in popup window front-end issue
+ * [#996](https://github.com/magento/magento2/issues/996) -- Pager block should support url "fragment".
+ * [#985](https://github.com/magento/magento2/pull/985) -- Allow camelcase in vendorname for menus
+ * [#1025](https://github.com/magento/magento2/pull/1025) -- Wrong parameter for getting base url for 'media' path in "Image" form element.
+
+0.42.0-beta7
+=============
+* Various improvements:
+ * Added Varnish 4 support
+ * Added CSS minification
+ * Improved the performance toolkit
+* Fixed bugs:
+ * Fixed an issue where the compiler for the single tenant mode did not resolve Repositories
+ * Fixed an issue where the "Select all" mass action on the Customers page did not select all customers
+ * Fixed an issue where values for a customer attribute of multiple-select type were not saved
+ * Fixed an issue where the parental wakeup() method was not called in interceptors
+ * Fixed an issue where bundle products with the same configurations added from different pages were displayed in the wishlist as separate items
+ * Fixed an issue where the number of items added to the wishlist was not displayed on certain pages
+ * Fixed an issue where logging was broken
+ * Fixed an issue where it was impossible to use \Magento\Customer\Model\Resource\AddressRepository::getList with predefined direction(sortOrder)
+ * Fixed an issue where editing a product from wishlist led caused a fatal error
+ * Fixed an issue where the redirect link to continue shopping was absent in the success message after adding product to a wishlist
+ * Fixed an issue where HTML tags where displayed in product prices on the Customer's Wishlist page in Admin
+ * Fixed an issue where the Name and Email fields were not automatically when creating an email using the Email to Friend functionality
+ * Fixed an issue with the redirect after searching product in a customer wishlist in Admin
+ * Fixed an issue where a configurable product did not go out of stock when last subitem of some option was sold
+ * Fixed an issue with varnish config generation for multiple IPs in access list field
+ * Fixed the wrong di.xml in the Magento_Developer module
+ * Fixed an issue where changes were not saved when default billing/shipping address was not selected in customer addresses
+ * Fixed the issue where the Update Qty button looked disabled during a partial invoice creation
+ * Fixed an issue where the creation date was not displayed in invoices and credit memo grids
+ * Fixed an issue where it was impossible to install Magento_Quote on PHP 5.6
+ * Fixed an issue that changes are not saved when default billing/shipping address is unchecked in customer addresses
+ * Fixed an issue where "Update Qty" button looks disabled while creating partial invoice
+ * Fixed an issue where date created column is not populated in invoices and credit memo grid
+ * Fixed an issue with installation of Magento_Quote module on PHP 5.6
+ * Fixed an issue with wrong link "File Permission Help"
+ * Fixed an issue where dev/tools are broken when DI compiler is used due to skipped by the compiler dev/tools/Magento folder
+* Framework improvements:
+ * JavaScript testsuites divided into frontend, backend and lib suites
+ * Implemented image compression on server side upload
+ * Implemented frontend page resources sorting
+ * Removed the Magic __call method usage in templates
+ * Introduced Jasmine + PhantomJS JavaScript testing infrastructure
+ * Removed support of PHP 5.4
+* Setup Tool improvements:
+ * Added tools for enabling/disabling modules: "module-enable --modules=Module_One,Module_Two, module-disable --modules=Module_One,Module_Two"
+ * Added help option for displaying list of available modules: "help module-list"
+* GitHub requests :
+ * [#593](https://github.com/magento/magento2/issues/593) -- Allow to use "0" as customer group
+ * [#804](https://github.com/magento/magento2/issues/804) -- Comment about VAT number displayed under different field in Customer Configuration
+
+0.42.0-beta6
+=============
+* Various improvements:
+ * Implemented caching for WebAPI configuration
+ * Improved tests coverage of the CurrencySymbol module
+ * Table catalogsearch_fulltext is setting up with ENGINE=InnoDB
+ * Improved unit test coverage of the Catalog related functionality
+ * Optimized JS dependencies
+ * Refactored controller actions in the Sales module
+ * Refactored controller actions in the Customer module
+ * Removed the assertion for the exact number of attributes in API-functional tests for customer metadata.
+ * Refactored API code for the CheckoutAgreements module
+ * Refactored API code for the GiftMessage module
+ * Refactored API for the Checkout module
+* Fixed bugs:
+ * Fixed an where issue were WebAPI generated the wrong WSDL
+ * Fixed an issue where Catalog, Checkout, Customer API ACLs did not support AJAX use case(s)
+ * Fixed an issue where SOAP tests failed after upgrading to ZF 1.12.9
+ * Fixed an issue where the 'There is no data for export' message was displayed permanently after invalid search
+ * Fixed an issue where there was no ability to set category position during creation it
+ * Fixed a CSS issue where certain images were absent on banners ()
+ * Fixed an issue where the 'Date Of Birth' value was i reset to current date on the customer form)
+ * Fixed an issue where the behavior of the "Terms and Conditions" validation on multiple address checkout was different from the one for the onepage checkout
+ * Fixed an issue where it was impossible to checkout with multiple addresses
+ * Fixed an issue where the 'This is a required field ' message was not displayed for "Terms and Conditions" if the latter was not selected
+* GitHub Requests:
+ * [#963](https://github.com/magento/magento2/pull/963) -- Default Accept header
+ * [#995](https://github.com/magento/magento2/pull/995) -- Prevent a warning in activated developer mode when 'plugins' is no array
+ * [#866](https://github.com/magento/magento2/issues/866) -- Configurable product attribute scope
+ * [#965](https://github.com/magento/magento2/pull/965) -- extra tests for current interception behavior
+* Service Contracts:
+ * The Downloadable module basic implementation
+* Framework improvements:
+ * Refactored and covered with tests the classes with high CRAP value (>50)
+ * Moved Theme Management changes, Design changes, Design\Backend modules, and Observer components from the Core module to the Theme module
+ * Moved Debug Hints models from the Core module to the newly added Developer module
+ * Moved URL components, Factory, and EntityFactory from the Core module to the Magento Framework
+* UI improvements:
+ * Compressed and resized images
+ * Added new base styles for the Admin re-design
+ * Added the WAI-ARIA attributes are to the Search Autocomplete on the storefront
+ * Added visual style for the 'skip to content' attribute on the storefront
+ * Fixed the style of persistent login messages on the storefront for all themes
+ * Fixed the style of scrolling for Categories with long names in the Admin
+ * Fixed the "css/print.css" file path on the storefront pages for all themes
+* Tests improvements:
+ * Converted all fixtures/repositories for functional tests to .xml files
+ * Improved interaction between webdriver and the new Magento JS forms
+ * Increased unit and integration tests coverage
+
+0.42.0-beta5
+=============
+* UI improvements:
+ * Updated the design of Enable Cookies CMS page
+ * Implemented UI improvements for Widgets
+ * Fixed the "Help Us to Keep Magento Healthy Report All Bugs (ver. #)" link Magento Admin
+ * Various UI improvements
+* Various improvements:
+ * Implemented Sales Quote as a standalone Magento module
+ * Performed custom EAV entities code and DB tables cleanup
+ * Eliminating remnants of the Core module:
+ * Moved Application Emulation from the Magento_Core module to the Magento_Store module
+ * Moved Validator Factory from the Magento_Core module to the Magento Framework
+ * Added static integrity test for composer.json files
+ * Added PHPMD and PHPCS annotations to the codebase
+* Tests improvements:
+ * Added MVP tag to the functional tests
+ * Created acceptance functional test suite
+ * Replaced end-to-end tests for url rewrite creation, CMS page creation, category creation, review creation, customer frontend creation, and tax rule creation with injectable tests
+ * Automated test cases for downloadable products with taxes
+* Fixed bugs:
+ * Fixed an issue where the Discounts and Coupons RSS Feed had incorrect title
+ * Fixed an issue where a wrong special price expiration date was displayed in RSS
+ * Fixed an issue in the Import functionality where imported files disappeared after the Check Data operation
+ * Fixed an issue where the Unsubscribe link in the Newsletter was broken
+ * Fixed an issue where stock status changed incorrectly after import
+ * Fixed an issue where selected filters and exclude did not work during Export
+ * Fixed an issue where tax details order was different on order/invoice/refund create and view pages (
+ * Fixed a typo in the getCalculationAlgorithm public function
+ * Fixed an issue where the incorrect value of Subtotal Including Tax was displayed in invoices
+ * Fixed an issue where tax details were not displayed on a new order
+ * Improved pricing performance using caching
+ * Fixed an issue where CsvImportHandler tests still referring to links from Tax module instead of TaxImportExport module
+ * Fixed an issue where an exception was thrown instead of 404 if altering the url for a product with required configuration on the storefront
+ * Fixed an issue where the title of successfully placed order page (was empty
+ * Fixed an issue where certain fields were not disabled by default on the website scope in System configuration as expected
+ * Fixed an issue where third party interfaces were not supported by single-tenant compiler
+ * Eliminated the 'protocol' parameter from the ReadInterface and WriteInterface
+* GitHub requests:
+ * [#979](https://github.com/magento/magento2/pull/979) -- Adding OSL license file name
+ * [#978](https://github.com/magento/magento2/pull/978) -- Added ignore rule for media assets in wysiwyg directory
+ * [#877](https://github.com/magento/magento2/pull/877) -- Made Topmenu HTML Editable
+ * [#906](https://github.com/magento/magento2/pull/906) -- Add tests for View\Layout\Reader\Block and slight refactoring
+ * [#682](https://github.com/magento/magento2/issues/682) -- \Magento\Framework\Pricing\PriceCurrencyInterface depends on Magento application code
+ * [#581](https://github.com/magento/magento2/issues/581) -- About ByPercent.php under different currencies
+ * [#964](https://github.com/magento/magento2/pull/964) -- Improving documentation for jMeter performance tests
+ * [#871](https://github.com/magento/magento2/issues/871) -- Replace Symfony2/Yaml in composer
+ * [#990](https://github.com/magento/magento2/pull/990) -- add @see annotation before class to make it recognizable by IDE
+ * [#988](https://github.com/magento/magento2/pull/988) -- Prevent Varnish from creating cache variations of static files
+* Framework improvements:
+ * Improved unit and integration tests coverage
+
+0.42.0-beta4
+=============
+* Various improvements:
+ * Updated Copyright Notice and provided reference to the license file
+ * Updated test framework to support stores other than default
+ * Removed version information from theme.xml files leaving it only in composer.json files
+* Fixed bugs:
+ * Fixed an issue where coupon code was reported to be invalid if it has been removed from reorder in backend and then re-applied
+ * Fixed an issue where the 'Guide to Using Sample Data' link was incorrect in the web setup UI
+ * Fixed an issue where the link to System Requirements in bootstrap.php was incorrect
+ * Fixed an issue where Compiler could not verify case sensitive dependency
+ * Fixed an issue where the Recently Compared Products and Recently Viewed Products widgets were not displayed in sidebars
+ * Fixed an issue where the Orders and Returns widget type contained unnecessary tab
+ * Fixed an issue where an image added to a CMS page using the WYSIWYG editor was displayed as a broken link after turning off the allow_url_fopen parameter in php.ini
+ * Fixed an issue where it was impossible to log in to the backend from the first attempt after changing Base URL
+ * Fixed an issue where it was impossible to set back the default English (United States) interface locale for the admin user after changing it so an other value
+ * Fixed an issue where it was possible to execute malicious JavaScript code in the context of website via the Sender Email parameter
+ * Fixed an issue where the Product Stock Alert email was sent to a customer from a store view different than a customer account was created in
+ * Fixed an issue where the "Server cannot understand Accept HTTP header media type" error message was not informative enough
+ * Fixed an issue where unit tests did not work as expected after installing Magento 2
+ * Fixed an issue where the password change email notification was sent after saving admin account settings even if password was not changed
+ * Fixed an issue where static tests failed as a result of adding API functional tests
+ * Fixed API functional tests after merging pull request [#927](https://github.com/magento/magento2/pull/927)
+ * Fixed an issue where the Edit button was present for invoiced orders
+ * Fixed an issue where function _underscore did not work with keys like SKeyName ('s_key_name')
+ * Fixed an issue where a fatal error occurred when browsing categories if web server did not have write permissions for media/catalog/product
+* Github requests:
+ * [#792](https://github.com/magento/magento2/issues/792) -- Failed to set ini option "session.save_path" to value
+ * [#796](https://github.com/magento/magento2/issues/796) -- install.log cannot be created with open_basedir restriction
+ * [#823](https://github.com/magento/magento2/issues/823) -- Installation bug
+ * [#920](https://github.com/magento/magento2/issues/920) -- "web setup wizard is not accessible" error message but the setup wizard is actually accessible
+ * [#829](https://github.com/magento/magento2/issues/829) -- [API] OAuth1.0 request token request failing / Consumer key has expired
+ * [#658](https://github.com/magento/magento2/issues/658) -- Inline translate malfunctioning
+ * [#950](https://github.com/magento/magento2/pull/950) -- Fix for the missed trailing end of line in indexer.php usage help text
+ * [#932](https://github.com/magento/magento2/pull/932) -- Migration tool - not all input has comments
+ * [#959](https://github.com/magento/magento2/pull/959) -- Replace UTF8 'en dash' with minus in error message
+ * [#911](https://github.com/magento/magento2/pull/911) -- Fix test assertion and slight cleanup refactoring
+ * [#936](https://github.com/magento/magento2/pull/936) -- Bugfix for regions with single quote in name
+ * [#902](https://github.com/magento/magento2/pull/902) -- Add integration test for View\Page\Config\Reader\Html
+ * [#925](https://github.com/magento/magento2/pull/925) -- Failed test due to Class not following the naming conventions
+ * [#943](https://github.com/magento/magento2/pull/943) -- magento2-925 Failed Test due to Class not following the naming conventions
+ * [#968](https://github.com/magento/magento2/pull/968) -- Apply pattern matching datasource config files
+ * [#949](https://github.com/magento/magento2/pull/949) -- Added 'status' command for cache cli script / Also improved readability
+* PHP 5.6 in composer.json:
+ * Added PHP 5.6.0 to the list of required PHP versions in all composer.json files
+ * Updated Travis CI configuration to include PHP 5.6 builds
+* Framework improvements:
+ * Removed TODOs in the Integration and Authorization modules
+ * Removed leading backslash from the 'use' statement throughout the code base
+
+0.42.0-beta3
+=============
+* Fixed bugs:
+ * Fixed an issue where malicious JavaScript could be executed when adding new User Roles in the backend
+ * Fixed an issue where incorrect output format was returned when invoking the Customer service
+ * Fixed an issue where it was impossible to activate an integration after editing the URLs
+ * Fixed an issue where incorrect class path was used in the ObjectManager calls
+ * Fixed an issue where inconsistent Reflection classes were used for WebApi applications
+ * Fixed an issue where the parent element was removed from theme.xml by mistake
+* API functional tests changes:
+ * Moved API functional tests to CE repository
+* Various improvements:
+ * Removed include-path from composer.json
+* GitHub requests:
+ * [#876](https://github.com/magento/magento2/pull/876) -- [BUGFIX] Fixed german translation "Warenkorbrn"
+ * [#880](https://github.com/magento/magento2/pull/880) -- Naming fix in DI compiler.php - rename binary to igbinary to stay consistent
+ * [#913](https://github.com/magento/magento2/pull/913) -- Specify date fixture and fix expectations
+ * [#874](https://github.com/magento/magento2/pull/874) -- Prevent special characters finding their way into layout handle due to SKU being used
+ * [#903](https://github.com/magento/magento2/pull/903) -- Small cleanup refactoring
+ * [#905](https://github.com/magento/magento2/pull/905), [#907](https://github.com/magento/magento2/pull/907), [#908](https://github.com/magento/magento2/pull/908) -- Change interpret() return value to conform with Layout\ReaderInterface
+ * [#913](https://github.com/magento/magento2/pull/913) -- Specify date fixture and fix expectations
+
+0.42.0-beta2
+=============
+* Framework improvements:
+ * Added composer.lock to the repository
+* Various improvements:
+ * Magento PSR-3 compliance
+ * Updated file iterators to work with symlinks
+ * Replaced end-to-end test for advanced search with injectable test
+ * Replaced end-to-end test for quick search with injectable test
+* Fixed bugs:
+ * Fixed an issue where an exception occurred when adding configurable products to cart from the wishlist
+ * Modify .gitignore CE according to new repos structure
+ * Fixed an issue where the 'Not %Username%?' link was displayed for a logged in user while pages were loaded
+ * Fixed an issue where Shopping Cart Price Rules based on product attributes were not applied to configurable products
+ * Fixed an issue where the Tax Class drop-down field on New Customer Group page contained the 'none' value when a tax class already existed
+ * Fixed an issue where the 'Credit Memo' button was absent on the Invoice page for payments
+ * Fixed an issue where incorrect totals were shown in the Coupon Usage report
+ * Fixed an issue where an error occurred and the "Append Comments" checkbox was cleared when submitting an order in the backend
+ * Fixed an issue where the Transactions tab appeared in the backend for orders where offline payment methods were used
+ * Fixed an issue with the extra empty line appearing in the Customer Address template
+* Github requests:
+ * [#853](https://github.com/magento/magento2/pull/853) -- Fix spelling error in Customer module xml
+ * [#858](https://github.com/magento/magento2/pull/858) -- Clicking CMS page in backend takes you to the dashboard
+ * [#858](https://github.com/magento/magento2/issues/816) -- Clicking CMS page takes you to the dashboard
+ * [#859](https://github.com/magento/magento2/pull/859) -- Fix email template creation date not being persisted
+ * [#860](https://github.com/magento/magento2/pull/860) -- Fix currency and price renderer
+
+0.42.0-beta1
+=============
+* Fixed bugs:
+ * Fixed an issue with incorrect price index rounding on bundle product
+ * Fixed an issue with product price not being updated when clicking the downloadable link on the downloadable product page
+ * Fixed an issue with exception appearing when clicking the Compare button for selected products
+ * Added backend UI improvements
+ * Fixed an issue with the Compare Products block appearing on mobile devices
+ * Fixed an issue with inability to add conditions to the Catalog Products List widget
+ * Fixed an issue with a customer redirected to page 404 when trying to unsubscribe from a newsletter
+ * Fixed an issue with showing a warning when customer tried to change billing address during multiple address checkout
+ * Fixed an issue with redirecting a customer to the Admin panel when clicking the Reset customer password link
+ * Fixed an issue with inability of a newly registered customer to select product quantity and shipping addresses during multiple checkout
+ * Fixed an issue with showing Zend_Date_Exception and Zend_Locale_Exception exceptions after a customer placed an order
+ * Fixed an issue with inability to rename a subcategory on a store view level
+ * Fixed an issue with not saving the changed parameters in the Admin section of the backend configuration
+ * Fixed an issue with fatal error appearing when trying to enter a new address on multi-address checkout
+ * Fixed an issue with inability to delete a product in the customer’s wishlist in the Admin panel
+ * Fixed an issue with inability to change product configuration in the customer’s wishlist in the Admin panel
+ * Fixed an issue with showing errors when customer with no addresses tried to checkout a product via Check out With Multiple Addresses
+ * Fixed an issue with fatal errors appearing in the Recently Viewed Products frontend widget block
+ * Fixed an issue with the ability of an authenticated RSS admin user to access all RSS feeds
+ * Fixed an issue with widgets losing their options and part of their layout references if more than11 layout references are added and saved
+ * Fixed an issue with the Privacy Policy link missing in the frontend
+ * Fixed an issue with inability to place an order during multiple checkout
+ * Fixed an issue with store views switching in the frontend
+ * Fixed an issue with incorrect work of the CSS minificator
+ * Fixed an issue with inability to open the edit page for a CMS page after filtering in the grid
+ * Fixed an issue with inability to expand customer menu if it doesn't contain the categories, if responsive
+ * Fixed an issue with the absence of JS validation for the Zip/Postal code field
+ * Fixed an issue with a 1 cent difference in the tax summary and detail on an invoice and a credit memo for a partial invoice when a discount and fixed product tax are applied
+ * Fixed an issue with throwing validation error for the State field when saving a product with FPT
+ * Fixed an issue with throwing an error when trying to save a timezone
+ * Fixed an issue with Exploited Session ID in second browser leading to Error
+ * Fixed an issue with session loss on page 404 when using the Varnish caching
+ * Fixed an issue with integration test not resetting static properties to correct default values after each test suite
+ * Fixed an issue with PDO exception during an installation when MySQL does not meet minimum version requirement
+ * Removed hardcoded PHP version requirement in the setup module. Validation of PHP version during installation now uses the Composer information
+ * Fixed an issue with not redirecting to the setup page when Magento is not installed
+ * Fixed an issue with missing of some languages in the dropdown list on the Customize Your Store page of the Web installation
+ * Merged and updated data and SQL install scripts to 2.0.0
+ * Merged user reported patch to fix fetching headers for APIs when PHP is run as fast CGI
+ * Removed the @deprecated methods from the code base
+ * Fixed an issue with the fatal error when enabling Website Restrictions in the frontend
+ * Fixed an issue with showing incorrect message for view files population tool when the application is not installed
+ * Fixed certain customer APIs to be accessed anonymously
+ * Fixed integration tests to avoid sending emails
+ * Fixed an issue with the Continue button losing its style after returning to the Shipping Information step during one-page checkout in Luma, IE11, FF
+ * Fixed an issue with incorrect spaces removal
+ * Fixed an issue with broken responsive design of the Compare Products functionality in the Blank Theme
+ * Fixed an issue with showing the “No such entity with cartId' message error appearing during creating a new order for a new customer on non-default website
+ * Fixed an issue with inability to reselect the File Permission on the Readiness Check step during the installation
+ * Fixed an issue with inability to find by name simple and virtual products in the customer wishlist grid
+ * Fixed integration test fail after DbStatusValidatorTest modifies schema version of the Core module
+ * Fixed an issue with inability to install Magento without the ConfigurableProduct module
+ * Fixed an issue with fatal error appearing on the grouped product page if the GroupedProduct module is disabled
+ * Fixed an issue with no validation for assigning an attribute to an attribute group (API)
+ * Fixed an issue with inability to place an order with the registration method and different billing and shipping address
+ * Fixed an issue with broken footer layout on some Admin panel pages (product creation, order creation, catalog etc.) in IE11
+ * Fixed an issue with countries previously selected in the Ship to specific countries field not visible when the parameter is changed to showing all allowed countries and set back again to specific countries in the flat rate shipping method IE11
+ * Fixed an issue with not showing admin tax and cache warning notifications in IE11
+ * Fixed an issue with product alerts not working
+ * Fixed an issue with incorrect URL rewrite for category with two stores after renaming category for one store
+ * Fixed an issue with inability to save a bundle product with a re-created bundle option
+ * Fixed an issue with inability to add conditions to the Catalog Products List widget
+ * Fixed an issue with export not available if modules for Products Import/Export are removed
+ * Fixed an issue with the Use Layered Navigation for custom product attributes leading to an error on an anchor category page in the frontend
+ * Fixed an issue with the broken export product file on environment SampleData
+ * Fixed an issue with cache not invalidating after categories are moved in tree
+ * Fixed an issue with last five orders showing 0 items quantity after invoices are created
+ * Fixed an issue with an exception appearing on a category page if installing Magento without LayeredNavigation module
+ * Fixed an issue with tax rate not being saved if all states were chosen for any non-default country
+ * Fixed an issue with multi-select fail on the Customer add/edit form
+ * Added exception handling for required fields for REST APIs
+ * Fixed an issue with success message missing after the signup for price alert
+ * Fixed an issue with inability to create a return order from the Admin panel
+ * Fixed an issue with incorrect work of the Default Value for Disable Automatic Group Changes Based on VAT ID setting
+ * Fixed an issue with fatal error on the I18n tools launch due to incorrect bootstrap/autoload
+ * Stabilized functional tests for products in the Catalog module
+ * Stabilized functional tests for product attribute in the Catalog module
+ * Created installation test
+ * Updated functional tests for the new customer form
+ * Updated Magento to follow the new tagging mechanism
+ * Removed incomplete in functional tests for fixed bugs
+ * Fixed an issue with missing theme preview images
+ * Fixed broken SOAP tests
+ * Fixed an issue with invalid online status on the Edit Product page in the Admin panel
+ * Fixed an issue with incorrect location of an error message "Incorrect CAPTCHA" in the frontend
+ * Fixed an issue with showing endless JS loader on the View Configurable Product page in the frontend page, IE, Google Chrome
+ * Fixed a JavaScript error that occurred on the Create Admin Account step during Magento web installation
+ * Fixed an issue where a product remained in stock after saving it with the ‘Out of Stock’ inventory value
+ * Fixed an issue where the JS loader was not disappearing on the View Product page on the frontend if a customer closed the gallery
+ * Fixed an issue where the JS loader was absent while CAPTCHA was being reloaded
+ * Fixed an incorrect alignment of fields on the Create Packages popup
+ * Fixed an issue where Google Content Experiments was not available for CMS pages
+ * Fixed the broken design of the New Product Attribute popup
+ * Fixed an issue where product page was not found if an incorrect image URL was inserted through using the WYSISYG editor
+ * Fixed an issue where the Search Term Report and Search Term list in backend did not work
+ * Fixed an issue where downloadable links and samples were not saved because of the JavaScript error
+ * Fixed an issue where Magento Installation Guide was not accessible via the 'Getting Started' link if installing Magento through using web installer with custom locale and custom encryption key
+ * Fixed an issue with the code style
+ * Fixed an issue where changes made in tax configuration did not appear in the backend on the Create New Order page
+ * Fixed an issue where it was impossible to update options of bundle products from the mini shopping cart
+ * Fixed an issue where layered navigation worked incorrectly with the Automatic (equalize product counts) setting
+ * Fixed an issue with the incorrect error message appearing when running 'php -f setup/index.php help’
+ * Fixed an issue where URLs for subcategories were incorrect after editing URL of a subcategory
+ * Fixed an issue where attribute labels were loaded from cache after updating product attributes
+ * Fixed an issue where form data was not preserved when product form did not pass server side validation
+ * Fixed an issue with static files missing in the Production mode
+ * Fixed issues with errors appearing after View Files Population Tool was run
+* Processed GitHub requests:
+ * [#683](https://github.com/magento/magento2/pull/683) -- CMS Router not routing correctly
+ * [#786](https://github.com/magento/magento2/pull/786) -- Fix Travis CI builds
+* Various improvements:
+ * Improved error message when DB schema or data was not up-to-date
+ * Added nginx configuration to code base
+ * Removed online payment methods for the Dev Beta release
+* Sample Data:
+ * Implemented Luma Sample Data
+* Framework improvements:
+ * Updated ZF1 dependency to 1.12.9-patch1
+* Documentation update:
+ * Covered the Sales module with API documentation
+
+0.1.0-alpha108
+=============
+* Service Contracts:
+ * Implemented Bundle Product API
+ * Replaced Address Converted model with Address Mapper
+ * Refactored Customer web service routes and API functional tests to use latest service layer
+ * Implemented Configurable Product Module API
+ * Removed obsolete namespace Magento\Catalog\Service
+* Price calculation logic:
+ * Removed complex JS price calculation on the frontend
+* Fixed bugs:
+ * Fixed an issue where the path parameter routes were incorrectly matched in the REST web services
+ * Fixed an issue where $0.00 was shown as a configurable product price if variation did not add anything to product price
+ * Fixed an issue where the fatal error occurred when a user with read-only permissions for cart price rules attempted to open an existing cart price rule
+ * Fixed an issue where the 'An order with subscription items was registered.' message was displayed in an order if it has been placed using an online payment method
+ * Fixed an issue where the 'Warning: Division by zero' message was displayed when an invoice was opened for an order placed using an online payment method
+ * Fixed an issue where creating simple product through using API service led to an exception on the frontend
+ * Fixed an issue where it was impossible to perform advanced search for price range of 0 to 0
+ * Fixed an issue with the broken Search Terms Report page
+ * Fixed an issue with the broken Search Terms page
+ * Fixed an issue with a notice appearing in the Advanced Search when searching by a custom multiselect attribute
+ * Fixed an issue where Search did not work if word-request contained a hyphen
+ * Fixed an issue where searching by a title of bundle option returned empty result
+ * Fixed an issue where Maximum Query Length was not applied to Quick Search
+ * Fixed an issue where searching by product name did not return suggested search terms
+ * Fixed an issue with an incorrect dependency of the MySQL search adapter on CatalogSearch
+ * Fixed an issue with incorrect dependency of the Search library on the MySQL adapter
+ * Fixed an issue where Advanced Search always returned empty result for multiselect product attributes
+ * Fixed an issue where an admin user was redirected to the 404 page after deleting search terms through using mass action
+ * Fixed an issue where a product page was frozen when a configurable attribute was added to a current product template during saving a configurable product
+ * Fixed an issue where it was impossible to place an order with downloadable product that contained a link
+ * Fixed an issue where only parent category was displayed in layered navigation on the Search results page
+ * Fixed an issue where the Price attribute was incorrectly displayed in layered navigation if searching by this attribute
+ * Fixed an issue where importing configurable products set them out of stock
+ * Fixed an issue where drop-down lists were closing by themselves in Internet Explorer 9
+ * Fixed an issue where it was impossible to place an order using PayPal Payment Pro and 3D Secure
+ * Fixed an issue where bundle items were always marked as 'User Defined'
+ * Fixed an issue where view management selectors did not work in categories on the frontend
+ * Fixed an issue where the 'Base' image label was not applied to a first product image uploaded
+ * Fixed an issue where editing a product led to data loss and broken media links
+ * Fixed an issue where attributes could not be deleted from the Google Content Attributes page
+ * Fixed an issue where a product was unassigned from a category after it was edited by an admin user with read/edit permissions for product price only
+ * Fixed an issue where the fatal error occurred on the RSS page for new products and special products
+ * Fixed an issue where the fatal error occurred when adding a new Customer Address Attribute
+ * Fixed an issue where it was impossible to install Magento when specific time zones were set
+ * Fixed an issue where compiler.php failed not handle inheritance from virtual classes
+ * Fixed an issue where some locales were absent in the 'Interface Locales' drop-down in the backend
+ * Fixed an issue where the Offloader header did not work in the backend
+ * Fixed an issue where autoloader failed to load custom classes
+ * Fixed an issue where products did not disappear from the shopping cart after checkout
+ * Fixed an issue where changing quantity of a product in the shopping cart removed product from cart
+ * Fixed an issue where the Persistent Shopping Cart functionality was not available if Luma theme was applied
+ * Fixed an issue where the category tree was broken if editing a category name in specific cases
+ * Fixed an issue where 'Price as Configured' value was not updated for a bundle product after changing the value of the 'Price View' field
+ * Fixed an issue where the final product price was displayed incorrectly in a category and a product page if price display setting was set to exclude FPT, FPT description, and final price
+ * Fixed an issue where product price range was displayed incorrectly for bundle products
+ * Fixed an issue where the HTTP 500 error occurred on the Share Wishlist page
+ * Fixed an issue with the incorrect order of dispatching event adminhtml_cms_page_edit_tab_content_prepare_form and setting form values in the backend
+ * Fixed an issue where breadcrumbs were not displaying the fullpath
+ * Fixed an issue where only two of four widgets added to a CMS page were displayed
+ * Fixed an issue where it was impossible to save locale for an admin account after changing it
+ * Fixed an issue where icons were not loaded on a non-secure pages if secure URLs were used in the frontend
+ * Fixed an issue where overriding layouts did not work after renaming a theme
+ * Fixed an issue where the Permissions tree was not displayed when activating an integration
+ * Fixed an issue with duplicated and corrupted page layouts
+ * Fixed an issue where the 'Number of Products per Page' option did not work for widgets of the 'List' type
+ * Fixed an issue where HTTP and HTTPS pages shared cache content
+ * Fixed an issue where the 'Use Billing Address' checkbox did not affect did not affect the checkout experience
+ * Fixed an issue where it was impossible to create shipping labels
+ * Fixed an issue where the 'Payment Method' section was empty in billing agreements in the frontend if a billing agreement was created during the checkout
+ * Fixed an issue with Catalog Rule Product indexer invalidating the price index
+ * Fixed an issue where one of the price range fields was corrupted in the Advanced Search page
+ * Fixed an issue where a base product image that was smaller than the gallery image container was scaled up to fill the container on the View Product page in the frontend
+ * Fixed the layout issue on the Contact Us page
+ * Fixed an issue where search queries were not submitted when a search suggestion was clicked
+ * Fixed an issue where page footer overlapped products in categories in Internet Explorer 11
+ * Fixed UI issues in the Luma theme
+ * Fixed an issue when the fatal error occurred if a category was moved to another category that already contained category with the same URL key
+ * Fixed an issue where incorrect products were displayed on the Reviews tab for a configurable product
+ * Fixed an issue where fatal errors occurred when calling id() on a null store object
+ * Fixed an issue where navigation through the tabs on the Dashboard did not work properly
+ * Fixed an issue where prices for bundle products were incorrect on the category view and search view pages
+ * Fixed an issue where custom Customer attributes and Customer Address attributes were not displayed on the 'Create/Edit Customer' page in thebackend
+ * Fixed an issue where there were no validation for whether an option of a bundle product was created through the API
+ * Fixed an issue where bundle products created through using the API were not appearing in the frontend
+ * Fixed an issue where entity ID was missing for product thumbnail labels values
+ * Fixed an issue with the bad return from the Indexer launch() method
+ * Fixed an issue where an attempt to select product SKU in a shopping cart price rule redirected to the Dashboard
+ * Fixed an issue where the Search Terms Reports and Search Terms list did not work
+ * Fixed an issue where an error occurred when configuring Google API
+ * Fixed an issue where it was impossible to add a configurable product variation to an order in the backend
+ * Fixed an issue where there were no confirmation on deleting CMS pages/Blocks
+ * Fixed an issue with incorrect behavior of validation in the Quick Search field in the frontend
+ * Fixed an issue where it was impossible to select a row in the grid of CMS pages and CMS Blocks
+ * Fixed an issue where validation for minimum and maximum field value length was not performed for Customer attributes and Customer Address attributes when creating or editing a customer in the backend
+ * Fixed an issue with broken 'validate-digits-range' validation
+ * Fixed an issue where it was impossible to delete product templates
+ * Fixed an issue where products were not shown on a second website
+ * Fixed an issue where customer group was empty when adding group price during creating a product
+ * Fixed an issue with incorrect interval in LN for small values
+ * Fixed an issue where product attribute of the Price type was not displayed in layered navigation
+ * Fixed an issue with testCreateCustomer failing in parallel run
+ * Fixed an issue with the value of the 'Bill to Name' field always displayed instead of the value of the 'Ship to Name' in all order-related grids
+ * Fixed an issue where an error occurred when submitting an order int he backend when shipping and billing addresses were different
+ * Fixed an issue where the navigation menu was absent on product pages with Varnish used
+ * Fixed an issue where the underscore character was incorrectly handled when used with digits
+ * Fixed an issue where it was impossible to localize comments in the 'Max Emails Allowed to be Sent' and 'Email Text Length Limit' fields in the Wishlist configuration
+ * Fixed an issue where there were a logical error in joining the same table two times with different aliases
+* Sample data:
+ * Created Luma Sample Data script
+* GitHub requests:
+ * [#775](https://github.com/magento/magento2/issues/775) -- Can't save changes in configuration in Configuration->Advanced->System
+ * [#716](https://github.com/magento/magento2/issues/716) -- Wrong mimetype returned by getMimeType from Magento library
+ * [#681](https://github.com/magento/magento2/issues/681) -- Magento\Framework\Xml\Parser class issues
+ * [#758](https://github.com/magento/magento2/issues/758) -- Coding standards: arrays
+ * [#169](https://github.com/magento/magento2/issues/169) -- DDL cache should be tagged
+ * [#738](https://github.com/magento/magento2/issues/738) -- pub/setup missing in 0.1.0-alpha103
+* Various improvements:
+ * Removed obsolete code from the Tax and Weee modules
+ * Merged the AdminNotification, Integration, Authorization, and WebAPI SQL scripts
+ * Removed the Customer Converter model and Address Converter model
+ * Created AJAX Authentication Endpoint for the frontend
+ * Removed Customer\Service\V1 service implementation in favor of the Customer\Api service implementation
+ * Removed the Recurring Billing functionality
+ * Added the 'suggest' node to composer.json files to mark modules that are optional
+ * Consolidated SQL install and data scripts for the rest of the modules
+ * Added static test verifying that README.md file exist in modules
+ * Removed obsolete code
+ * Removed license notices in files
+ * Eliminated invalid dependencies of the CatalogRule module
+ * Removed @deprecated methods from the code base
+ * Added test enforcing @covers annotation refers to only existing classes and methods
+ * Added the PHP Coding Standards Fixer configuration file to the project root
+ * Added Git hook to automatically correct coding style before actual push
+ * Added the ability to enforce no error log messages during tests execution
+ * Removed API interfaces from the Cms module
+ * Updated jQuery used to version 1.11
+ * Added wildcard prefix for all search words in search requests for Match query
+ * Renamed frontend properties for some of the product attributes
+ * Fixed the Magento\Centinel\CreateOrderTest integration test
+ * Improved invoking for functional tests
+ * Refactored StoreManagerInterface to avoid violating the modularity principle
+ * Improved the logic in the isSubtotal method in Magento\Reports\Model\Resource\Report\Collection\AbstractCollection
+* Framework improvements:
+ * Added a copy of dependencies for Magento components to the root composer.json file
+* Setup Tool improvements:
+ * Moved dependencies from setup/composer.json to the root composer.json and removed the former one
+ * Removed dependencies on unnecessary ZF2 libraries
+ * Removed dependency on exec() calls
+ * Removed tool dev/shell/run_data_fixtures.php in favor of Setup Toolphp setup/index.php install-data
+ * Removed tool dev/shell/user_config_data.php in favor of Setup Tool php setup/index.php install-user-configuration
+ * Added validation of the required information on each installation step in the Setup tool:
+ * Web UI:
+ * Removed the 'Test Connection' button in web setup UI; checking connection to the database server is now performed when the 'Next' button is clicked
+ * Added validation of URL format
+ * Added automatic adding of the trailing slash to the base URL field if a user did not provide one
+ * Added validation of admin user password
+ * Added validation of HTTPS configuration
+ * CLI:
+ * Added validation of CLI to display missing/extra parameters and missing/unnecessary parameter values
+
+0.1.0-alpha107
+=============
+* Various improvements:
+ * Removed deprecated code from the Sales and SalesRule modules
+ * Stabilized functional tests for the following modules:
+ * Centinel
+ * Core
+ * RecurringPayment
+ * Sales
+ * Multishipping
+ * Newsletter
+ * Widget
+* Fixed bugs:
+ * Fixed an issued where a product could not be found in customer wishlist when searched by name
+ * Fixed the invalid email template for Product Price Alert
+ * Fixed an issue where customer group did not change when invalid VAT number was specified
+ * Fixed integration tests coverage
+ * Fixed an issue where a customer was not redirected to the configurable product page after clicking Add to Card on the My Wish list page for a product which required configuration
+ * Fixed an issue where an error message was displayed when a customer tried to use checkout using PayPal Express Checkout
+ * Fixed an issue where it was impossible to place an order using Authorize Direct Post
+ * Fixed an issue where the page cache in Varnish mode didn’t perform caching as required the cache
+ * Fixed an issue where it was impossible to specify layout container when creating or editing a widget
+ * Fixed an issue where a widget set to be displayed on certain type of product page was not displayed
+ * Fixed an issue where it was impossible to create a widget to be displayed in a sidebar
+ * Fixed an issue where a fatal error was thrown when trying to open a not existing page after disabling the 404 Not Found CMS page
+ * Fixed an issue where it was impossible to refresh CAPTCHA in the Admin panel
+ * Fixed an issue where two CAPTCHAs were displayed during guest Checkout
+ * Fixed an issued where clicking the Preview button on revision preview page did not open the Preview page
+ * Fixed an issue where the Magento\Framework\View\Element\AbstractBlockTest::testFormatTime failed randomly
+ * Fixed logic duplication and the conflicting implementation of the title API in admin
+ * Fixed an issue where JavaScript validation did not recognize the fields filled by automatic tests in the Create Customer form in the Admin panel
+ * Fixed an issue where a fatal error was thrown after mass update of the Stock Availability product attribute
+ * Fixed an issue where the Magento\SalesRule\Model\Resource\Report\CollectionTest::testPeriod CollectionTest::testPeriod integration test failed randomly
+ * Fixed issues with expandable frontend elements
+ * Fixed Blank & Luma themes UI bugs
+ * Fixed an issue where the Packages pop-up displayed incorrect information
+ * Fixed an issue where admin path became hidden when store address was too long
+ * Fixed the styling of variations without base image
+ * Fixed an issue where the Back link on a customer edit page led to the home page
+ * Fixed an issue where it was impossible to save system config from Advanced->System
+ * Fixed an issue where it was impossible to save a Return in the Admin panel
+ * Fixed a JavaScript issue where it was impossible to expand nested categories if responsive
+ * Fixed an issue where it was impossible to place an order using Authorize.net Direct Post in the Admin panel
+* Framework improvements:
+ * Declaration of components in composer.json
+ * Added compiler for single-tenant mode
+ * Both ZF1 and ZF2 libraries are declared as Composer dependencies as "1.12.9" and "2.3.1" respectively
+ * ZF1 library is represented by 'magento/zendframework1', which is based on original "1.12.9" version and includes fixes for compatibility with Magento 2 application
+* Layout improvements:
+ * Refactored layout building
+* Performance improvements:
+ * Load product/category instances via repositories
+ * Mobile and Desktop CSS styles stored in separate files
+* Service Contracts:
+ * Refactored the following modules to use new Customer service interfaces:
+ * Checkout
+ * Sales
+ * Multishipping
+ * GoogleShopping
+ * Persistent
+ * SalesRule
+ * Paypal
+ * Invitation
+ * Tax
+ * Newsletter
+ * Code review changes for Service Contracts for the CatalogInventory module
+ * Stabilized code after refactoring the Sales module to use new Customer service
+ * Stabilized code after refactoring the Checkout module to use new Customer service
+ * Deleted old CustomerAccount service tests
+ * Fixed base service object class to populate custom attributes correctly
+ * Fixed processing of array parameters in service interface for consolidated builder
+ * Fixed trace information for service exceptions in dev mode
+ * Implemented Bundle product API
+* Accessibility improvements:
+ * Heading2-Heading6 hierarchy of content structure
+* UI improvements:
+ * Style independent Error page in pub/errors styles
+ * Updated the content of certain default CMS Pages
+* GitHub requests:
+ * [#691](https://github.com/magento/magento2/issues/691) -- Readonly inputs and after element html in the backend
+ * [#694](https://github.com/magento/magento2/issues/694) -- missing git tags in repo
+
+0.1.0-alpha106
+=============
+* Various improvements:
+ * Refactored Service Layer of the Magento_Tax Module
+ * Stabilized functional tests for the Backend module
+ * Stabilized functional tests for the CatalogRule module
+ * Stabilized functional tests for the Checkout module
+ * Stabilized functional tests for the CurrencySymbol module
+ * Stabilized functional tests for the Shipping module
+ * Stabilized functional tests for the Tax module
+ * Stabilized functional tests for the User module
+* Added Readme.md files to the following modules:
+ * Magento\RequireJs
+ * Magento\Ui
+* Fixed bugs:
+ * Fixed an issue where product image assignment to a store view was not considered when displaying a product
+ * Fixed shipping address area blinking when billing address is filled during checkout with a virtual product
+ * Fixed an issue where filter_store.html was not found
+ * Fixed an issue where the customer account access menu did not expand on the storefront
+ * Fixed an issue where CMS blocks did not open when clicking from a grid
+ * Fixed an issue where the Create Product page was completely blocked after closing the New Attribute pop-up
+ * Fixed an issue where Stock Status was disabled for Bundle and Grouped products
+ * Fixed an issue where a product could not be saved without filling a not required bundle option
+ * Fixed broken "per page" selectors on the Customer's account pages
+ * Fixed the wrong behavior of JS loaders on the storefront pages
+ * Fixed Shopping cart price rule form validation
+ * Fixed an issue where the 'Please wait' spinner persisted when creating a customer custom attribute with existing code
+ * Fixed a Google Chrome specific issue where subcategories were not displayed correctly on the first hover for category item
+ * Fixed an issue where the 'Please wait' spinner did not disappear when creating customer with invalid email
+ * Fixed an issue where the Username field auto-focus on admin login page revealed password in case of fast typing
+ * Fixed an issue where Bundle Product original Price was not displayed in case of discount
+ * Fixed wrong discount calculation for bundle options
+ * Fixed an issue where wrong discount and total amounts were displayed on the order creation page when reordering an order with a bundle product in the Admin panel
+ * Fixed an issue where admin tax notifications did not appear/disappear unless cache was flushed or disabled
+ * Fixed an issue where catalog price and shopping cart price did not match when display currency was different from the base currency
+ * Fixed an issue where Tax classes did not allow 'None' as a valid 'product tax class'
+ * Fixed an issue where token-based authentication did not work if compilation was enabled
+ * Fixed the sample code in index.php illustrating multi websites set up
+ * Fixed commands in Setup CLI to match the ones displayed in help
+ * Fixed an issue where searching by a part of a product name in Advanced Search did not give correct results
+ * Fixed an issue where 404 page is displayed after Search Term mass deletion
+ * Fixed an issue where Popular Search Terms were not displayed on the storefront
+ * Fixed an issue where it was impossible to add Gift Message during one page checkout
+ * Fixed an issue where the optional Postal code setting did not work correctly
+ * Fixed an issue where product price details were missing in summary block in the shopping cart when the Back to shopping cart link was clicked on multishipping page
+ * Fixed an issue where the 404 error page was displayed instead of the Index Management page after saving mass update
+ * Fixed an issue where the "Out of Stock" message was not displayed for a bundle product when there was not enough of one of the associated products in stock
+ * Fixed an issue with the Newsletters Report page in the Admin panel
+ * Fixed an issue where Catalog price rule was not applying correct rates on specific products
+ * Fixed an issue where a fatal error was thrown after clicking a link to a downloadable product
+ * Fixed an issue a warning page for Grouped product with enabled MAP
+ * Fixed an issue where a configurable product was not displayed in catalog product grid after updating with "Add configurable attributes to the new set based on current"
+ * Fixed the inconsistent behavior in the integration tests for the Indexer functionality
+ * Fixed an issue where the What's this? information tip link was not presented on product page with configured Minimum Advertised Price (MAP)
+* Processed GitHub requests:
+ * [#742](https://github.com/magento/magento2/issues/742) -- Admin notifications count overflow
+ * [#720](https://github.com/magento/magento2/issues/720) -- https filedriver is not working
+ * [#686](https://github.com/magento/magento2/issues/686) -- Product save validation errors in the admin don't hide the overlay
+ * [#702](https://github.com/magento/magento2/issues/702) -- Base table or view not found
+ * [#652](https://github.com/magento/magento2/issues/652) -- Multishipping checkout not to change the Billing address js issue
+ * [#648](https://github.com/magento/magento2/issues/648) -- An equal (=) sign in the hash of the product page to break the tabs functionality
+* Service Contracts:
+ * Refactored usage of new API of the Customer module
+ * Implemented Service Contracts for the Sales module
+ * Refactored Service Contracts for the Catalog module
+ * Refactored Service Contracts for the Grouped module
+* UI Improvements:
+ * Implemented the Form component in Magento UI Library
+ * Removed extra JS loaders for category saving
+ * Improved the behavior of Categories management in the Admin panel
+ * Implemented the keyboard navigation through HTML elements
+ * Improved the HTML structure and UI of the Catalog Category Link, Catalog Product Link and CMS Static Block widgets
+ * Added UI Library documentation
+ * Fixed Blank & Luma themes UI bugs
+ * Fixed footer alignment
+ * Published the Luma theme and removed the Plushe theme
+* Framework Improvements:
+ * Added the ability to configure the list of loaded modules before installation
+ * Merged SQL and Data Upgrades
+ * Moved \Magento\TestFramework\Utility\Files to Magento Framework
+* Setup tool improvements:
+ * Removed duplication with Framework
+ * Deployment configuration is refactored from XML format in local.xml to associated array in config.php
+ * Improved performance
+* Search improvements:
+ * Integrated the Full Text Search library into the Layered Navigation functionality
+
+0.1.0-alpha105
+=============
+* Various improvements:
+ * Merged SQL and Data Upgrades for the Tax, Weee, Customer, CustomerImportExport, ProductAlert, Sendfriend and Wishlist modules
+ * Added 'Interface' suffix to all interface names
+ * Stabilized functional tests for the following modules:
+ * CheckoutAgreements
+ * Customer
+ * GiftMessage
+ * Integration
+ * Msrp
+ * Reports
+* Added the following functional tests:
+ * Create product attribute from product page
+* Fixed bugs:
+ * Fixed an issue where bundle product price doubled during backend order creation
+ * Fixed an issue where an error was thrown during Tax Rate creation, deletion and update
+ * Fixed an issue where FPT was doubled when creating a refund if two FPTs were applied, and as a result the refund could not be created
+ * Fixed an issue where the subtotal including tax field was not refreshed after removing downloadable product from cart
+ * Fixed an issue where a downloadable link tax was not added to a product price on the product page if price was displayed including tax
+ * Fixed an issue with incorrect product prices for bundle products in shopping cart
+ * Fixed an issue where bundle product price was calculated incorrectly on the product page
+ * Fixed an issue where configurable product options were not updated after changing currency
+ * Fixed an issue where a standalone simple product and the same product as part of the grouped, were not recognized as one product in the shopping cart.
+ * Fixed an issue where the incorrect tier pricing information was displayed in shopping cart
+ * Fixed an issue where no notice was displayed in the shopping cart for products with MAP enabled
+ * Fixed an issue where it was impossible to place an order from customer page in Admin
+ * Fixed an issue where it was impossible to add address for a customer in Admin
+ * Fixed an issue with broken redirect URL after deleting a product from the My Wishlist widget
+ * Fixed an issue where it was impossible to assign an admin user to a user role
+* Service Contracts:
+ * Implemented Service Contracts for the CatalogInventory Module
+* Framework Improvements:
+ * Added the ability to configure the list of loaded modules before installation
+ * Added the ability to use the Composer autoloader instead of the Magento custom autoloaders for tests
+ * Introduced a repository for storing a quote entity
+* Performance improvements:
+ * Split Magento\Customer\Helper\Data
+* Processed GitHub requests:
+ * [#731](https://github.com/magento/magento2/issues/731) -- Filter grid is absent on CMS Pages in Backend
+
+0.1.0-alpha104
+=============
+* Various improvements:
+ * Merge SQL and Data Upgrades for the Sales and SalesRule modules
+ * Add getDefaultBilling and getDefaultShipping to Customer Interface
+ * Stabilized the Bundle module
+ * Stabilized the CatalogSearch module
+ * Stabilized the Cms module
+ * Stabilized the SalesRule module
+* Performance improvements:
+ * Introduced CatalogRule indexers based on Mview
+ * Significantly decreased the amount of unused objects, mostly in category and product view scenarios:
+ * Got rid of non-shared indexer instances all over the code introducing Magento\Indexer\Model\IndexerRegistry
+ * Magento\Catalog\Pricing\Price\BasePrice being created on demand only, instead of unconditioned creation in constructor
+ * Created proxies for unused objects with big amount of dependencies
+ * Fixed \Magento\Review\Block\Product\Review block which injected backend block context by mistake
+ * A customer model in \Magento\Customer\Model\Layout\DepersonalizePlugin being created on demand only, instead of constructor
+ * Introduced caching for product attribute metadata loading procedure
+ * Improved SavePayment Checkout step to save only payment related data
+ * Speed up all Checkout steps of the One Page Checkout
+ * Updated the benchmark.jmx jmeter script in the performance toolkit
+* Fixed bugs:
+ * Fixed an issue where performance toolkit generator created Products/Categories without URL rewrites due to install area elimination
+ * Fixed an issue where the Custom Options fieldset on Product Information page was collapsible
+ * Fixed an issue where the Base URL was added to target path for Custom UrlRewrite
+ * Fixed an issue where an invalid Cross-sells amount was displayed in the Shopping Cart
+ * Fixed an issue where the Mage_Catalog_Model_Product_Type_AbstractTest::testBeforeSave integration test failed when Mage_Downloadable module was not available
+ * Fixed an issue where the custom URL rewrite redirected to sub-folder when Request Path contained slash
+ * Fixed an issue where it was impossible to place an order if registering during checkout
+ * Fixed an issue where there was no possibility to save default billing and shipping addresses for customer on the store front
+ * Fixed an issue where a widget of Catalog Category Link type was not displayed on the store front
+ * Fixed an issue where the Versions tab was absent on the CMS page with version control
+ * Fixed an issue where it was impossible to insert Widgets and Images to a CMS page
+* Added the following functional tests:
+ * Create widget
+ * Print order from guest on frontend
+* Framework Improvements:
+ * Removed duplicated logic from API Builders and Builder generators. Added support for populating builders from the objects, implementing data interface
+* Processed GitHub requests:
+ * [#674](https://github.com/magento/magento2/issues/674) -- Widgets in content pages
+
+0.1.0-alpha103
+=============
+* Fixed bugs:
+ * Fixed an issue where an error message was displayed after successful product mass actions
+ * Fixed an issue where it is impossible to create a tax rate for all states (“*” in the State field)
+ * Fixed an issue where FPT was not shown on the storefront if a customer state did not match the default state from configuration
+ * Fixed the benchmark scenario
+ * Fixed an issue where the expand arrow next to Advanced Settings tab label was not clickable
+ * Fixed an issue where the Category menu disappeared when resizing a browser window
+ * Fixed an issue where the order additional info was not available for a guest customer
+ * Fixed an issue where a fatal error was thrown when trying to get a coupon report with Shopping Cart Price Rule set to Specified
+ * Fixed an issue where the URL of an attribute set for attribute mapping changed after resetting filter for the grid on the Google Contents Attributes page
+ * Fixed the implementation of the wishlist RSS-feed
+ * Fixed the incorrect name escaping in wishlist RSS
+ * Fixed an issue where a RSS feed for shared wishlist was not accessible
+ * Fixed an issue caused by REST POST/PUT requests with empty body
+ * Fixed an issues where postal code was still mandatory for non-US addresses that do not use it, even if set to be optional
+ * Fixed an issue where it was impossible to find a wishlist by using Wishlist Search
+ * Fixed an issue where no password validation was requested during customer registration on the storefront
+* Updated setup tools:
+ * Added the install script in the CatalogInventory module
+ * Removed old installation: Web and CLI, the Magento_Install module, install theme, install configuration scope
+ * Added usage of the new setup installation in all tests
+ * Added the ability to insert custom directory paths in the setup tools
+ * Added the uninstall tool: php -f setup/index.php uninstall
+ * Removed dependency on intl PHP extension until translations are re-introduced in the setup tool
+ * Made notification about unnecessarily writable directories after installation more specific
+* UI improvements:
+ * Improved UI for the Order by SKU, Invitation and Recurring Payments pages
+ * Implemented usage of Microdata and Schema vocabulary for product content
+ * Implemented UI for Catalog New Products List, Recently Compared Products, Recently Viewed Products widgets
+ * Implemented a new focus indicator
+ * Implemented the <label> element for form inputs
+ * Put in order the usage of the <fieldset> and <legend> tags
+ * Implemented the ability to skip to main content
+* Added the following functional tests:
+ * Add products to order from recently viewed products section
+ * Update configurable product
+* Various improvements:
+ * Stabilize URL rewrite module
+ * Moved getAdditional request into the basic one in OnePageCheckout
+ * Created a cron job in the Customer module for cleaning the customer_visitor table
+* Framework improvements:
+ * Refactored data builders auto-generation
+ * Implemented the Customer module interfaces
+ * Ported existing integration tests from Customer services
+ * Removed quote saving on GET requests (checkout/cart, checkout/onepage)
+
+0.1.0-alpha102
+=============
+* Fixed bugs:
+ * Fixed an issue where the categories tree was not displayed when adding a new category during product creation
+ * Fixed an issue where the Template field on the New Email Template page was labeled as required
+ * Fixed minor UI issues in Multiple Addresses Checkout for a desktop
+ * Fixed minor UI issues with Widgets on the storefront
+ * Fixed minor UI issues with pages printing view on the storefront
+ * Fixed minor UI issues in items Gift message on the Order View frontend page
+ * Fixed an issue in the Admin panel where no message was displayed after adding a product to cart with quantity exceeding the available quantity)
+* Framework improvements:
+ * To enhance the readability of tables for screen readers, added the
Your message was submitted and will be responded as soon as possible. Thank you for reporting.
+
+
+showSendForm): ?>
+
+
+ We are currently experiencing some technical issues. We apologize for the inconvenience and will contact you shortly to resolve the issue. To help us serve you please fill in the form below.
+
+
+ showErrorMsg): ?>
+
+
+ Please fill all required fields with valid information
+
+
+
+
+reportAction): ?>
+
Exception printing is disabled by default for security reasons.