Replies: 4 comments 22 replies
-
I tested to I also don't understand this new file After I checked (only) Not sure why. |
Beta Was this translation helpful? Give feedback.
-
Today I tested We are almost there! |
Beta Was this translation helpful? Give feedback.
-
I found the following incompatible change in Before we can: Before we can: |
Beta Was this translation helpful? Give feedback.
-
There are also two new bugs: With #2902, each time I save a category without any changes, I have: I fixed with (but not sure if it's good or not): --- a/web/lib/Varien/File/Uploader.php
+++ b/web/lib/Varien/File/Uploader.php
@@ -161,10 +161,10 @@ class Varien_File_Uploader
$this->_setUploadFileId($fileId);
if (empty($this->_file['tmp_name']) || !file_exists($this->_file['tmp_name'])) {
$errorCode = $this->_file['error'] ?? 0;
+ $code = empty($this->_file['tmp_name']) ? self::TMP_NAME_EMPTY : 0;
if ($errorCode && isset(self::UPLOAD_ERRORS[$errorCode])) {
- throw new Exception(self::UPLOAD_ERRORS[$errorCode]);
+ throw new Exception(self::UPLOAD_ERRORS[$errorCode], $code);
}
- $code = empty($this->_file['tmp_name']) ? self::TMP_NAME_EMPTY : 0;
throw new Exception('File was not uploaded.', $code);
} else {
$this->_fileExists = true; With #2939, I have tons of: I removed the |
Beta Was this translation helpful? Give feedback.
-
Highlights
This is a big release, that's why we decided to move away from the 19.4.x versioning and go to 19.5.x. Since a lot of changes could have some impact on current installations we decided to release some "rc" versions before the official 19.5.0. Tests are more than welcome now but be extra careful with production environment.
What's most important is the removal of all the 3rd party libraries (phpseclib, mcrypt_compat, Cm_RedisSession, Cm_Cache_Backend_Redis and Pelago_Emogrifier and Zend Framework) form our repository, they are now imported via composer. This was an important step to clean up and modernise our code.
Also the M1 legacy themes have been moved to an external repository since it's old (and mostly unused) code.
Don't worry though, if you've always installed OpenMage extracting the zip file, starting from this release you'll find a new zip file attached to the release itself, we build this zip adding all of the old 3rd party libraries so that you will not have to migrate to composer or use composer at all.
Changelog
New Contributors
Full Changelog: v19.4.20...v19.5.0-rc1
This discussion was created from the release v19.5.0-rc1.
Beta Was this translation helpful? Give feedback.
All reactions