Skip to content

Instantly share code, notes, and snippets.

@Flyingmana
Last active December 14, 2017 08:56
Show Gist options
  • Save Flyingmana/7074e8c3d89b8ccab1c7371ab4c0d9e9 to your computer and use it in GitHub Desktop.
Save Flyingmana/7074e8c3d89b8ccab1c7371ab4c0d9e9 to your computer and use it in GitHub Desktop.
git lts git-log comparison
git log --no-merges --topo-order --pretty=oneline
# explaination:
--no-merges
Do not print commits with more than one parent. This is exactly the same as --max-parents=1.
--topo-order
Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed.
For example, in a commit history like this:
---1----2----4----7
\ \
3----5----6----8---
where the numbers denote the order of commit timestamps, git rev-list and friends with --date-order show the commits in the timestamp order: 8 7
6 5 4 3 2 1.
With --topo-order, they would show 8 6 5 3 7 4 2 1 (or 8 7 4 2 6 5 3 1); some older commits are shown before newer ones in order to avoid showing
the commits from two parallel development track mixed together.
30e28fca157a87ca948db00505dacba43febf1e0 [bug-#402] Duplicate array entries in various core files
36e50b6909b68ecbb32e109005c426e252a1b2e7 [impr-#391] Fix wrong comment in /media/.htaccess
87de3cb7aabdb70b0c713a83c1f93c76aecf7673 [impr-#404] Empty php instructions in various core files
4f5fbdcb143431f2997eb662119c5f3562ee0a02 [bug-] Remove stray additional.product.info block in checkout.xml
f5844d8343b9f141f2b45b175930ae8db18d659d [impr-#369] Make Mage registry related methods consistent
163483a62cd26d3d53c05f923702688aa27bec48 [impr-#353] Remove some left over doc/test files
5e2f00bbd8758632bd2393dbf63213dbc7583549 [bug-#346] Typo in Mage_HTTP_Client_Curl::curlOptions()
5bc7100e50737bd9a9e5f0b1deeaa3b55eb2f6b5 [bug-#345] Mage_Core_Helper_Data::removeAccents() not working for german umlauts
21d189dc19ff10c5339fdb5d58c263ae520a76bf [impr-#339] Fix PHP lint errors
06ec43936249902fbe456a84e9edb2e60de6c34f [bug-#331] Only set session path on POST in Mage_Adminhtml_Cms_Wysiwyg_ImagesController
e7840581f47ed33885158835ca1a5762c2fe68dd [bug-#326] Customers missing from reports
4c7ef26e68d02a30a4bfc301a6055adddd0923be [bug-#323] Concatenated param for getSelect()->order() is missing a space
a93f2aa9ff48da6f801b9ff4ff36b2a89bf604ef [bug-#322] Checkout options config hidden in storeview scope
575a371e78fa7dd78b4cb76bbfd15766479020d1 [impr-#321] Links should be removable via layout.xml for sales order and account edit page
9599b2c0ea63d83f80347ca631a8e2b5465867e4 [impr-#319] Dispatch a checkout_cart_product_add_before event
220fbc902afe84643c8ea4ac80eed85c147b3818 [bug-#318] Undefined var $shipment when creating shipping labels via admin panel
112e788b31a9dbb522199c2fe369a09858fa77c9 [bug-#317] <depends> for multiselect fields not working correctly in admin panel
6f400c458ab747827b07c785f0203ed21119b971 [bug-#303] Slow queries with MySQL 5.7 in Mage_Catalog_Helper_Category_Url_Rewrite
533647e05ae5723341fd02b513350605d831eb2e [bug-#302] CURLOPT_SSLVERSION is hard-coded in Mage_HTTP_Client_Curl
02625ae6ac973c0b6303091ea802db09365ced03 [impr-#300] Set sane default session_cookie_lifetime (3 hours)
e954dc3af74480c3e009114c7086cde3dfafbf94 [bug-#297] Only set email_sent if customer was actually notified
a76e9e7cfab202092100e90adb55322dd04dd1c8 [bug-#293] Typo in Mage_Catalog_CategoryController
588077979fd78044023221b9bb63135870c7c8ed [bug-#290] Wrong args passed to Mage_Adminhtml_Block_Promo_Widget_Chooser_Sku::addAttributeToSelect()
b6994ce87c9bd1cf63d26b9b95dd2788ca340420 [bug-#289] Typos in Mage_Adminhtml.csv
17f6e5920b100c910d1858d56e6ab585540c3d83 [bug-#287] WBMP image type has wrong 'create' mapping in Varien_Image_Adapter_Gd2
d9710fcfc9fd8d236431f8dbdba43fdfa7d3c7f7 [bug-#282] Persistent customer login template is used even if disabled
4595a080d9b410b6143deaae7542c65655108eec [bug-#275] Creditmemo qty calculation error in Mage_CatalogInventory_Model_Observer
b85f0361fd00259d071a4546dae1e76b7a0a5152 [impr-#266] Add fr_CR to whitelist in Mage_Core_Model_Locale_Config
58688532c2bc2bc06b71cf1bf0241ae7ed8a2c7c [bug-#263] Defaults for is_active attribute are ignored in Mage_Catalog_Model_Resource_Url
7328672ffbff4352d7309b258ba52325d8411835 [bug-#262] Infinite recursion loop in Mage_SalesRule_Model_Rule_Condition_Product_Subselect
efc0b51653b4e415634494e4cb00d671c65a0b60 [impr-#254] Unreachable js in product.js and configurable.js
8dbf1240c67e96a71871568c9a9b0de0d5afc0ed [bug-#242] Wrong parenthesis order in customer account downloadable list template
e946f213c2b5e257104cb2d917e9107dd2df8276 [bug-#193] Fix switching between customer addresses in the admin panel
fe4688e0e31880ed83859c4ead2d9f265a2134b9 [bug-#240] Missing answer delete button when creating a new poll
0a2988349190eaca60622e929fff0e19c689d846 [impr-#187] Ensure all db transactions are either committed or rolled back
688e825e2f0f5f4578bb5ca9998531aae7cc79f3 [impr-#188] Unnecessary table metadata locks when reindexing
d0f1fc78ea10223f48f1c4f4243f438fe529180a [bug-#192] Console redirection in cron.php is quoted
d33b007e4ba45252a9459921db4194d582746a90 [bug-#183] Configured default value for serialized_array backend_model is ignored
7efec4437f75ba922ec7ad4c83a0bc30fbd5fc21 [bug-#169] Corrupted merged css file when using css data URIs
bdba1245858317f18b4cdc7c2d601220c6720ddc [impr-#165] Add filename to log msg when a template file isn't valid
6efae1e19705080808091d5188b44015e0441a54 [bug-#163] Missing table prefix in Mage_Customer_Model_Observer::deleteCustomerFlowPassword()
b882da2ccd0a2cc429b181b4614568b9568a33cc [bug-#161] Product collection is missing image attribute when flat tables are enabled
53735086f9e6167114ae8df96e0bba35d6e8d1dd [bug-#160] Mage_Catalog_Helper_Product::getThumbnailUrl() is not implemented
37370f7303a551da6183b6fa9a49b467ab3da9bc [bug-#151] Incorrect padding for .grid-severity-notice css class
e9ad63fae53d27150c1d7cd8a8f8c1d1ed7150b0 [impr-#148] Dispatch a sitemap_cms_pages_generating_before event
3608071b955dc5ea2be2ec6e38efa7825b91e95a [impr-#127] Improvements to file storage
de32a6fa6d2a97df557d64d51331c477344363a0 [bug-#2] Possible NPE with breadcrumbs in Mage_Cms_Block_Page::_prepareLayout()
4c03a46880e3e0c0d634d4edd6a41a792fc59e9b [bug-#118] Wrong shipping street and vat labels in checkout onepage templates
67ae7abd24721869bc9606cfdb08112c833f5b7e [impr-#104] Improve layout cache efficiency by de-duplicating XML strings
b3c2089085e72a5900b068f970dd916637c7acc5 [impr-#103] Significant deadlock potential in cataloginventory/stock resource model
dd6726eb6d3ae703925bd5925476984edc879867 [impr-#101] Only use base url for homepage in generated sitemap.xml
02331b58ce232025ecb246df01a21deaf414f2fb [impr-#97] Set default qty of 1 when creating new orders manually
d71af32a2a5e2e9ae7d6e5a3d7cb64333cb4e3e7 [bug-#94] Duplicate double quotes in sales email templates
1d8bcf89d0896494fb31084bbc2417881c55f07e [bug-#91] Some Magento models use getOptionArray() instead of toOptionArray()
8f710f85db83cab174c167c501cc4086daf4841b [impr-#86] Reduce filesize of generated order PDFs
0f13f4b61cfe502d7daae669e4a9d3c961c27862 [bug-#85] Varien_Io_File::is_readable() should surpress errors
2c995c35e8f8e54a8023e26209d8a69b9aa5da29 [bug-#84] Wrong tax subtotal calculation order in Mage_Tax config.xml
cc46ff04bf2506da0a60ada48fed9e92cd7af0f5 [impr-#83] Mage_Core_Helper_Data::jsonDecode() isn't PHP7 compatible
fa0a96bee619f5a3dc1ea9b9cd8e704d43d9f969 [bug-#81] Typo "getShippigAddressId" in Mage_Sales_Model_Order::_afterSave()
848c3e10e4e38fe32c8b708924d3415ae0a335ef [bug-#78] Typo "referense" in layout catalog.xml
d2340a05cb88b41387eebfe0a738c4a8a7dc72cf [bug-#76] Varien_Image_Adapter_Abstract::backgroundColor() doesn't behave as a getter/setter
8c5deb32a16f5f89e1c8ec1a3992a88722a06898 [bug-#74] Duplicate jobs showing up in the scheduled cron status
5d41a6bfd4ff8f4a1cd49ec6d7f5d07fbb48d749 [bug-#64] Can't re-send customer order mail via backend
e705ae8e28b9ebe28620e2f4895ee4c867c93dc2 [impr-#62] Add PHP 7 support
26a62f592ac04fec2c4e175580332ddbe8a05bac [impr-#61] Fix memory leaks during image upload
f3b83aef62f410f78b02a17e57cfa2bcd0c4eda9 [bug-#48] Borked isSalable check in Mage_Sales_Model_Order::_canReorder()
fed9ad76f2e2a0f21fca3284650abfdc55a2b994 [bug-#47] opcheckout.js should iterate over elements, not functions
ca796080e620999e69d7dfe9e56768248634225e [bug-#46] Escaped single quotes in Magento translation files
dc12341b61052bd1b2083ca9341d06d5285b1914 [impr-#45] Do not clear product cache when saving a new product
d65386502af51f073ea12953f979453ceaed3d4b [bug-#41] Only customers with a middleName are included in abandoned cart report
195baeb2dd11bd3d5d94b2c9cde5fe1b752288f8 [impr-#18] Properly stop profiler in Mage_Core_Model_Layout_Update
02b9d48ba58710b677b549aa81e0356bdbcace39 [impr-#17] Add filename to log msg when a template file doesn't exist
134dc81d3d2ffb32f33aa279adceeb1370412339 [bug-#14] Typo and missing functions in Mage_Page_Block_Template_Links_Block
677d1d8005e16d5ec1d8b708ebfe2cfad830a951 [impr-#8] Fix docstring annotation of Mage_Core_Helper_Js::getScript()
73197f5a2181c7122448aaea1d56a0e04dda1c61 Create .travis-ci.yml adding PHP lint
9060e5cee8faaa1a90470c781ece117a41080f66 Update README.md regarding versioning strategy. Refs #273 (#333)
3630350fdbfd0890594e4455d4fe0a751040dc8e Minor grammar fix in README.md (#270)
fdf916c46e568a5cb211cf109eb4918f5bf008b0 Add Flyingmana to maintainer list
cdca1d13422b46eea0a72b11d7bcecdb1d804a9d Add details about PHP7 support to README.md
453ba8f27f0ff03e7b001a3f0365a59eda4a99e3 Display composer example as JSON in README.md
8b0a7169ec23d1a7016d76d78b7fc41162abaa58 Add README.md and composer.json
b4ae4143ed42f66d7e6cd19ae5cd9772bc9293b4 Import upstream Magento 1.9.3.7
f3f125c953a4ab6688ab24d376f3c7b28d594908 There is exists no Mage_Core_Model_Exception
57738e6e10ddb66f4ba60eccf15bcdca04330b19 Exception has already been caught
98f2f171e4b14e904d430d4a902205a0f443f402 Duplicate case expression (#395)
cf8f84ad2f3094d5c2a1528c30411767e58dafc4 Add quotes to numeric incrementIds - The Sequel (#388)
84726eef841b7c92022c8e0c9780793b40a76254 Remove assignments where the left and the right parts of assignment are equal (#399)
d87d65401665f8f5cd4fce882dcb0a689de89e86 Fix wrong argument name in downloaders Mage_HTTP_Client_Curl->curlOptions
47cfea4525c4d0bba47601ce055dc56a78a3da63 Remove duplicated array keys (#402)
1ac08b73d6f617ade57c90e0e8d2ed5e3d00fafa Fixe wrong comment in /media/.htaccess (#391)
94a0e92997ab4297419d80f8dc1398d5ee12ede8 Remove duplicated semicolons (#404)
ca25bb54f222dc7f435eba184f3fe6634226a996 Delete .mysql4-upgrade-0.1.9-0.1.10.php.3hidjY
cb7e15e920247671a04c38fbd0b5447c6f825f80 Merge pull request #393 from spinsch/patch-3
1172d58d812d5320b7146d4dfb583b6f3c5ba5aa patch - SUPEE-10415 / 1.9.3.7
9400a1c24a814703e606d9d2af20ad565b62021f Merge pull request #266 from spinsch/patch-1
9a74a4a3a851c501430a25ef925944808360878c add element to new line
00ffa8c5b1c8e16d6f91fec7fe0065713456f7e5 position changed in array
b07d012066790d4c52281eb5ba9b1403f0bbc537 fix localisation whitelist for swiss french
c760e367a06188e63d42f6f50738d5dbf5b21eaf Remove stray block element in checkout.xml
5d9d2586d73e9b1ec8d8358668c0bb540e5a54f9 Merge remote-tracking branch 'origin/1.9.3.1' into 1.9.3.x
3ace6c75b1036fbc4eb33420573d2e1857c5dd2d Merge pull request #160 from sreichel/hotfix/catalog/helper/product/getThumbnailUrl
7acd9ebfe1010974e4f62066daac1b5db6a78dc4 Added missing functionality for getThumbnailUrl
3a6197c7fda00c3edafea0da540dd13dff66ff56 Merge pull request #371 from sreichel/hotfix/typo/form-js
26cca248bdeb05232663f3021106d14335a716cb Added missing comma, see #317, fixes #370
1eaada92863d70274033ef6fd9a998a0bac941eb Merge pull request #317 from sreichel/hotfix/systemconfig/multiselect-dependencies
f7fb37d2c39fd7762fcc88807bc0f2298fd8bd8a Fixes system config dependencies for multiselect fields
a2024ca14168d27b6a8c6fcc88f5fab55936238f Merge pull request #345 from sreichel/hotfix/core/helper/data/removeAccents-german
3de86930c174f0a88d499ba65637118d244d99ac Fixed removeAccents method for german umlauts
719f5bb7047afbc17df95024068ebedbba9280dd Merge pull request #262 from edannenberg/fix/cart_rule_subselect
17babc777032d73b71b886b3db39e59d9926c184 Add SUPEE-4814
4329c356ce237d75271acf3872932b788f8a0a90 Merge pull request #331 from empiricompany/patch-2
52eeb3a46144c7f1fff997367711fdc46422856a cloudflare reset current path in file manager
79a7e1fd2be3526ba46ad65178378d605ef2a3bf Merge pull request #353 from sreichel/remove-old-files
58390284de8b9a557b9d798b875f125e5aa8b7d8 Removed obsolete files, fixes #352
df58d9908e329a295efa752179ed1a262ff043a2 Merge pull request #321 from sreichel/feature/remove-customer-edit-account-links
9f1aaabcac762a95519eb75dc52adf4a90a8faa9 Add possibility to remove link at sales order and account edit page
737d4557292b7a24a79f6b7efed7b1f7a90d3e20 Merge pull request #297 from infabo/feature/email-notifications
8c0c067fc2ab1d47ba5077cb026a7cb317a31690 [FIX] set email as sent only if customer notified
48cc8a585845aef3bc8cc5ad53fe068084db1756 Merge pull request #300 from colinmollenhour/colinmollenhour-patch-1
4e7eab322b5325dfa2dc7e88aeb58598aa06cab3 Set sane default session_cookie_lifetime (3 hours)
53b8fe94d5275c9486daadeb14bb510bc25dc437 Merge pull request #275 from JonLaliberte/fix-bundle-creditmemo-calc
4347c5894439dbc3bdfbfdb5fe842e8116ba4335 This bug was present begining in 1.7.0.2 and is still present in 1.9.3.3. This patch has been running in production for about 4 years without any issues.
a73d2163dca6c506d3feaed74295a72c667305da Merge pull request #302 from empiricompany/patch-1
e1d82b21d6650295fd539a09cc4553328bed0219 fix ssl version
4316cd47846b062ae03e3f25d1eb274f4cbd2599 Merge pull request #369 from OpenMage/issues/367_inconsistent_registry_behavior
d3801ade0b7087b99d7ecc652c44d896efcc45d5 Fix bug with missing close parenthesis
70c9cfc84afeffb2839d499b6b499bfe59c709b2 Make Mage registry related methods consistent
f6330173e699170c85fee28ac29298888334ef2c Merge pull request #303 from macopedia/rewrite_category
92ba41c620154ab5b617554f10cab29d593c5ee5 Fix slow url_rewrite query on MySQL 5.7
8f7d5fcce2ae781521bef940a0d1c6150ffd6810 Merge pull request #344 from OpenMage/import-1.9.3.6
f7313ee3777052801004d20ca7d270f1fe622c45 Remove rej file
2f07878ae62c1945106a86889a83c8b448d9dd25 Merge pull request #346 from sreichel/hotfix/typo/curlOptions
cfc04835be747a2ba85bc660f77c73533ae92cf5 Fixed typo in Mage_HTTP_Client_Curl, fixes #281
2331d449e86b6f1d2d48d1ad8bc12070768cbc0a Merge pull request #343 from OpenMage/import-1.9.3.6
0eabf7496c4ac7cb1935534f710ce7ba7e7dcbfb Update patch list
40720cab87d614a57b1396800936fa86c6dc098b Import Magento Release 1.9.3.6
5dde5ee0fc26c3aafe47a9aa950ae23fbdcdfaa6 Merge pull request #339 from OpenMage/php-lint-test
92ce7271aeb20f6ca96cf28568b7b83c4ef78e82 Speed up lint by excluding lib/Zend
eb9f5209b6b89c84f647743ce2119cdcb987bc2b Fix errors found via PHP lint.
7aedb6ef2cd603e0b7295c8025917e9c54ec0b09 Actually fix PHP lint path pruning.
895c2a5ec68af8180fbbcce744c33e015287f66b Fix PHP lint path pruning.
c9f5e824ced51c885635ef75560eeb575119a102 Exclude lib/PEAR and lib/phpseclib from PHP Lint test.
7b83c28d4ea5ed055e731c06f04136e02fedef0f Allow PHP 7.2 to fail for now.
5ae07ec2bfd7280e6d1afc9fd150d12da801e993 Merge pull request #338 from OpenMage/colinmollenhour-php-lint
ba0b0c39962cfabf015d8ae90bd973c70d18d3f6 Create .travis-ci.yml adding PHP lint
b3cf05f72f56320dad6cdb95fc0a79d474674702 Update README.md regarding versioning strategy. Refs #273 (#333)
515eee73230709c05cc6e98968d1f4e1c10444ca Merge pull request #335 from sreichel/feature/events/checkout_cart_product_add_before
72488e9904bdbbd17b60d551d6b9f3fe9cd19fcb Fixed typo, fixes #334
0adfff595485d744e0b02803ddc6e056ea68a588 Merge pull request #319 from sreichel/feature/events/checkout_cart_product_add_before
8c3ba4eee1497cbf781f9f22e930d0fad1f474f1 Adds product add to cart event
71d5e6067a404f64c22bb4364ec32d12afecb00a Merge pull request #322 from sreichel/hotfix/hiddem-checkout-config
cb3e8f0aeaf55c4b2b7a1f9a35ead9fb399aba75 Fixes hidden checkout config, fixes #259
eb471e10c5bcca7deb2209c7b0f20826e33da4e6 Merge pull request #323 from sreichel/hotfix/wrong-select-order-parameter
27d97d6e8153653e7ee6478a2a2420ac6378e653 Fixes wrong usage of getSelect()->order() method
27ffd63bddae9c891f003db7efef8dbc3e9fe797 Merge pull request #326 from OpenMage/colinmollenhour-patch-1
44550a9da4f66d14bd2ad389fe55c2ad393f2ac7 Use joinLeft instead of joinInner to fix customers missing from reports.
1a9ba42f2b30cb386997bcf76dfa66214ed4b58d Merge pull request #318 from sreichel/hotfix/sales/order/shippmentcontroller/create-labels
50dc517e5367f2ebdb210b0f24bed53e9d494aac Fixed undefined variable when creating shipping labels
3e457ed301b610c2684eefc257af621570167c24 Merge pull request #301 from Flyingmana/release-merge-1.9.3.4
d6d8b9372d6b71b3d6f3f95fa4a5084d1640f542 Merge branch 'magento-1.9' of github.com:OpenMage/magento-mirror into release-merge-1.9.3.4
ecd87b9e7f0a25c922702895a625f3b0092a87a3 Merge pull request #50 from borriglione/magento-1.9
2725b76d72df0939026ddca8b11f97cbe5be5c6c Import Magento Release 1.9.3.4
4ce6a61923606704a1dd1176642d61a0301ae138 Merge pull request #276 from Flyingmana/release-merge-1.9.3.3
6fa6810c05ef87bd6e12ae304cb07c83d3b6ccb7 remove leftover 1.9.3.2 package files
3f3338dd706bc1e5de97af7f975b64ffeebcae3f Merge branch 'magento-1.9' (1.9.3.3) of github.com:OpenMage/magento-mirror into 1.9.3.x
7185e6fd88e656df815184f8120c2379706cfc54 Merge pull request #49 from tjons/magento-1.9
6f7586f02cd94b0ae95780c845aca4c74d24f53e Import Magento Release 1.9.3.3
505e8e982ad5f4fd22005060564cad210aab7b6f Merge pull request #45 from OpenMage/pr/magento-1.9.3.2
292a9948449c22981e33b5f672cfaeba3e703fa6 Import Magento Release 1.9.3.2
503792169a7caefc3ade3c882409e554a976eca3 Import Magento Release 1.9.3.2
5dfa133a7d2cec07d669c165aec461675963132f Merge pull request #293 from DmitryFursNeklo/TYPO-1
d0ff95fb60f3cb34ac94e80dee960b2b478cbf4f Typo in category controller
5c381e223be2a88e5349d109f6a35ae2ed2e2165 Typo in category controller
c9ca7b487af86cc2e01ce3125301273abcf1052f Merge pull request #283 from seansan/patch-26
34b536a1a68a168de9f65f1374491fa04f9b7ba0 Possible fix of #282
0f754e6598fcd573f488639b25766a69b5812281 Merge pull request #289 from DmitryFursNeklo/1686
f0ad82693936010dd264c7d7459d0daf61c97c93 Typo in Mage_Admin_Model_User
15ab779bdfc66b2521c1dfdba029367c45394064 Typo in Mage_Admin_Model_User
31c6d46a458e9aae702e601be503710da162c6a5 Merge pull request #290 from VincentMarmiesse/fix-widget-chooser-sku-attribute-select
9f43bd4179573c4b31077c07ec342f7c2cdbb8d4 Fix SKU chooser widget attributes to select which should be an array.
cb2f1656fc1420815b7b1bb760b3c94e2ce98366 Merge pull request #240 from sreichel/hotfix/admin-template/poll-answer-delete-button
ebfaf781a04d6a82b00cbaf31d15070a1009de77 Fixed add poll answer delete button
3ab622713c3da810ca18c3983d7e286cfbd785ac Merge pull request #287 from seansan/patch-28
351f74c7c32f706cea15df19869ca655de615995 Fix missing imagecreatefromwbmp
15efcd56737ae5e388f30ba6fed767185546d4bc Updated readme.md (#270)
c501d1ddd81b5540a9a310338c7bc527f3dd457c Merge pull request #263 from googlygoo/catalog_model_resource_url-_getCategories_invalid_query
3e7064d0448d2e074e4b9d063929705e751a6db0 Updated Mage_Catalog_Model_Resource_Url
e29b3350050579261fdf817b85b7c28c28cf44d9 Merge pull request #254 from MichaelThessel/unreachable-code
60a1c716272ae5a7d59fa5fff3a0d057a7d137f3 Removed unreachable js
2f8627bf9762b9bc2090d1410bf70192efb1210f Fixed customer account downloadable list (#242)
f63b9a04ee39919b038f551240717c9521143e44 Merge pull request #188 from bob2021/disable-keys
24e9ad4e2380e3470c38be30887b87cada2f5dd2 disable 'ALTER TABLE ... DISABLE KEYS' statements by default, and remove useless calls to useDisableKeys()
204cb68c788fbb0f9ccb937c720ae807e047526d [BUGFIX] Fix switching between customer addresses in the admin panel
21e069719dd331fc50e52118271e7137008d5dcd Merge pull request #241 from sreichel/hotfix/reports/model/resource/quote/collection-duplicate-cust_mname
db69295f8238e1fe909b5e43c71abed17817bcc4 Fixed joinLeft / joinInner
8016c84af43b33b423e936440d36edaa6e2e4b34 Fixed abandoned cart report
e10a4ebf25bf68622d0dfae09135edd74af19c69 Merge pull request #187 from bob2021/safe-db-transactions
74db00d3708344c3edad7952aaf5dce69bea6c14 ensure all db transactions are either committed or rolled back
8782d9fa6e83433eb41be61d0c643a2f6cbbb1f2 Merge pull request #200 from OpenMage/1.9.3.0
c401b73c3957ee89a21c4c79ee0aee7070279810 Merge branch '1.9.3.x' into 1.9.3.0
366a09aaf735064bdd805d0c0b2fb47bb17e625a Merge pull request #144 from OpenMage/patch-2
0b696e6765fbeadfc366fa54c372f241ef3ee230 add Flyingmana in Maintainer info
8445982a8673dc649282106dbbdec299f4de12c2 Merge pull request #183 from blopa/patch-1
28013deb404b0b202e09e3e9048cbea6a8f315aa fix unserialized data clitch
f93c2907d4a0e1a437bd7fed8a97dc4318c82d2e Merge pull request #192 from bob2021/cron-fix
7ccd6b478696dfba581cc7d88254b0133db92ab5 don't escape console redirection in cron.php
ccf29c2d04dc7ebdefeb03f91437c186665cea80 Merge pull request #181 from OpenMage/1.9.3.1
cd961c3a4c2b772582530b5a93fea6955f379a45 Merge pull request #151 from seansan/patch-20
18b8dcd95ee744b2a3d896b53a305deec5f04125 Fixes 1px line so is whole block
233f22f898c911690ef5fb31c778745a81716c7f Merge pull request #161 from sreichel/hotfix/catalog/etc/config/product-collection-attributes-image
45ec965bde076ab4d3ba768c0d0988e544cc0583 Added "image" attribute to flat tables
e7f60753dc60374fff68811469b5d55f07b7799f Merge pull request #165 from seansan/patch-21
1ca14c194f1f504843c5abcc72e7d21eb86ddf6c Unify string concatenation
853eaea5f9be1c4da38343e0a18e5f617b78a3c2 Simple improve of Not valid template file debugging
7a8658f34d8f26b4c8716af5c1d33405d97b8211 Merge pull request #163 from sreichel/hotfix/customer/model/observer/deleteCustomerFlowPassword
75d916298e97497da6a206a85bc04b1ad8acebad Added missing table prefix, fixes #162
fb4fe3a775882b1b6cfbd3b1bedbcffd8eb0afb4 Merge pull request #176 from alissonjr/patch-1
f0601ff2722349b6a4992a35531cee1c94703f1f change variable name
e2f86cfd7ed380fbc5b2b7dc6455b4dc06096aa3 Merge pull request #172 from drobinson/1.9.3.2
170cfbaee735f40a3772b367f621ad4c43cf56c5 Imported 1.9.3.2 sources
e8e78ab6ba1daa9936ffbb1527fb53cbfffc4779 Merge pull request #171 from drobinson/SUPEE-9652
3df3e22eab8bcfd9a353e715f922b60ce788581d Updated readme patch table
03835f8a87002f055a5a8b20a9074315ebf10a32 Applied SUPEE-9652
2fc3a12ebff0a86d00c303a7d7ed4d9d954f1329 Merge pull request #169 from royduin/patch-1
42e1d510489d068bd764b1ddf975e920cbcc468a Fixed the CSS merging data uri bug
34ab93c1d0daf533985fc1ff5c645b458af4c245 If add qty field is empty set a default vallue of 1
fd14237e88da262e738ddf6e956d586bf0a53a23 Replace font LinLibertineFont with FONT_HELVETICA: reduces PDf filesizes almost 20x fold
dd412309ed12fcd77391220e85d65ac96b96e16e Fix cms breadcrumb issue
9c4a906b8fb7e6fd0df67b3d44dfc9acdf3a0d98 Merge branch '1.9.3.1' of https://github.com/sreichel/magento-lts into 1.9.3.1
c267026cdc3139851cb279ce3b495b9ffdaf5f38 Added event for sitemap.xml CMS page generation
cb53d23cdf978591ee3e9f621fbadc5e3d177204 remove priority change
fc06172650eea71baf7d79d4de2145a85c560d65 fix tabs
945013296f4ba697cdd9fa91644a0eff6ba64578 remove url from homepage in sitemap
9623c92e0a8c114894c0deb1acb7171f0922a1da Merge tag '1.9.3.1' into 1.9.3.1
c6ad19ceed36784aa6cfa5c968ad9bf493ddf115 Import Magento Release 1.9.3.1
d48bebc211cc216aaf78bdf25d7f0b0143d6333b Import Magento Release 1.9.3
d409dff20e992e97546568974399c456958299f9 Import Magento Release 1.9.2.4
24738e3298305208b311d31a81702dc6c9151dab Import Magento Release 1.9.2.4
d6654602d3f3b612da41d576ae65ebc4241abf25 Import Magento Release 1.9.2.3
87c356d5d920c12fd03536d76976b0e79327c69a Import Magento Release 1.9.2.3
92a1142a37a1f8f639db95353199368f5784725d Import Magento Release 1.9.2.2
4bc632edf76c1008b7dccde3e5c7357ce2c00087 Merge pull request #24 from ToonSpin/magento-1.9
62575cafccb059bbc8921efc0d7f524a3de90e74 Import Magento Release 1.9.2.1
cb52550f2aa31026dfa9cb95709c567ebe3fded7 Import Magento Release 1.9.2.0
cf43f51aab6125f03a0083df1c00ac0f34b86c86 Import Magento Release 1.9.1.1
10ec1f45ef679244b1a70d8677516e6a06784c75 Merge pull request #19 from OpenMage/revert-18-fixAnnotations
3e186a48868ed1b8fbf1901e4c7475a7fdc53323 Revert "[FIX] return annotation of getScript in helper core/js"
7444246ca40f20aff63407771b6406d617d502e6 Merge pull request #18 from sebastianwagner/fixAnnotations
992f9d2fabbfe774585ef38fafddc8e0547c2ca5 [FIX] return annotation of getScript in helper core/js
a1e42bcc6f560bce9f045d4ce319182b950eeea5 Merge pull request #127 from colinmollenhour/file-storage
5da91b248069e84859784d5b483b378123b279b1 Revert return value to false when file already exists and overwrite is not forced.
8541ee709138cef62c3175bd280df0f509c2e559 Remove pointless use of fgets.
cb00241fe33df9093071588dc40bb575f6db340d Use different locking techniques for overwrite flag in file storage resource.
89381484880d36a3c88f88aab8da08a14877ed13 Improvements to file storage.
0c50f33403716ba7b01a6cc33987ef3060629ba9 Merge pull request #119 from drobinson/1.9.3.0
c37387a83a29d94c4dd0ca38af044f21c092fdc4 Fix cms breadcrumb issue
5d1dc1abc188219f129f4a6a914c5bcc76ec964d remove priority change
a8e1eb2772932aa00bafff71013029c90de839a4 Merge branch 'patch-17' of https://github.com/seansan/magento-lts into 1.9.3.0
f58ca4e80e863deec1daa67d79fee28d02a7a626 fix tabs
4ea75aadf5f05623e52f54512a7797e996202e00 remove url from homepage in sitemap
2757e6b7688960bf5463a4e48f50683ef9dd4618 Merge pull request #121 from ambimax/1.9.3.0
32f9b11b8a65972cd1a944fa15d23e14b4a92c65 flex and uploader swf files were removed in patch SUPEE-8788 and therefore also in Magento 1.9.3.0
9f9c227111de80a9c3795a7c0a32fe1f4e429cb1 Merge remote-tracking branch 'OpenMage/1.9.1' into 1.9.3.0
b75409280da4a161ea5ef329d5189aebec1fcb33 Merge pull request #23 from Flyingmana/Flyingmana-patch-1
634ec5c0547b4c5ca9708cdb3d3a215344601aee prevent HEADERS ALREADY SENT error
5aeb0b6673655cdb206436632a73f195cdff8079 make directly use of ob_get_clean()
60ff681639fcfd84e609a5a0a5b9e8909d54c37c prevent HEADERS ALREADY SENT error
c7cf38ba522a47f475bd1d9c8fafc370d8eb7b58 Applied Patch SUPEE-7405 This patch provides protection against several types of security-related issues, including information leaks and cross-site scripting. More information about the individual issues addressed by this patch is available in the patch release notes: http://merch.docs.magento.com/ce/user_guide/magento/release-notes-ce-1.9.2.3.html
93b261d7e230d3a9312a2969c8473f16f7fd0630 Applied Patch SUPEE-7616 This patch addressed USPS method name changes starting Jan 16, 2016
c724f92af9a0a72a293efd2fbcf587e8d5ca7572 Merge pull request #52 from drobinson/patch/1.9.1/SUPEE-6788
62c9207153cd2baaeaaaef970a511f2d355a0f99 SUPEE-6788 CE_1.9.1.1_v1
2df8995a2936741064e3a126cae63a90e6b8c057 Merge pull request #21 from MrGekko/patch-1
ea68574f2bcac0f14df24267602af618912fa2c4 Zend_Validate_Hostname with latest gTLD
975ef021c8dd2a349b9546ff12da4a3b96c71438 Merge pull request #35 from OpenMage/patch/1.9.1/SUPEE-6482
f4e8ec36d41440ffa6530aee1d052f41b59ba0a1 SUPEE-6482 CE_1.9.2.0 v1
91741feb88a5ee5f87d797291f4599f32f55f5b6 Merge pull request #28 from OpenMage/patch/1.9.1/SUPEE-6285
6927393984a661e210180c6d0a7191560b8cc1b2 SUPEE-6285 This patch addresses multiple security vulnerabilities in Magento Community Edition software.
79745b8ad1310e06306896fc51094e65b57b2291 Merge remote-tracking branch 'OpenMage/1.9.2.4' into 1.9.3.0
42abe7130d0fef1a641358c86741fd0fb992fa70 Merge pull request #104 from colinmollenhour/improve-layout-cache
6c58a74bf5882a1b3ddc5f0157e0f481625bf5e7 Improve layout cache efficiency by de-duplicating XML strings.
2c72577774bbb6df3ddea5f5ac7f7cfff79184b6 Merge remote-tracking branch 'OpenMage/1.9.2.3' into 1.9.3.0
8da96ceec6b2dbccec1583bfd6cd23a48b3ef3c6 Merge pull request #64 from seansan/patch-3
1e6795c852d7c948704b7f13f053daf50a54d1d5 Spaces
99bfeb56fea04f4159e6abfac54af8cf6f24cbfa FIX. Enable re-sending again - http://magento.stackexchange.com/a/37690/78
5a0789f191000bb0db05bbc458ed75c40d0da40a Updated applied patches table
43dd9bc78f1e41ff7508167a1ede9e35a09ec5c0 Applied Patch SUPEE-7405 v1.1
369932d2a942ce8c14bb82959d38258bf74a20d9 Merge pull request #118 from bastienlm/fix-shipping-label
5e2e5d9a2a080aeb9051492743ee32abb76737d7 Fix shipping street and vat label
6fcc43ca8f7a8af8032327f51b14ff7aedc9e7ac Merge pull request #120 from drobinson/remove-extra-packages
ce4b217fc00fa627db9111e51214c92e71b3b520 Removed old package xml files
1cd65b593b2a5a943e0f6fe28eb4e638f40a4bdd Merge pull request #123 from seansan/patch-16
bd7b346dbe912f2f25bcd79d2f6f3205e862e635 Fixes Magento bug 648
b52913af2965d9b5cd26c9392d5f73d6563b561a Import Magento Release 1.9.3.0
ac1e3a705c8090eea093576d421c21ec77eb0ed6 Fix configurable product attribute sorting
7f1a054f33aff3247adda59810df6781f2ff47a2 Merge pull request #111 from colinmollenhour/fix-pr103-regression
6244f7b2d9a8f42a2213776503cf9fc76a9b43d1 Use older array syntax
7804594e6275a948320c71dd46380c9c98a9c6b9 Fix regression from PR #103. Forgot to use array access by reference...
33852b998117da46ad76e401431bbcc11482ba8d Merge pull request #91 from sreichel/1.9.2.4
82e0278fa4eccd40e3dc08878b426abbe8fd6491 Added alias methods for getOptionArray(), see #65
84908af943b3de87b4375237d2b2df527fba4f4a Merge pull request #103 from colinmollenhour/fix-product-deadlock
21b0b3abd68fe0d8d19dea1e4024d21777cda123 Fix query which creates significant deadlock potential.
fba367f99abf22f5bef1a10877b023fbd1d8dda7 Merge pull request #94 from kanenas/1.9.2.4
4896cff8e0479f55ab2a135653816d7b116873e5 Remove duplicates double quotes
cda1ac61e4fd000d8785c31d90afbe2a8b9e1fad Merge pull request #83 from pschnell/1.9.2.4
be888b02b1321979868f111a1057f9fe7e623204 fix jsonDecode() PHP7 compatibility
acf44484db4e4e5a42c00cca457818e2061d4f80 Merge pull request #81 from KBortnick/kbortnick/patch-1
a3f28727c4db3acc9d27921f1752c2be7a308b59 Fix typo in Order model _afterSave() method that results in shipping_address_id attribute always being updated
7cd404a9cc9a5999af08e60ab9114d4641dcbe52 Merge pull request #76 from PatrickCronin/1.9.2.4
031f33966eb48d4bbfb36bc75bfab44fa7d0a780 Fix backgroundColor() "getting"
e181a8b586a2e5d9f383e4797c41315fd205862f Merge pull request #75 from seansan/patch-7
3a748673690a22f7e034f08e37e479d863d30bf6 fixed type, next time you can ofcourse do it directly
fc4a6544c2c0d83129c27c8b0843cbeaa3f1e246 I think it is important to mention separately that php 7.0 support was added
b9726b9997e2bece26d37d91c92f32fbb18aebb4 Merge pull request #84 from macopedia/fix-tax-subtotal
750543dd7c2e2b99e5688196cce29b10e2198593 Fixed tax subtotal calculation order
1d66785334ddd67b6cdef50e8609307e9b33e468 Merge pull request #85 from macopedia/fix-is_readable
eca06ff800fc1e6aec244646baa6ad598a219113 added @ on is_readable to suppress warning thrown if $src is file content, not a path (e.g. when image is updated through the REST API) to prevent failure when php server is set to stop on warning like on development server
05023c71dcb4831d6eb45145c71b0bd8ced49188 Merge pull request #74 from seansan/patch-6
8ed956f157a8c863f88bc1cad9ce92c77fa9ab31 Add patch for magento to set cron in the running status, this will stop duplicate jobs showing up in the scheduled status.
ab40e29c861593b593dff1d26a202ea927b85895 Merge pull request #78 from seansan/patch-8
ad52f2fbdbb2af7b2ea9700044596f575f96c94f referense = reference
fef762d6e0fe104218dd41fa7fffb85a6551b8c4 Import Magento Release 1.9.2.4
910fae47bf34f3b9b3c81ce44c861f5820b7140f Merge pull request #62 from drobinson/php-7-support
a07ad9c65d0b0235bcc19792f0035911f306795d PHP 7 support
8fd8987c06b4f327f60f2f90978c45c096ae70b6 Merge pull request #61 from ktomk/patch/1.9.2.3-memory-leak-image-upload
c3d69a6c09e861a8dcc52eb14b30cdbd0ea9034b [BUG] Fix memory leaks during image upload
28a031f7378f3b92a8f4528f90511cbf5a2b22ee Imported Magento Release 1.9.2.3 - license updates
1f20b3db5d8b6412592f497c82ef2eeb7a5a44cb Imported Magento Release 1.9.2.3 - excluding license updates
cabb3b1acc952fa41f6c55804ccdbc17415b7125 Import Magento Release 1.9.2.2
3afbb3069213514d49f526b796df7d06d5b7e16a Merge pull request #41 from empiricompany/patch-1
7a164c4694aa51e4e50b1dd93423e8d2b6bd8e66 fix middleName issue
55cf0b594edf1fd631744d39c592ac902c198769 Merge pull request #48 from sunel/patch-1
d0dcf24e4646c2863ff2aeb784fca2ed00ee3226 Fixed reorder isSalable check function
eda38f608b031d273f9cbc66915067225e280fbc Merge pull request #46 from macopedia/unescape_single_quotes_in_csv
9964caddda4c176ccfe0a8d79c55d0a73d88d1c3 Unescape single quotes in Magento translation files
c4e8062021edb49a7ebf5e579448b6bfe0e5b503 Merge pull request #45 from OpenMage/tmotyl-dont-clear-cache
f9fa51a27631cee11b461988d539ef4ab3bd1d75 Do not clear product cache when saving new product
112403ccdb81e16063e647aab5864e396d4d72c6 Merge pull request #47 from macopedia/opcheckout_iterate_fix
d05ef15cfc08adcf1d12f3c488a921672fa6324a opcheckout.js should iterate over elements, not functions
44511ae0b82c495d27c1cad218e3694ddcda1dfd Merge pull request #39 from rafaelstz/patch-3
000b48b585201a3768c93cbb1d15de1adefd9615 Semantic JSON
51d3d1672f8f79fbe4b12739bddc88e79cb4dc42 Merge pull request #38 from OpenMage/drobinson-patch-table-1.9.2.1
87e8a6c01bdb386f6b4d954501b38954516f3b0b Added Patch table
3475118091c070e84105f5b5a2778c52c4c9defa Import Magento Release 1.9.2.1
389da6ad28dbde8686cfd67e63a058ecfb6bab00 Merge branch 'patch/1.9.2/SUPEE-6482' into 1.9.2
11a6b0ecf7b021a08089f88ec6f7d9a46bd6f8f3 SUPEE-6482 CE_1.9.2.0 v1
29c2709ee1e6f80c24a75fc34a94ea6d7f8c8a99 Import Magento Release 1.9.2.0
688c043798488d1fddbab398d5b6f9679979605f Merge pull request #17 from tmotyl/patch-1
c5314f6ed0775674a39fffb8ed12c24b4ef630dc Better log msg when template file doesn't exist.
bac91d85ef09f8bdc3dc44a2dc8739f696b912e7 Merge pull request #18 from tmotyl/patch-2
5980c3903904bb73390679aa3d0364cc9622040f Properly stop profiler in Layout_Update
7f4d019d744bbb7cb85fd3cca0826be2bc6da2e8 Merge pull request #19 from davidwindell/patch-1
88d4c01866fc12dc4c85421c67dcd47d440e8a83 Delete get.php.orig
7ef50268d8c04f71953efacbc09a1bbd89d00d77 SUPEE-5994 This patch addresses multiple security vulnerabilities in Magento Community Edition software, including issues that can put customer information at risk.
fe40916258043947ad021c2c438e2112a6c614c7 Merge pull request #14 from syamvilakudy/patch-1
6e38ce6f4a834fd623bd0c854e9d8bdef51dabfb Missing variables and functions added
e2b8244a2c74a726e3882d44ed70ef1aa76bb160 Import Magento Release 1.9.1.1
68ce5a3eeb48bdd3055af02064495cea6b84b896 Removed replace from composer.json
3057e6d26c1bc4650874cc4bee35938b708852c8 Added replace package
f8c21a1e7a2ffa6e9946189cbee7318bb4cec729 Updated readme to emphasize that 3rd party patches and bug fixes are encouraged
a362e68861c913c849d1281d7318d51281ced56b Added readme file
4ab9b9c7b6a930971b58422ed63c6dffcc530332 Added composer.json
3fa52d59e1f2496a9735d34cd0155af3f81410a2 SUPEE-4829 This patch fixes an issue in which product images become larger when a shopper selects a swatch on a search result page
4e071c34337fb9f109825ad9a01319ef7d1d5224 Merge pull request #9 from manish172/magento-1.9
5924277e05cca365532a1ae0b92f41529c4f6ff7 Applied Security patch from Magento: PATCH_SUPEE-5344_CE
1e195ab5d9977c574ef9537d665a1785a3c29917 Merge pull request #8 from sebastianwagner/fixAnnotation
d2f9fe2486d97ed1faf17fe747d7256b580d9ddf [FIX] return annotation of getScript in helper core/js
9dad9ef61da4f088825018c47b1fc91b97b73510 Merge remote-tracking branch 'magento-mirror/magento-1.9' into magento-lts-1.9
053e0b286cbd6d52ac69ca9fd53a3b72c78aca1d Import Magento Release 1.9.1.0
6d38f1ae071d6f60a857dcb302d2eade0cd9d7a8 Merge pull request #4 from macopedia/SUPEE-4291_4334
2a83b9852068306f3f2141d3e8d6f62154d1d8f7 SUPEE-4291/4334 - This patch addresses the USPS API changes
5fcbb8b1ee7b3e1235726ab325727e6b181cdd4c Merge pull request #3 from macopedia/SUPEE-3941
bc30a5fb67ad0ef8cff0f38fc6ddd65a7d3beff4 SUPEE-3941 - Addresses extension-related issues
b3173106ace8f9a6432ffe64e4fbe7f62e44f76c Merge pull request #2 from macopedia/SUPEE-1533
ccab57ba9ffe07068a5d8528b1fd1979891589c4 SUPEE-1533 - Addresses two potential remote code execution exploits
f2ea60205fb9b62053bd89722bcf35466c8e722d Merge pull request #1 from macopedia/SUPEE-3762
e5c5878b428a1948d05f5a78b209ff5853efc5ac SUPEE-3762 Prevent showing install page after refresing SOAP index
5345da52778cc6f5f31938ffd21fccfdd353435c Import Magento Release 1.9.0.1
a1aca13823b7d10724d01b7597827c8bf024d270 Import Magento Release 1.9.0.0
a6a11ba8734ee7ac9d31d5da68e031ad6b7acc37 Import Magento Release 1.8.1.0
94e611e127d5c14008990b256ed06ded622dcee9 Merge pull request #3 from kalenjordan/magento-1.8
b9c3c45f9fcb78d133064d2cb2b607a1c7b47379 Copyright change from 2012 to 2013
d0b97bacb84d061d98f7f765b9edf932d7ac6da8 Magento 1.8.0.0, excluding copyright changes from 2012 to 2013
6ea22c9abff24da3f3f2aaed59c527ff803c02eb Import Magento Release 1.7.0.2
44407a720cd5a4db7a03fe338a9bffd6611743b1 Import Magento Release 1.7.0.1
7652d087013e2d08ac2c5f93538dac9bd5ace579 Merge branch 'magento-1.7-beta' into magento-1.7
3254aefbb8dcc94b54470e9836cf39959aae18e9 Import Magento Release 1.7.0.0
1ea33f814ee7b62d06e65c47425131a21be5d362 Import Magento Release 1.7.0.0-rc1
e56274a1b0954bc3744392ae8496271087f9445c Import Magento Release 1.7.0.0-beta1
7aa9a6fce611cfaf79b9c8f1934942f58ce4f7c6 Import Magento Release 1.7.0.0-alpha1
ce077595ec36f52d61413d53b7325ccfcfe86429 Merge branch 'magento-1.6-beta' into magento-1.6
461a8c30d689c8ca305ffb9bc7737dc04214b6b3 Import Magento Release 1.6.1.0
8f27f9d8d982b78e4bd65936100068b42f22d016 Import Magento Release 1.6.1.0-rc1
16738b203e82bfe31f3c85dde5291a8f7d5576cb Import Magento Release 1.6.1.0-beta1
b37626fa2a1a28a78a06a655d0a19517b2910a6f Import Magento Release 1.6.1.0-alpha1
197486dbe283728329ed1f820105f93ad8ccf3ad Merge branch 'magento-1.6' into magento-1.6-beta
d54fe9303e43fdd9956bc747c5b351e4be8c3f1f Import Magento Release 1.6.0.0
6cea6049cb8bf429c429d6067d08b22d0188e90f Import Magento Release 1.6.0.0-rc2
613dacef60ee3522884565c79ccba6108077cdd4 Import Magento Release 1.6.0.0-rc1
1efcc4045a5a421bc1778d08eea5c9a5fcce54af Import Magento Release 1.6.0.0-beta1
a562c7f972d3809ef933a69dc58283b2dd85cb25 Import Magento Release 1.6.0.0-alpha1
af7311d7344ffb334c7b0f5cb7edf3c297fb9de9 Import Magento Release 1.5.1.0
22c766007b346c7b126659036a6740352b5c7438 Import Magento Release 1.5.0.1
88e2a6b3c1c77f89801991c1e1a5c349e87335ad Fixing missing files
2352cfb3463687de7bcf50e7633b558cf5b0866c Import Magento Release 1.5.0.0
d7bb2890441ed8d12f90c707ef071aa3c4144db2 Import Magento Release 1.5.0.0-rc2
69d36dfcfe8ef2bc79cb8ce6faa650e0109b4f4a Import Magento Release 1.5.0.0-rc1
52e6ef613622bb14c8fcc2f344b492fc8be26331 Import Magento Release 1.5.0.0-beta2
598ebd8b870689a5c7452cbb38f6de7249dada65 Import Magento Release 1.5.0.0-beta1
06633113ac8e4b3d7c49ef670cfdf03751d360e0 Import Magento Release 1.5.0.0-alpha2
f3e3f62792696d5d7172346754e92e3d20f838bb Import Magento Release 1.5.0.0-alpha1
b7dc90c8630a7584451503009c193036d7bfb2dc Import Magento Release 1.4.2.0
9bb265e3f4e65c26ec99725cd8e611a8ed6d5470 Import Magento Release 1.4.1.1
960045c285e98c6820fecf54ea552039d516d821 Import Magento Release 1.4.1.0
52438d74da2f6c4b4f2de44df58dcc84b238d983 Import Magento 1.4.0.1
61c419b054485505b67b498cfb3f297890c08644 Import Magento 1.4.0.0
473b8446906c4a55511fed02edeef3fcf3fa81d1 Import Magento 1.4.0.0-rc1
788d81fd55312f0d7d462ef10f0317f9a08fab71 Import Magento 1.4.0.0-beta1
84a1ea63bc543dcddcb7c2b829f00b9357eb3b26 Import Magento 1.4.0.0-alpha3
7d6c5167626151ed1a687cff5de5930331517e0a Import Magento 1.4.0.0-alpha2
f7e4e00a6f10431d01306d51601ccd90b56da8c3 Import Magento 1.4.0.0-alpha1
e1e0826b969b736e58b2bc6cf5daa5ea653c8971 Reverting magento-1.4.0.0-alpha1 thru magento-1.4.0.0-rc1 commits
0ffeefecacb66571758e6954a809bbbb84f8cc05 Import Magento 1.4.0.0-rc1
dd50889e8f5d60840a50d4d0217ff1ae8b23a8d9 Import Magento 1.4.0.0-beta1
52967abf0a4d1e0d429fa4e30a1634d91631a16e Import Magento 1.4.0.0-alpha3
21ef79d141b55646b66a3690a053ca0bf3761daf Import Magento 1.4.0.0-alpha2
f97dcaad6de46e1af5105a15dc31f18a02357538 Import Magento 1.4.0.0-alpha1
e3b8ddb928a0cd48b8fb6254cc6c2f406370160e Import Magento Release 1.3.2.4
69c3ea0b2c406b728fdca102442faeda2c666c72 Import Magento Release 1.3.2.3
0a542b38fe5256b725419d4659142632016ada0b Import Magento Release 1.3.2.2
0befb41b043894f563234458739b607f0c18421b Import Magento Release 1.3.2.1
81117fa6ce534ecd6cd10548824d090839c0da6c Import Magento Release 1.3.2
f32ebf0da6b30f0bd9e86d3a4fd42b663f0c1c63 Import Magento Release 1.3.2
d583154b7100c798ad2ba0380fe4985c1b75f0b8 Import Magento Release 1.3.1.1
58cb15843d45c8cc5704f1c04bd0a1ffc9182f12 Import Magento Release 1.3.1
c6d0972885a76513dd44f9d732ca956876b148e0 Import Magento Release 1.3.0
4cf6b334fc991533f9aa4d62012d5915d2070e72 Import Magento Release 1.2.1.2
5f91b42b12a9473577c98276c676466d300962d6 Merge branch 'master' of git@github.com:magentomirror/magento-mirror
7e3cf77d887f50bf4e4ec65d7730ae19c5851519 Import Magento Release 1.2.1.1
1529574e248b029c8b9ed17c4063493b5502afa7 Adding in repo level ignore file to prevent accidental commits containing dynamic data
7496292af850da56b65940d9bfec48437da5be38 Import Magento Release 1.2.1
aadc3fa99ab555beeb3d143ffa5554c4fd8cd146 Import Magento Release 1.2.0.3
1f631b055f8f1ecf320fcd9b39a3870b147a6b7f Import Magento Release 1.2.0.2
c55a10aa5c17f581788754b915f29a7164fc37d7 Import Magento Release 1.2.0.1
1588b75a54bf43e135de2468b266b0edec0fde28 Import Magento Release 1.2.0
46332515d09cd275c64c4169db5d655e84948d1d Import Magento Release 1.1.8
9ebaba07e29a8c2df383f787c7d0b7e7f760b43a Import Magento Release 1.1.7
6bfe398c828919bc89145b6b3239e9bf1c0ac3f6 Import Magento Release 1.1.6
3fed190db0ef24d0f51972ee20bd84c253c4c32f Import Magento Release 1.1.5
5b1e92d8945ec184a47cb86d1e6c24d8c7aefa11 Import Magento Release 1.1.4
b5a5fba309779218afc38b2454fc3ad31d5bba50 Import Magento Release 1.1.3
281571058b913e10068d9f9d330d2af43b293fa1 Import Magento Release 1.1.2
d19f0e13d3d2fcbcc2d8fa6073568d5f95442470 Import Magento Release 1.1.1
f3f125c953a4ab6688ab24d376f3c7b28d594908 There is exists no Mage_Core_Model_Exception
57738e6e10ddb66f4ba60eccf15bcdca04330b19 Exception has already been caught
98f2f171e4b14e904d430d4a902205a0f443f402 Duplicate case expression (#395)
cf8f84ad2f3094d5c2a1528c30411767e58dafc4 Add quotes to numeric incrementIds - The Sequel (#388)
84726eef841b7c92022c8e0c9780793b40a76254 Remove assignments where the left and the right parts of assignment are equal (#399)
d87d65401665f8f5cd4fce882dcb0a689de89e86 Fix wrong argument name in downloaders Mage_HTTP_Client_Curl->curlOptions
47cfea4525c4d0bba47601ce055dc56a78a3da63 Remove duplicated array keys (#402)
1ac08b73d6f617ade57c90e0e8d2ed5e3d00fafa Fixe wrong comment in /media/.htaccess (#391)
94a0e92997ab4297419d80f8dc1398d5ee12ede8 Remove duplicated semicolons (#404)
ca25bb54f222dc7f435eba184f3fe6634226a996 Delete .mysql4-upgrade-0.1.9-0.1.10.php.3hidjY
1172d58d812d5320b7146d4dfb583b6f3c5ba5aa patch - SUPEE-10415 / 1.9.3.7
9a74a4a3a851c501430a25ef925944808360878c add element to new line
00ffa8c5b1c8e16d6f91fec7fe0065713456f7e5 position changed in array
b07d012066790d4c52281eb5ba9b1403f0bbc537 fix localisation whitelist for swiss french
c760e367a06188e63d42f6f50738d5dbf5b21eaf Remove stray block element in checkout.xml
7acd9ebfe1010974e4f62066daac1b5db6a78dc4 Added missing functionality for getThumbnailUrl
26cca248bdeb05232663f3021106d14335a716cb Added missing comma, see #317, fixes #370
f7fb37d2c39fd7762fcc88807bc0f2298fd8bd8a Fixes system config dependencies for multiselect fields
3de86930c174f0a88d499ba65637118d244d99ac Fixed removeAccents method for german umlauts
17babc777032d73b71b886b3db39e59d9926c184 Add SUPEE-4814
52eeb3a46144c7f1fff997367711fdc46422856a cloudflare reset current path in file manager
58390284de8b9a557b9d798b875f125e5aa8b7d8 Removed obsolete files, fixes #352
9f1aaabcac762a95519eb75dc52adf4a90a8faa9 Add possibility to remove link at sales order and account edit page
8c0c067fc2ab1d47ba5077cb026a7cb317a31690 [FIX] set email as sent only if customer notified
4e7eab322b5325dfa2dc7e88aeb58598aa06cab3 Set sane default session_cookie_lifetime (3 hours)
4347c5894439dbc3bdfbfdb5fe842e8116ba4335 This bug was present begining in 1.7.0.2 and is still present in 1.9.3.3. This patch has been running in production for about 4 years without any issues.
e1d82b21d6650295fd539a09cc4553328bed0219 fix ssl version
d3801ade0b7087b99d7ecc652c44d896efcc45d5 Fix bug with missing close parenthesis
70c9cfc84afeffb2839d499b6b499bfe59c709b2 Make Mage registry related methods consistent
92ba41c620154ab5b617554f10cab29d593c5ee5 Fix slow url_rewrite query on MySQL 5.7
f7313ee3777052801004d20ca7d270f1fe622c45 Remove rej file
cfc04835be747a2ba85bc660f77c73533ae92cf5 Fixed typo in Mage_HTTP_Client_Curl, fixes #281
0eabf7496c4ac7cb1935534f710ce7ba7e7dcbfb Update patch list
40720cab87d614a57b1396800936fa86c6dc098b Import Magento Release 1.9.3.6
92ce7271aeb20f6ca96cf28568b7b83c4ef78e82 Speed up lint by excluding lib/Zend
eb9f5209b6b89c84f647743ce2119cdcb987bc2b Fix errors found via PHP lint.
7aedb6ef2cd603e0b7295c8025917e9c54ec0b09 Actually fix PHP lint path pruning.
895c2a5ec68af8180fbbcce744c33e015287f66b Fix PHP lint path pruning.
c9f5e824ced51c885635ef75560eeb575119a102 Exclude lib/PEAR and lib/phpseclib from PHP Lint test.
7b83c28d4ea5ed055e731c06f04136e02fedef0f Allow PHP 7.2 to fail for now.
ba0b0c39962cfabf015d8ae90bd973c70d18d3f6 Create .travis-ci.yml adding PHP lint
b3cf05f72f56320dad6cdb95fc0a79d474674702 Update README.md regarding versioning strategy. Refs #273 (#333)
72488e9904bdbbd17b60d551d6b9f3fe9cd19fcb Fixed typo, fixes #334
8c3ba4eee1497cbf781f9f22e930d0fad1f474f1 Adds product add to cart event
cb3e8f0aeaf55c4b2b7a1f9a35ead9fb399aba75 Fixes hidden checkout config, fixes #259
27d97d6e8153653e7ee6478a2a2420ac6378e653 Fixes wrong usage of getSelect()->order() method
44550a9da4f66d14bd2ad389fe55c2ad393f2ac7 Use joinLeft instead of joinInner to fix customers missing from reports.
50dc517e5367f2ebdb210b0f24bed53e9d494aac Fixed undefined variable when creating shipping labels
2725b76d72df0939026ddca8b11f97cbe5be5c6c Import Magento Release 1.9.3.4
6fa6810c05ef87bd6e12ae304cb07c83d3b6ccb7 remove leftover 1.9.3.2 package files
6f7586f02cd94b0ae95780c845aca4c74d24f53e Import Magento Release 1.9.3.3
292a9948449c22981e33b5f672cfaeba3e703fa6 Import Magento Release 1.9.3.2
503792169a7caefc3ade3c882409e554a976eca3 Import Magento Release 1.9.3.2
d0ff95fb60f3cb34ac94e80dee960b2b478cbf4f Typo in category controller
5c381e223be2a88e5349d109f6a35ae2ed2e2165 Typo in category controller
34b536a1a68a168de9f65f1374491fa04f9b7ba0 Possible fix of #282
f0ad82693936010dd264c7d7459d0daf61c97c93 Typo in Mage_Admin_Model_User
15ab779bdfc66b2521c1dfdba029367c45394064 Typo in Mage_Admin_Model_User
9f43bd4179573c4b31077c07ec342f7c2cdbb8d4 Fix SKU chooser widget attributes to select which should be an array.
ebfaf781a04d6a82b00cbaf31d15070a1009de77 Fixed add poll answer delete button
351f74c7c32f706cea15df19869ca655de615995 Fix missing imagecreatefromwbmp
15efcd56737ae5e388f30ba6fed767185546d4bc Updated readme.md (#270)
3e7064d0448d2e074e4b9d063929705e751a6db0 Updated Mage_Catalog_Model_Resource_Url
60a1c716272ae5a7d59fa5fff3a0d057a7d137f3 Removed unreachable js
2f8627bf9762b9bc2090d1410bf70192efb1210f Fixed customer account downloadable list (#242)
24e9ad4e2380e3470c38be30887b87cada2f5dd2 disable 'ALTER TABLE ... DISABLE KEYS' statements by default, and remove useless calls to useDisableKeys()
204cb68c788fbb0f9ccb937c720ae807e047526d [BUGFIX] Fix switching between customer addresses in the admin panel
db69295f8238e1fe909b5e43c71abed17817bcc4 Fixed joinLeft / joinInner
8016c84af43b33b423e936440d36edaa6e2e4b34 Fixed abandoned cart report
74db00d3708344c3edad7952aaf5dce69bea6c14 ensure all db transactions are either committed or rolled back
0b696e6765fbeadfc366fa54c372f241ef3ee230 add Flyingmana in Maintainer info
28013deb404b0b202e09e3e9048cbea6a8f315aa fix unserialized data clitch
7ccd6b478696dfba581cc7d88254b0133db92ab5 don't escape console redirection in cron.php
18b8dcd95ee744b2a3d896b53a305deec5f04125 Fixes 1px line so is whole block
45ec965bde076ab4d3ba768c0d0988e544cc0583 Added "image" attribute to flat tables
1ca14c194f1f504843c5abcc72e7d21eb86ddf6c Unify string concatenation
853eaea5f9be1c4da38343e0a18e5f617b78a3c2 Simple improve of Not valid template file debugging
75d916298e97497da6a206a85bc04b1ad8acebad Added missing table prefix, fixes #162
f0601ff2722349b6a4992a35531cee1c94703f1f change variable name
170cfbaee735f40a3772b367f621ad4c43cf56c5 Imported 1.9.3.2 sources
3df3e22eab8bcfd9a353e715f922b60ce788581d Updated readme patch table
03835f8a87002f055a5a8b20a9074315ebf10a32 Applied SUPEE-9652
42e1d510489d068bd764b1ddf975e920cbcc468a Fixed the CSS merging data uri bug
34ab93c1d0daf533985fc1ff5c645b458af4c245 If add qty field is empty set a default vallue of 1
fd14237e88da262e738ddf6e956d586bf0a53a23 Replace font LinLibertineFont with FONT_HELVETICA: reduces PDf filesizes almost 20x fold
dd412309ed12fcd77391220e85d65ac96b96e16e Fix cms breadcrumb issue
c267026cdc3139851cb279ce3b495b9ffdaf5f38 Added event for sitemap.xml CMS page generation
cb53d23cdf978591ee3e9f621fbadc5e3d177204 remove priority change
fc06172650eea71baf7d79d4de2145a85c560d65 fix tabs
945013296f4ba697cdd9fa91644a0eff6ba64578 remove url from homepage in sitemap
c6ad19ceed36784aa6cfa5c968ad9bf493ddf115 Import Magento Release 1.9.3.1
d48bebc211cc216aaf78bdf25d7f0b0143d6333b Import Magento Release 1.9.3
d409dff20e992e97546568974399c456958299f9 Import Magento Release 1.9.2.4
24738e3298305208b311d31a81702dc6c9151dab Import Magento Release 1.9.2.4
d6654602d3f3b612da41d576ae65ebc4241abf25 Import Magento Release 1.9.2.3
87c356d5d920c12fd03536d76976b0e79327c69a Import Magento Release 1.9.2.3
92a1142a37a1f8f639db95353199368f5784725d Import Magento Release 1.9.2.2
62575cafccb059bbc8921efc0d7f524a3de90e74 Import Magento Release 1.9.2.1
cb52550f2aa31026dfa9cb95709c567ebe3fded7 Import Magento Release 1.9.2.0
cf43f51aab6125f03a0083df1c00ac0f34b86c86 Import Magento Release 1.9.1.1
3e186a48868ed1b8fbf1901e4c7475a7fdc53323 Revert "[FIX] return annotation of getScript in helper core/js"
992f9d2fabbfe774585ef38fafddc8e0547c2ca5 [FIX] return annotation of getScript in helper core/js
5da91b248069e84859784d5b483b378123b279b1 Revert return value to false when file already exists and overwrite is not forced.
8541ee709138cef62c3175bd280df0f509c2e559 Remove pointless use of fgets.
cb00241fe33df9093071588dc40bb575f6db340d Use different locking techniques for overwrite flag in file storage resource.
89381484880d36a3c88f88aab8da08a14877ed13 Improvements to file storage.
c37387a83a29d94c4dd0ca38af044f21c092fdc4 Fix cms breadcrumb issue
5d1dc1abc188219f129f4a6a914c5bcc76ec964d remove priority change
f58ca4e80e863deec1daa67d79fee28d02a7a626 fix tabs
4ea75aadf5f05623e52f54512a7797e996202e00 remove url from homepage in sitemap
32f9b11b8a65972cd1a944fa15d23e14b4a92c65 flex and uploader swf files were removed in patch SUPEE-8788 and therefore also in Magento 1.9.3.0
634ec5c0547b4c5ca9708cdb3d3a215344601aee prevent HEADERS ALREADY SENT error
5aeb0b6673655cdb206436632a73f195cdff8079 make directly use of ob_get_clean()
60ff681639fcfd84e609a5a0a5b9e8909d54c37c prevent HEADERS ALREADY SENT error
c7cf38ba522a47f475bd1d9c8fafc370d8eb7b58 Applied Patch SUPEE-7405 This patch provides protection against several types of security-related issues, including information leaks and cross-site scripting. More information about the individual issues addressed by this patch is available in the patch release notes: http://merch.docs.magento.com/ce/user_guide/magento/release-notes-ce-1.9.2.3.html
93b261d7e230d3a9312a2969c8473f16f7fd0630 Applied Patch SUPEE-7616 This patch addressed USPS method name changes starting Jan 16, 2016
62c9207153cd2baaeaaaef970a511f2d355a0f99 SUPEE-6788 CE_1.9.1.1_v1
ea68574f2bcac0f14df24267602af618912fa2c4 Zend_Validate_Hostname with latest gTLD
f4e8ec36d41440ffa6530aee1d052f41b59ba0a1 SUPEE-6482 CE_1.9.2.0 v1
6927393984a661e210180c6d0a7191560b8cc1b2 SUPEE-6285 This patch addresses multiple security vulnerabilities in Magento Community Edition software.
6c58a74bf5882a1b3ddc5f0157e0f481625bf5e7 Improve layout cache efficiency by de-duplicating XML strings.
1e6795c852d7c948704b7f13f053daf50a54d1d5 Spaces
99bfeb56fea04f4159e6abfac54af8cf6f24cbfa FIX. Enable re-sending again - http://magento.stackexchange.com/a/37690/78
5a0789f191000bb0db05bbc458ed75c40d0da40a Updated applied patches table
43dd9bc78f1e41ff7508167a1ede9e35a09ec5c0 Applied Patch SUPEE-7405 v1.1
5e2e5d9a2a080aeb9051492743ee32abb76737d7 Fix shipping street and vat label
ce4b217fc00fa627db9111e51214c92e71b3b520 Removed old package xml files
bd7b346dbe912f2f25bcd79d2f6f3205e862e635 Fixes Magento bug 648
b52913af2965d9b5cd26c9392d5f73d6563b561a Import Magento Release 1.9.3.0
ac1e3a705c8090eea093576d421c21ec77eb0ed6 Fix configurable product attribute sorting
6244f7b2d9a8f42a2213776503cf9fc76a9b43d1 Use older array syntax
7804594e6275a948320c71dd46380c9c98a9c6b9 Fix regression from PR #103. Forgot to use array access by reference...
82e0278fa4eccd40e3dc08878b426abbe8fd6491 Added alias methods for getOptionArray(), see #65
21b0b3abd68fe0d8d19dea1e4024d21777cda123 Fix query which creates significant deadlock potential.
4896cff8e0479f55ab2a135653816d7b116873e5 Remove duplicates double quotes
be888b02b1321979868f111a1057f9fe7e623204 fix jsonDecode() PHP7 compatibility
a3f28727c4db3acc9d27921f1752c2be7a308b59 Fix typo in Order model _afterSave() method that results in shipping_address_id attribute always being updated
031f33966eb48d4bbfb36bc75bfab44fa7d0a780 Fix backgroundColor() "getting"
3a748673690a22f7e034f08e37e479d863d30bf6 fixed type, next time you can ofcourse do it directly
fc4a6544c2c0d83129c27c8b0843cbeaa3f1e246 I think it is important to mention separately that php 7.0 support was added
750543dd7c2e2b99e5688196cce29b10e2198593 Fixed tax subtotal calculation order
eca06ff800fc1e6aec244646baa6ad598a219113 added @ on is_readable to suppress warning thrown if $src is file content, not a path (e.g. when image is updated through the REST API) to prevent failure when php server is set to stop on warning like on development server
8ed956f157a8c863f88bc1cad9ce92c77fa9ab31 Add patch for magento to set cron in the running status, this will stop duplicate jobs showing up in the scheduled status.
ad52f2fbdbb2af7b2ea9700044596f575f96c94f referense = reference
fef762d6e0fe104218dd41fa7fffb85a6551b8c4 Import Magento Release 1.9.2.4
a07ad9c65d0b0235bcc19792f0035911f306795d PHP 7 support
c3d69a6c09e861a8dcc52eb14b30cdbd0ea9034b [BUG] Fix memory leaks during image upload
28a031f7378f3b92a8f4528f90511cbf5a2b22ee Imported Magento Release 1.9.2.3 - license updates
1f20b3db5d8b6412592f497c82ef2eeb7a5a44cb Imported Magento Release 1.9.2.3 - excluding license updates
cabb3b1acc952fa41f6c55804ccdbc17415b7125 Import Magento Release 1.9.2.2
7a164c4694aa51e4e50b1dd93423e8d2b6bd8e66 fix middleName issue
d0dcf24e4646c2863ff2aeb784fca2ed00ee3226 Fixed reorder isSalable check function
9964caddda4c176ccfe0a8d79c55d0a73d88d1c3 Unescape single quotes in Magento translation files
f9fa51a27631cee11b461988d539ef4ab3bd1d75 Do not clear product cache when saving new product
d05ef15cfc08adcf1d12f3c488a921672fa6324a opcheckout.js should iterate over elements, not functions
000b48b585201a3768c93cbb1d15de1adefd9615 Semantic JSON
87e8a6c01bdb386f6b4d954501b38954516f3b0b Added Patch table
3475118091c070e84105f5b5a2778c52c4c9defa Import Magento Release 1.9.2.1
11a6b0ecf7b021a08089f88ec6f7d9a46bd6f8f3 SUPEE-6482 CE_1.9.2.0 v1
29c2709ee1e6f80c24a75fc34a94ea6d7f8c8a99 Import Magento Release 1.9.2.0
c5314f6ed0775674a39fffb8ed12c24b4ef630dc Better log msg when template file doesn't exist.
5980c3903904bb73390679aa3d0364cc9622040f Properly stop profiler in Layout_Update
88d4c01866fc12dc4c85421c67dcd47d440e8a83 Delete get.php.orig
7ef50268d8c04f71953efacbc09a1bbd89d00d77 SUPEE-5994 This patch addresses multiple security vulnerabilities in Magento Community Edition software, including issues that can put customer information at risk.
6e38ce6f4a834fd623bd0c854e9d8bdef51dabfb Missing variables and functions added
e2b8244a2c74a726e3882d44ed70ef1aa76bb160 Import Magento Release 1.9.1.1
68ce5a3eeb48bdd3055af02064495cea6b84b896 Removed replace from composer.json
3057e6d26c1bc4650874cc4bee35938b708852c8 Added replace package
f8c21a1e7a2ffa6e9946189cbee7318bb4cec729 Updated readme to emphasize that 3rd party patches and bug fixes are encouraged
a362e68861c913c849d1281d7318d51281ced56b Added readme file
4ab9b9c7b6a930971b58422ed63c6dffcc530332 Added composer.json
3fa52d59e1f2496a9735d34cd0155af3f81410a2 SUPEE-4829 This patch fixes an issue in which product images become larger when a shopper selects a swatch on a search result page
5924277e05cca365532a1ae0b92f41529c4f6ff7 Applied Security patch from Magento: PATCH_SUPEE-5344_CE
d2f9fe2486d97ed1faf17fe747d7256b580d9ddf [FIX] return annotation of getScript in helper core/js
053e0b286cbd6d52ac69ca9fd53a3b72c78aca1d Import Magento Release 1.9.1.0
2a83b9852068306f3f2141d3e8d6f62154d1d8f7 SUPEE-4291/4334 - This patch addresses the USPS API changes
bc30a5fb67ad0ef8cff0f38fc6ddd65a7d3beff4 SUPEE-3941 - Addresses extension-related issues
ccab57ba9ffe07068a5d8528b1fd1979891589c4 SUPEE-1533 - Addresses two potential remote code execution exploits
e5c5878b428a1948d05f5a78b209ff5853efc5ac SUPEE-3762 Prevent showing install page after refresing SOAP index
5345da52778cc6f5f31938ffd21fccfdd353435c Import Magento Release 1.9.0.1
a1aca13823b7d10724d01b7597827c8bf024d270 Import Magento Release 1.9.0.0
a6a11ba8734ee7ac9d31d5da68e031ad6b7acc37 Import Magento Release 1.8.1.0
b9c3c45f9fcb78d133064d2cb2b607a1c7b47379 Copyright change from 2012 to 2013
d0b97bacb84d061d98f7f765b9edf932d7ac6da8 Magento 1.8.0.0, excluding copyright changes from 2012 to 2013
6ea22c9abff24da3f3f2aaed59c527ff803c02eb Import Magento Release 1.7.0.2
44407a720cd5a4db7a03fe338a9bffd6611743b1 Import Magento Release 1.7.0.1
3254aefbb8dcc94b54470e9836cf39959aae18e9 Import Magento Release 1.7.0.0
1ea33f814ee7b62d06e65c47425131a21be5d362 Import Magento Release 1.7.0.0-rc1
e56274a1b0954bc3744392ae8496271087f9445c Import Magento Release 1.7.0.0-beta1
7aa9a6fce611cfaf79b9c8f1934942f58ce4f7c6 Import Magento Release 1.7.0.0-alpha1
461a8c30d689c8ca305ffb9bc7737dc04214b6b3 Import Magento Release 1.6.1.0
8f27f9d8d982b78e4bd65936100068b42f22d016 Import Magento Release 1.6.1.0-rc1
16738b203e82bfe31f3c85dde5291a8f7d5576cb Import Magento Release 1.6.1.0-beta1
b37626fa2a1a28a78a06a655d0a19517b2910a6f Import Magento Release 1.6.1.0-alpha1
d54fe9303e43fdd9956bc747c5b351e4be8c3f1f Import Magento Release 1.6.0.0
6cea6049cb8bf429c429d6067d08b22d0188e90f Import Magento Release 1.6.0.0-rc2
613dacef60ee3522884565c79ccba6108077cdd4 Import Magento Release 1.6.0.0-rc1
1efcc4045a5a421bc1778d08eea5c9a5fcce54af Import Magento Release 1.6.0.0-beta1
a562c7f972d3809ef933a69dc58283b2dd85cb25 Import Magento Release 1.6.0.0-alpha1
af7311d7344ffb334c7b0f5cb7edf3c297fb9de9 Import Magento Release 1.5.1.0
22c766007b346c7b126659036a6740352b5c7438 Import Magento Release 1.5.0.1
88e2a6b3c1c77f89801991c1e1a5c349e87335ad Fixing missing files
2352cfb3463687de7bcf50e7633b558cf5b0866c Import Magento Release 1.5.0.0
d7bb2890441ed8d12f90c707ef071aa3c4144db2 Import Magento Release 1.5.0.0-rc2
69d36dfcfe8ef2bc79cb8ce6faa650e0109b4f4a Import Magento Release 1.5.0.0-rc1
52e6ef613622bb14c8fcc2f344b492fc8be26331 Import Magento Release 1.5.0.0-beta2
598ebd8b870689a5c7452cbb38f6de7249dada65 Import Magento Release 1.5.0.0-beta1
06633113ac8e4b3d7c49ef670cfdf03751d360e0 Import Magento Release 1.5.0.0-alpha2
f3e3f62792696d5d7172346754e92e3d20f838bb Import Magento Release 1.5.0.0-alpha1
b7dc90c8630a7584451503009c193036d7bfb2dc Import Magento Release 1.4.2.0
9bb265e3f4e65c26ec99725cd8e611a8ed6d5470 Import Magento Release 1.4.1.1
960045c285e98c6820fecf54ea552039d516d821 Import Magento Release 1.4.1.0
52438d74da2f6c4b4f2de44df58dcc84b238d983 Import Magento 1.4.0.1
61c419b054485505b67b498cfb3f297890c08644 Import Magento 1.4.0.0
473b8446906c4a55511fed02edeef3fcf3fa81d1 Import Magento 1.4.0.0-rc1
788d81fd55312f0d7d462ef10f0317f9a08fab71 Import Magento 1.4.0.0-beta1
84a1ea63bc543dcddcb7c2b829f00b9357eb3b26 Import Magento 1.4.0.0-alpha3
7d6c5167626151ed1a687cff5de5930331517e0a Import Magento 1.4.0.0-alpha2
f7e4e00a6f10431d01306d51601ccd90b56da8c3 Import Magento 1.4.0.0-alpha1
e1e0826b969b736e58b2bc6cf5daa5ea653c8971 Reverting magento-1.4.0.0-alpha1 thru magento-1.4.0.0-rc1 commits
0ffeefecacb66571758e6954a809bbbb84f8cc05 Import Magento 1.4.0.0-rc1
dd50889e8f5d60840a50d4d0217ff1ae8b23a8d9 Import Magento 1.4.0.0-beta1
52967abf0a4d1e0d429fa4e30a1634d91631a16e Import Magento 1.4.0.0-alpha3
21ef79d141b55646b66a3690a053ca0bf3761daf Import Magento 1.4.0.0-alpha2
f97dcaad6de46e1af5105a15dc31f18a02357538 Import Magento 1.4.0.0-alpha1
e3b8ddb928a0cd48b8fb6254cc6c2f406370160e Import Magento Release 1.3.2.4
69c3ea0b2c406b728fdca102442faeda2c666c72 Import Magento Release 1.3.2.3
0a542b38fe5256b725419d4659142632016ada0b Import Magento Release 1.3.2.2
0befb41b043894f563234458739b607f0c18421b Import Magento Release 1.3.2.1
81117fa6ce534ecd6cd10548824d090839c0da6c Import Magento Release 1.3.2
f32ebf0da6b30f0bd9e86d3a4fd42b663f0c1c63 Import Magento Release 1.3.2
d583154b7100c798ad2ba0380fe4985c1b75f0b8 Import Magento Release 1.3.1.1
58cb15843d45c8cc5704f1c04bd0a1ffc9182f12 Import Magento Release 1.3.1
c6d0972885a76513dd44f9d732ca956876b148e0 Import Magento Release 1.3.0
4cf6b334fc991533f9aa4d62012d5915d2070e72 Import Magento Release 1.2.1.2
7e3cf77d887f50bf4e4ec65d7730ae19c5851519 Import Magento Release 1.2.1.1
1529574e248b029c8b9ed17c4063493b5502afa7 Adding in repo level ignore file to prevent accidental commits containing dynamic data
7496292af850da56b65940d9bfec48437da5be38 Import Magento Release 1.2.1
aadc3fa99ab555beeb3d143ffa5554c4fd8cd146 Import Magento Release 1.2.0.3
1f631b055f8f1ecf320fcd9b39a3870b147a6b7f Import Magento Release 1.2.0.2
c55a10aa5c17f581788754b915f29a7164fc37d7 Import Magento Release 1.2.0.1
1588b75a54bf43e135de2468b266b0edec0fde28 Import Magento Release 1.2.0
46332515d09cd275c64c4169db5d655e84948d1d Import Magento Release 1.1.8
9ebaba07e29a8c2df383f787c7d0b7e7f760b43a Import Magento Release 1.1.7
6bfe398c828919bc89145b6b3239e9bf1c0ac3f6 Import Magento Release 1.1.6
3fed190db0ef24d0f51972ee20bd84c253c4c32f Import Magento Release 1.1.5
5b1e92d8945ec184a47cb86d1e6c24d8c7aefa11 Import Magento Release 1.1.4
b5a5fba309779218afc38b2454fc3ad31d5bba50 Import Magento Release 1.1.3
281571058b913e10068d9f9d330d2af43b293fa1 Import Magento Release 1.1.2
d19f0e13d3d2fcbcc2d8fa6073568d5f95442470 Import Magento Release 1.1.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment