Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Magento 1.9.2.0 is out #609

Closed
joeyhoer opened this issue Jul 7, 2015 · 4 comments
Closed

Magento 1.9.2.0 is out #609

joeyhoer opened this issue Jul 7, 2015 · 4 comments
Assignees

Comments

@joeyhoer
Copy link

joeyhoer commented Jul 7, 2015

Magento CE 1.9.2.0 has been released, and should be added to the installer, though it does not appear that the usual URL scheme is working any longer (for the 1.9.2.0 release).

http://www.magentocommerce.com/downloads/assets/1.9.2.0/magento-1.9.2.0.tar.gz results in a 404 error.

@ktomk
Copy link
Collaborator

ktomk commented Jul 7, 2015

Thanks for reporting, and yes, right now Magento is only providing downloads protected by cookie which is provided after login. From here: https://www.magentocommerce.com/download

Until there is a public download URL, please see Add own magento repositories.

Hopefuly this changes soon.

The currently given file behind Cookie-Login is:

  • File: magento-1.9.2.0.tar-2015-07-07-08-55-45.gz
  • MD5: b9610a2e0982dd4e5a5edc118a05b9af
  • SHA1: 5a1a7ea0bdaaa8e14cd96fc8158a3227b631d45d

@tkn98
Copy link
Collaborator

tkn98 commented Jul 16, 2015

The currently given file behind Cookie-Login is:

File: magento-1.9.2.0.tar-2015-07-08-02-50-14.gz
MD5: 19435a588ddd5d4999761223648644e6
SHA1: 5e15742b4d995d3cbfbaee7caa95e45dc954f2c8

So we see unversioned revisions.

@davidalger
Copy link

@tkn98 My first thought was, I wonder if the updated 6285 patch had anything to do with it, but it doesn't appear to be the case. First thing we do after a new release drops is stash it in our internal releases location, renaming the file to match an internal pattern for all releases. So I've got both copies to compare with each other.

The hashes below match the two different hashes you got, followed by a diff --stat which shows where the changes are. Running an actual diff shows they are formatting and copyright header fixes!

dalger:01:48 PM:~$ md5sum /Users/dalger/Dropbox\ \(Classy\ Llama\)/CLS_Dev/releases/community-1.9.2.0.tgz
b9610a2e0982dd4e5a5edc118a05b9af  /Users/dalger/Dropbox (Classy Llama)/CLS_Dev/releases/community-1.9.2.0.tgz
dalger:01:48 PM:~$ md5sum /Users/dalger/Downloads/magento-1.9.2.0.tar-2015-07-08-02-50-14.gz
19435a588ddd5d4999761223648644e6  /Users/dalger/Downloads/magento-1.9.2.0.tar-2015-07-08-02-50-14.gz
dalger:01:48 PM:~$ mkdir 1.9.2.0.a 1.9.2.0.b
dalger:01:49 PM:~$ tar -xzf /Users/dalger/Dropbox\ \(Classy\ Llama\)/CLS_Dev/releases/community-1.9.2.0.tgz --strip-components 1 -C 1.9.2.0.a
dalger:01:49 PM:~$ tar -xzf /Users/dalger/Downloads/magento-1.9.2.0.tar-2015-07-08-02-50-14.gz --strip-components 1 -C 1.9.2.0.b
dalger:01:49 PM:~$ git diff --stat 1.9.2.0.a 1.9.2.0.b
 .../skin/frontend/rwd/default/css/styles.css       |    1 -
 .../elevatezoom/jquery.elevateZoom-3.0.8.min.js    |   26 +-
 .../js/lib/elevatezoom/jquery.elevatezoom.js       | 3190 ++++++++++----------
 .../skin/frontend/rwd/default/js/lib/enquire.js    |   26 +-
 .../skin/frontend/rwd/default/js/lib/fastclick.js  |   26 +-
 .../frontend/rwd/default/js/lib/imagesloaded.js    |   26 +-
 .../rwd/default/js/lib/jquery.cycle2.min.js        |   26 +-
 .../rwd/default/js/lib/jquery.cycle2.swipe.min.js  |   26 +-
 .../rwd/default/js/lib/matchMedia.addListener.js   |   24 -
 .../skin/frontend/rwd/default/js/lib/matchMedia.js |   24 -
 .../rwd/default/js/lib/modernizr.custom.min.js     |   26 +-
 .../frontend/rwd/default/js/lib/selectivizr.js     |   26 +-
 .../Interface_Frontend_Rwd_Default-1.9.2.0.xml     |    6 +-
 13 files changed, 1594 insertions(+), 1859 deletions(-)
dalger:01:49 PM:~$ 

So it essentially got released with the Magento doc block at the top of some js files and indentation that wasn't up to snuff, and then got silently repackaged and uploaded to the downloads server. Crazy.

I wonder if @benmarks might like to chime in here…

tkn98 added a commit to tkn98/n98-magerun that referenced this issue Jul 21, 2015
Closes netz98#609

$ ls --full-time -Gg 1.9.2.0.tar.gz
-rw-r--r-- 1 24256895 2015-07-21 13:27:10.283278676 +0200 1.9.2.0.tar.gz

$ shasum 1.9.2.0.tar.gz
da66104d800e815ec996fef31170671fbb8a7bca  1.9.2.0.tar.gz
tkn98 added a commit to tkn98/n98-magerun that referenced this issue Jul 21, 2015
added package from github mirror as Magento does not provide any download
URI so far.

Intregrated with travis.

Thanks @arosenhagen for the initiative!

Closes netz98#609
Closes netz98#612
Closes netz98#614

$ ls --full-time -Gg 1.9.2.0.tar.gz
-rw-r--r-- 1 24256895 2015-07-21 13:27:10.283278676 +0200 1.9.2.0.tar.gz

$ shasum 1.9.2.0.tar.gz
da66104d800e815ec996fef31170671fbb8a7bca  1.9.2.0.tar.gz
tkn98 pushed a commit to tkn98/n98-magerun that referenced this issue Jul 22, 2015
added package from github mirror as Magento does not provide any download
URI so far.

Intregrated with travis.

Thanks @arosenhagen for the initiative!

Closes netz98#609
Closes netz98#612
Closes netz98#614

XXXXXXXXXXXXXXXX

switching to ZIP - 1.9.2.0.zip

XXXXXXXXXXXXXXXX

$ ls --full-time -Gg 1.9.2.0.tar.gz
-rw-r--r-- 1 24256895 2015-07-21 13:27:10.283278676 +0200 1.9.2.0.tar.gz

$ shasum 1.9.2.0.tar.gz
da66104d800e815ec996fef31170671fbb8a7bca  1.9.2.0.tar.gz
@ktomk
Copy link
Collaborator

ktomk commented Jul 23, 2015

@LeeSaferite: Could you for what you comitted as 1.9.2.0 into OpenMage (OpenMage/magento-mirror@cb52550) say which of the (at least two) Magento 1.9.2.0 versions you did commit? Would be good to know (and perhaps if you update it, it might also solve a problem we had in #614). Would be great to know/see.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants