-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE_NOTES.txt
6249 lines (5919 loc) · 427 KB
/
RELEASE_NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==== 1.6.1.0 ====
=== Major Highlights ===
Added two-step password reset flow
=== Improvements ===
XmlConnect package release v22.0
Added support for using Shift-Click to select a range of grid rows when clicking check boxes
Added ability to register during checkout when using PayPal Express
Updated PayflowLink HSS user interface in checkout
"Add to Wishlist", "Add to Compare" were added on the Product Details Page for configurable, bundled and downloadable products
Updated webservices API
=== Changes ===
TheFind integration was removed
Google Optimizer was removed (it will be supported as a core extension)
Improved how discounts are applied to sub products
=== Fixes ===
Fixed Incorrect tax summary if taxes applied has different priorities
Fixed Shipping method extension after disable module returns error
Fixed Approved Review of a product is not displayed in the catalog
Fixed Special price is not considered for bundle dynamic products in "Your Customization" block
Fixed Incorrect behavior of changing quantity for composite products in Wishlist tab of customer's page in backend
Fixed MAP: Exc. Tax. amount is not shown on product's page when set apply map = 'On Gesture'
Fixed There has been an error processing your request is displayed by searching in Manage Checkout Terms and Conditions
Fixed Button Reorder is absent when Order contains Configurable product
Fixed Unable to place order if several tax rates with different priorities applied to bundle product
Fixed Incorrect Tracking Request to shipping carrier (in case with FedEx)
Fixed 'Click for price' not clickable after pressing 'Review' link in category
Fixed XML Connect: Impossible to submit application
Fixed MAP: with IE8 JS error appears in catalog
Fixed Error message appears after successful checkout with PayPal Express Checkout on IE9
Fixed Incorrect invoice document creation behaviour for bundle dynamic product
Fixed XML Connect: Impossible to save template
Fixed Wrong focusing in WYSIWYG on IE9, impossible to save data after inserting content
Fixed Unable to set zero price for item in bundle product
Fixed Incorrect tax summary if several tax rates with different priorities applied to bundle product
Fixed Unable to create order from backend if Tax Calculation Method Based On = Unit Price/Row Total
Fixed Incorrect Tracking Request to shipping carrier (in case with FedEx)
Fixed Incorrect tax summary for partial documents if Tax Calculation Method Based On = Row Total/Unit Price
Fixed Problems with partial authorization process (Authorize.net) during Admin Order creation
Fixed Incorrect HTML markup of Installer page in IE7 and IE9
Fixed "Apply Rules" button works incorrect in some cases
Fixed Incorrect behavior of changing quantity for composite products in Wishlist tab of customer's page in backend
Fixed Incorrect tax summary if product prices exclude tax
Fixed Redirect to blank page, when click Add Wishlist on the Bundle product page
Fixed Reviews not showing in category list page
Fixed QTY is wrong calculated for Bundle, Virtual, Simple, Configurable, Downloadable products after editing them in wishlist
Fixed Customer is redirected to shopping cart page instead to the "Ship to Multiple Addresses" page after login or register as a new customer
Fixed Configurable product with selected option is deleted from wishlist after updating another configurable product
Fixed After redirecting to product using tag 'click for price' doesn't work
Fixed "Notify for Quantity Below" doesn't work
Fixed Pending Reviews RSS doesn't show reviews, created for products, that are assigned not to Main Website
Fixed Authorize Direct Post: no successful notification about place order if do 'Edit' or 'Reorder'
Fixed Impossible to place Order with Payfowlink when Payment Action = Sale
Fixed Poll shows incorrect percentage
Fixed Message 'Cannot specify wishlist item.' is displayed by configuring products in wishlist in back-end
Fixed Billing Agreements: Order status is not updated if do actions from sandbox PayPal account
Fixed Additional authorization transaction is not displayed in Order's Transactions tab
Fixed Unable to update already created role by Admin
Fixed CDN Secure URL is used instead of non-secure
Fixed Attributes name disappeared during sorting
Fixed Typo in app/design/adminhtml/default/default/template/paypal/system/config/payflowlink/info.phtml
Fixed Report of Reviews shows all customer reviews when select certain user
Fixed Address Line Formats Incorrectly on PDF Invoices
Fixed Can't search transactions by order_id in manager.paypal.com
Fixed Wishlist Index Controller does unneeded logging of exception
Fixed Incorrect SQL generated in review product collection resource
Fixed Added shipping address rates collecting schedule for shipping method when shipping information step bypassed
Fixed Customer marked as guest in "Newsletter Subscribers" grid, after subscribing to newsletters in Google Checkout
Fixed Error is displayed by unchecking "Same As Billing Address" by creating order in admin
Fixed Tooltip doesn't appear if you put mouse pointer in to disabled package type field (in case with USPS Domestic)
Fixed Unable to select custom theme with underscores in name when creating a widget instance
Fixed When Redirect to Shopping Cart = No, choosing Remove item from shopping cart sidebar while editing an item leads to endless redirect loop
Fixed Saved CC form is not displayed, when there are no other available payment methods except Saved CC
Fixed It's impossible to create Catalog Price Rule
Fixed Fatal error on Multiple Addresses Checkout
Fixed Package Types that not available for current Shipping Method displayed in Create Packages pop-up
Fixed Stock item product getter not correspond to product setter
- added method getProduct()
Fixed Admin user interface: mistakes in labels names
Fixed Typo in Mage_Eav_Model_Resource_Entity_Attribute_Option model
Fixed Billing Agreement error
Fixed Payflow Link UI Changes
Fixed 'Website Payments Pro' impossible to place order during onepage checkout
Fixed Table rates works incorrect with asterisk
Fixed Typo in Category Resource Model
Fixed 3D secure with Saved CC works incorrectly
- removed unrelated message which told validation failed (even if it has actually succeeded) when trying to re-validate a card
Fixed Bug in Role Permission
Fixed Orders placed via Google Checkout were not created on the Magento side
Fixed When using direct Export, the _super_product_sku and _super_product_option on the configurable product does not match
Fixed Composite product price in grid is displayed incorrectly with some currencies due to JS regexp problem
Fixed No error message on Payflow link iframe
Fixed Flex uploader elements overlaps hovering menu items in backend
Fixed Unable to upload images in Magento installed on local server
Fixed Configurable Products - Use Default (attribute name) does not work correctly on IE9
Fixed Capture failed when Verification Authorization Amount is set to Zero
Fixed Attribute is sorted like a string even when Input Validation for Store Owner is an Integer Number
Fixed Void and Cancel Order doesn't work (PayflowLink HSS)
Fixed Grand Total (Excl Tax) with negative value displays in the printed Credit Memo
Fixed Resource model of Media module is wrongly declared
Fixed Constraint violation with core_cache_tag table
Fixed Misprint in \downloader\lib\Mage\Connect\Validator.php
Fixed XMLRPC API attribute status changing
Fixed Typo in Mage_Rss_Block_Catalog_Category::_toHtml() method
Fixed Incorrect tax summary for partial credit memos/invoices
Fixed SSL is not used for links in email templates when admin area is configured to use HTTPS
Fixed Incorrect style on product page
Fixed Error is displayed by editing product or by creating product on back-end in IE8
Fixed Catalog price rules for composite products changes
Fixed Moving modules to the correct place
Fixed Wishlist shows items per store scope, not website
Fixed Products in Wishlist disappears, when Store View is changed
Fixed Wrong Comments History in notification of order creation/cancellation
Fixed In AJAX popup fields "From" and "To" have behavior as mandatory fields
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed Product price lower than 0 (after catalog price rule applying)
Fixed Google Checkout throws error if Zip Range is used for Tax Rate
- changed part of XML request to Google responsible for postal codes
- made changes to correctly fetch tax rules for postal code ranges
Fixed Website config object is not being cached
Fixed Select groups in grid view doesn't work under IE7
Fixed No products name in Popular tags report file .csv
Fixed Qty Increments should work when it was defined in the default scope configuration
Fixed Products in catalog displays as "out of stock"
Fixed "Get help for this page" in each tab under System->Configuration links to the same help page
Fixed Unable to translate submenu
Fixed Redirect to main page of front-end during deleting Product Tax Class which is used in Tax Rule
Fixed Redirect to base URL should consider full request URI string
Fixed Incorrect transparency of PNG image in indexed non-alpha mode
Fixed Problem of generation URL between different domains
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit Order without creating new one functionality saves invalid changes in non-default customer address attributes
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Admin can Reorder order with status On Hold
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Tax not displaying on PayPal side for Express orders
Fixed Wishlist: Not configured grouped product has unneeded link "Show Details"
Fixed Removed the ability to work with customise admin url through the parameter base_url
Fixed Roles not displaying selected resources
Fixed Unable to use Import when compiler is enabled
Fixed Missing Translation Capability in Transactional Email Variable
Fixed productConfigure is undefined error is occurred during creation Order in Backend in IE8 browser
Fixed Zend Full Page Cache. Lifetime of the cookie is not equal to specified on "Cookie Lifetime" field
Fixed Incorrect price values for Bundle Product
Fixed Link does not pass validation if ends with .html
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect reports with updated_at filter
Fixed paypal_payment_transaction_clean job takes credentials form default config instead of website for Payflow Link
Fixed Wrong schedule time setup for paypal_payment_transaction_clean job for Payflow Link
Fixed Backend Error message "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'qwe' for key 2" appears after saving new Email Template with existing name
Fixed Rule Conditions logic
Fixed Error appears after Customer Group saving with name length more than 32
Fixed Category product index run time
Fixed Sidebar cart is missing composite product options on category page
Fixed Missed validation for space character at the begin of unique fields
- improved validation of Attribute Set Name and validation of unique fields in Mage_Core_Model_Resource_Db_Abstract class
Fixed Ability to input uppercase, space, specials symbols in Order Status Code
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed No ability to create Shipping Label with "plus-four codes" Zip Code (in case with USPS Domestic)
Fixed Changing language twice -> Error 404
Fixed The sort order in products page doesn't work
Fixed When a grouped product with configured price=0 is added to the wishlist and shared, adding the product to the cart leads to 404 error
Fixed Media Saves Incorrect Cached Config
- added options that disallow saving cache
Fixed Bundle Product items shows randomly instead of according to option
Fixed Ajax loader does not appears after click on Verify Card on Payflow Link
Fixed "Google Checkout - Carrier" in Magento backend as shipping method rather than the actual shipping method chosen
Fixed JavaScript error appears in checkout because of PSC after press 'Proceed to Checkout'
Fixed Admin user interface: mistakes in labels names
Fixed Problems with grid sorting on edit customer backend page
Fixed It is possible to change the price of the Bundle product from fixed to the dynamic at my store
Fixed Set special price via Catalog Product API is not working
Fixed Price is wrong calculated for bundle product with a zero price for its items on product details page
- subitem price calculation were fixed
Fixed Layout issue appears in IE9 on the grids (example Customers)
Fixed Impossible to press 'Continue' button to place in onepage
Fixed "Add to Wishlist", "Add to Compare" aren't presented for Configurable, bundle, downloadable, simple products on Product Details Page
Fixed Register during checkout with PayPal Express Checkout
Fixed Extension Packager does not read recursive directory if include expression use file mask
Fixed Newsletter Subscription Confirmation Message
Fixed Discount is wrong calculated for Shopping Cart Price Rules when some of them created with Coupon and another without Coupon
Fixed Subtotal (Incl.Tax) on invoices must not include tax applied to shipping amount
- shippingTax amount were excluded from subTotal value
Fixed "Maximum shipping amount allowed to refund" message shows amount excl. tax if Display Shipping Amount set to Including Tax
- adjusted function to include tax into allowed amount for shipping refund
Fixed Display Out of Stock Products must not be considered during admin order creation
Fixed Check box is not working correctly under "prices" of the Bundle products
Fixed CSS class missing
Fixed Frontend: JavaScript error appears if user registered on Checkout Page
Fixed Website config object is not being cached
- added functionality for memcache backend to split down data that is larger than slab size into chunks
Fixed Removed the ability to work with base_url
Fixed Custom design should be updated via import functionality
Fixed JS error during onepage checkout
Fixed Unable to translate "First name" and "Last name" fields on "Create an Account" page
Fixed After upgrading dashboard "Top 5 Search Terms" grid doesn't show search terms
==== 1.6.1.0-rc1 ====
=== Major Highlights ===
Added two-step password reset flow
=== Improvements ===
XmlConnect package release v22.0
Added support for using Shift-Click to select a range of grid rows when clicking check boxes
Added ability to register during checkout when using PayPal Express
Updated PayflowLink HSS user interface in checkout
"Add to Wishlist", "Add to Compare" were added on the Product Details Page for configurable, bundled and downloadable products
=== Changes ===
TheFind integration was removed
Google Optimizer was removed (it will be supported as a core extension)
Improved how discounts are applied to sub products
=== Fixes ===
Fixed Incorrect behavior of changing quantity for composite products in Wishlist tab of customer's page in backend
Fixed Incorrect tax summary if product prices exclude tax
Fixed Redirect to blank page, when click Add Wishlist on the Bundle product page
Fixed Reviews not showing in category list page
Fixed QTY is wrong calculated for Bundle, Virtual, Simple, Configurable, Downloadable products after editing them in wishlist
Fixed Customer is redirected to shopping cart page instead to the "Ship to Multiple Addresses" page after login or register as a new customer
Fixed Configurable product with selected option is deleted from wishlist after updating another configurable product
Fixed After redirecting to product using tag 'click for price' doesn't work
Fixed "Notify for Quantity Below" doesn't work
Fixed Pending Reviews RSS doesn't show reviews, created for products, that are assigned not to Main Website
Fixed Authorize Direct Post: no successful notification about place order if do 'Edit' or 'Reorder'
Fixed Impossible to place Order with Payfowlink when Payment Action = Sale
Fixed Poll shows incorrect percentage
Fixed Message 'Cannot specify wishlist item.' is displayed by configuring products in wishlist in back-end
Fixed Billing Agreements: Order status is not updated if do actions from sandbox PayPal account
Fixed Additional authorization transaction is not displayed in Order's Transactions tab
Fixed Unable to update already created role by Admin
Fixed CDN Secure URL is used instead of non-secure
Fixed Attributes name disappeared during sorting
Fixed Typo in app/design/adminhtml/default/default/template/paypal/system/config/payflowlink/info.phtml
Fixed Report of Reviews shows all customer reviews when select certain user
Fixed Address Line Formats Incorrectly on PDF Invoices
Fixed Can't search transactions by order_id in manager.paypal.com
Fixed Wishlist Index Controller does unneeded logging of exception
Fixed Incorrect SQL generated in review product collection resource
Fixed Added shipping address rates collecting schedule for shipping method when shipping information step bypassed
Fixed Customer marked as guest in "Newsletter Subscribers" grid, after subscribing to newsletters in Google Checkout
Fixed Error is displayed by unchecking "Same As Billing Address" by creating order in admin
Fixed Tooltip doesn't appear if you put mouse pointer in to disabled package type field (in case with USPS Domestic)
Fixed Unable to select custom theme with underscores in name when creating a widget instance
Fixed When Redirect to Shopping Cart = No, choosing Remove item from shopping cart sidebar while editing an item leads to endless redirect loop
Fixed Saved CC form is not displayed, when there are no other available payment methods except Saved CC
Fixed It's impossible to create Catalog Price Rule
Fixed Fatal error on Multiple Addresses Checkout
Fixed Package Types that not available for current Shipping Method displayed in Create Packages pop-up
Fixed Stock item product getter not correspond to product setter
- added method getProduct()
Fixed Admin user interface: mistakes in labels names
Fixed Typo in Mage_Eav_Model_Resource_Entity_Attribute_Option model
Fixed Billing Agreement error
Fixed Payflow Link UI Changes
Fixed 'Website Payments Pro' impossible to place order during onepage checkout
Fixed Table rates works incorrect with asterisk
Fixed Typo in Category Resource Model
Fixed 3D secure with Saved CC works incorrectly
- removed unrelated message which told validation failed (even if it has actually succeeded) when trying to re-validate a card
Fixed Bug in Role Permission
Fixed Orders placed via Google Checkout were not created on the Magento side
Fixed When using direct Export, the _super_product_sku and _super_product_option on the configurable product does not match
Fixed Composite product price in grid is displayed incorrectly with some currencies due to JS regexp problem
Fixed No error message on Payflow link iframe
Fixed Flex uploader elements overlaps hovering menu items in backend
Fixed Unable to upload images in Magento installed on local server
Fixed Configurable Products - Use Default (attribute name) does not work correctly on IE9
Fixed Capture failed when Verification Authorization Amount is set to Zero
Fixed Attribute is sorted like a string even when Input Validation for Store Owner is an Integer Number
Fixed Void and Cancel Order doesn't work (PayflowLink HSS)
Fixed Grand Total (Excl Tax) with negative value displays in the printed Credit Memo
Fixed Resource model of Media module is wrongly declared
Fixed Constraint violation with core_cache_tag table
Fixed Misprint in \downloader\lib\Mage\Connect\Validator.php
Fixed XMLRPC API attribute status changing
Fixed Typo in Mage_Rss_Block_Catalog_Category::_toHtml() method
Fixed Incorrect tax summary for partial credit memos/invoices
Fixed SSL is not used for links in email templates when admin area is configured to use HTTPS
Fixed Incorrect style on product page
Fixed Error is displayed by editing product or by creating product on back-end in IE8
Fixed Catalog price rules for composite products changes
Fixed Moving modules to the correct place
Fixed Wishlist shows items per store scope, not website
Fixed Products in Wishlist disappears, when Store View is changed
Fixed Wrong Comments History in notification of order creation/cancellation
Fixed In AJAX popup fields "From" and "To" have behavior as mandatory fields
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed Product price lower than 0 (after catalog price rule applying)
Fixed Google Checkout throws error if Zip Range is used for Tax Rate
- changed part of XML request to Google responsible for postal codes
- made changes to correctly fetch tax rules for postal code ranges
Fixed Website config object is not being cached
Fixed Select groups in grid view doesn't work under IE7
Fixed No products name in Popular tags report file .csv
Fixed Qty Increments should work when it was defined in the default scope configuration
Fixed Products in catalog displays as "out of stock"
Fixed "Get help for this page" in each tab under System->Configuration links to the same help page
Fixed Unable to translate submenu
Fixed Redirect to main page of front-end during deleting Product Tax Class which is used in Tax Rule
Fixed Redirect to base URL should consider full request URI string
Fixed Incorrect transparency of PNG image in indexed non-alpha mode
Fixed Problem of generation URL between different domains
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit Order without creating new one functionality saves invalid changes in non-default customer address attributes
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Admin can Reorder order with status On Hold
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Tax not displaying on PayPal side for Express orders
Fixed Wishlist: Not configured grouped product has unneeded link "Show Details"
Fixed Removed the ability to work with customise admin url through the parameter base_url
Fixed Roles not displaying selected resources
Fixed Unable to use Import when compiler is enabled
Fixed Missing Translation Capability in Transactional Email Variable
Fixed productConfigure is undefined error is occurred during creation Order in Backend in IE8 browser
Fixed Zend Full Page Cache. Lifetime of the cookie is not equal to specified on "Cookie Lifetime" field
Fixed Incorrect price values for Bundle Product
Fixed Link does not pass validation if ends with .html
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect reports with updated_at filter
Fixed paypal_payment_transaction_clean job takes credentials form default config instead of website for Payflow Link
Fixed Wrong schedule time setup for paypal_payment_transaction_clean job for Payflow Link
Fixed Backend Error message "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'qwe' for key 2" appears after saving new Email Template with existing name
Fixed Rule Conditions logic
Fixed Error appears after Customer Group saving with name length more than 32
Fixed Category product index run time
Fixed Sidebar cart is missing composite product options on category page
Fixed Missed validation for space character at the begin of unique fields
- improved validation of Attribute Set Name and validation of unique fields in Mage_Core_Model_Resource_Db_Abstract class
Fixed Ability to input uppercase, space, specials symbols in Order Status Code
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed No ability to create Shipping Label with "plus-four codes" Zip Code (in case with USPS Domestic)
Fixed Changing language twice -> Error 404
Fixed The sort order in products page doesn't work
Fixed When a grouped product with configured price=0 is added to the wishlist and shared, adding the product to the cart leads to 404 error
Fixed Media Saves Incorrect Cached Config
- added options that disallow saving cache
Fixed Bundle Product items shows randomly instead of according to option
Fixed Ajax loader does not appears after click on Verify Card on Payflow Link
Fixed "Google Checkout - Carrier" in Magento backend as shipping method rather than the actual shipping method chosen
Fixed JavaScript error appears in checkout because of PSC after press 'Proceed to Checkout'
Fixed Admin user interface: mistakes in labels names
Fixed Problems with grid sorting on edit customer backend page
Fixed It is possible to change the price of the Bundle product from fixed to the dynamic at my store
Fixed Set special price via Catalog Product API is not working
Fixed Price is wrong calculated for bundle product with a zero price for its items on product details page
- subitem price calculation were fixed
Fixed Layout issue appears in IE9 on the grids (example Customers)
Fixed Impossible to press 'Continue' button to place in onepage
Fixed "Add to Wishlist", "Add to Compare" aren't presented for Configurable, bundle, downloadable, simple products on Product Details Page
Fixed Register during checkout with PayPal Express Checkout
Fixed Extension Packager does not read recursive directory if include expression use file mask
Fixed Newsletter Subscription Confirmation Message
Fixed Discount is wrong calculated for Shopping Cart Price Rules when some of them created with Coupon and another without Coupon
Fixed Subtotal (Incl.Tax) on invoices must not include tax applied to shipping amount
- shippingTax amount were excluded from subTotal value
Fixed "Maximum shipping amount allowed to refund" message shows amount excl. tax if Display Shipping Amount set to Including Tax
- adjusted function to include tax into allowed amount for shipping refund
Fixed Display Out of Stock Products must not be considered during admin order creation
Fixed Check box is not working correctly under "prices" of the Bundle products
Fixed CSS class missing
Fixed Frontend: JavaScript error appears if user registered on Checkout Page
Fixed Website config object is not being cached
- added functionality for memcache backend to split down data that is larger than slab size into chunks
Fixed Removed the ability to work with base_url
Fixed Custom design should be updated via import functionality
Fixed JS error during onepage checkout
Fixed Unable to translate "First name" and "Last name" fields on "Create an Account" page
Fixed After upgrading dashboard "Top 5 Search Terms" grid doesn't show search terms
==== 1.6.1.0-beta1 ====
=== Major Highlights ===
Added two-step password reset flow
=== Improvements ===
Added support for using Shift-Click to select a range of grid rows when clicking check boxes
Added ability to register during checkout when using PayPal Express
Updated PayflowLink HSS user interface in checkout
"Add to Wishlist", "Add to Compare" were added on the Product Details Page for configurable, bundled and downloadable products
=== Changes ===
TheFind integration was removed
Google Optimizer was removed (it will be supported as a core extension)
Improved how discounts are applied to sub products
=== Fixes ===
Fixed Saved CC form is not displayed, when there are no other available payment methods except Saved CC
Fixed It's impossible to create Catalog Price Rule
Fixed Fatal error on Multiple Addresses Checkout
Fixed Package Types that not available for current Shipping Method displayed in Create Packages pop-up
Fixed Stock item product getter not correspond to product setter
- added method getProduct()
Fixed Admin user interface: mistakes in labels names
Fixed Typo in Mage_Eav_Model_Resource_Entity_Attribute_Option model
Fixed Billing Agreement error
Fixed Payflow Link UI Changes
Fixed 'Website Payments Pro' impossible to place order during onepage checkout
Fixed Table rates works incorrect with asterisk
Fixed Typo in Category Resource Model
Fixed 3D secure with Saved CC works incorrectly
- removed unrelated message which told validation failed (even if it has actually succeeded) when trying to re-validate a card
Fixed Bug in Role Permission
Fixed Orders placed via Google Checkout were not created on the Magento side
Fixed When using direct Export, the _super_product_sku and _super_product_option on the configurable product does not match
Fixed Composite product price in grid is displayed incorrectly with some currencies due to JS regexp problem
Fixed No error message on Payflow link iframe
Fixed Flex uploader elements overlaps hovering menu items in backend
Fixed Unable to upload images in Magento installed on local server
Fixed Configurable Products - Use Default (attribute name) does not work correctly on IE9
Fixed Capture failed when Verification Authorization Amount is set to Zero
Fixed Attribute is sorted like a string even when Input Validation for Store Owner is an Integer Number
Fixed Void and Cancel Order doesn't work (PayflowLink HSS)
Fixed Grand Total (Excl Tax) with negative value displays in the printed Credit Memo
Fixed Resource model of Media module is wrongly declared
Fixed Constraint violation with core_cache_tag table
Fixed Misprint in \downloader\lib\Mage\Connect\Validator.php
Fixed XMLRPC API attribute status changing
Fixed Typo in Mage_Rss_Block_Catalog_Category::_toHtml() method
Fixed Incorrect tax summary for partial credit memos/invoices
Fixed SSL is not used for links in email templates when admin area is configured to use HTTPS
Fixed Incorrect style on product page
Fixed Error is displayed by editing product or by creating product on back-end in IE8
Fixed Catalog price rules for composite products changes
Fixed Moving modules to the correct place
Fixed Wishlist shows items per store scope, not website
Fixed Products in Wishlist disappears, when Store View is changed
Fixed Wrong Comments History in notification of order creation/cancellation
Fixed In AJAX popup fields "From" and "To" have behavior as mandatory fields
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed Product price lower than 0 (after catalog price rule applying)
Fixed Google Checkout throws error if Zip Range is used for Tax Rate
- changed part of XML request to Google responsible for postal codes
- made changes to correctly fetch tax rules for postal code ranges
Fixed Website config object is not being cached
Fixed Select groups in grid view doesn't work under IE7
Fixed No products name in Popular tags report file .csv
Fixed Qty Increments should work when it was defined in the default scope configuration
Fixed Products in catalog displays as "out of stock"
Fixed "Get help for this page" in each tab under System->Configuration links to the same help page
Fixed Unable to translate submenu
Fixed Redirect to main page of front-end during deleting Product Tax Class which is used in Tax Rule
Fixed Redirect to base URL should consider full request URI string
Fixed Incorrect transparency of PNG image in indexed non-alpha mode
Fixed Problem of generation URL between different domains
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit Order without creating new one functionality saves invalid changes in non-default customer address attributes
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Admin can Reorder order with status On Hold
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Tax not displaying on PayPal side for Express orders
Fixed Wishlist: Not configured grouped product has unneeded link "Show Details"
Fixed Removed the ability to work with customise admin url through the parameter base_url
Fixed Roles not displaying selected resources
Fixed Unable to use Import when compiler is enabled
Fixed Missing Translation Capability in Transactional Email Variable
Fixed productConfigure is undefined error is occurred during creation Order in Backend in IE8 browser
Fixed Zend Full Page Cache. Lifetime of the cookie is not equal to specified on "Cookie Lifetime" field
Fixed Incorrect price values for Bundle Product
Fixed Link does not pass validation if ends with .html
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect reports with updated_at filter
Fixed paypal_payment_transaction_clean job takes credentials form default config instead of website for Payflow Link
Fixed Wrong schedule time setup for paypal_payment_transaction_clean job for Payflow Link
Fixed Backend Error message "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'qwe' for key 2" appears after saving new Email Template with existing name
Fixed Rule Conditions logic
Fixed Error appears after Customer Group saving with name length more than 32
Fixed Category product index run time
Fixed Sidebar cart is missing composite product options on category page
Fixed Missed validation for space character at the begin of unique fields
- improved validation of Attribute Set Name and validation of unique fields in Mage_Core_Model_Resource_Db_Abstract class
Fixed Ability to input uppercase, space, specials symbols in Order Status Code
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed No ability to create Shipping Label with "plus-four codes" Zip Code (in case with USPS Domestic)
Fixed Changing language twice -> Error 404
Fixed The sort order in products page doesn't work
Fixed When a grouped product with configured price=0 is added to the wishlist and shared, adding the product to the cart leads to 404 error
Fixed Media Saves Incorrect Cached Config
- added options that disallow saving cache
Fixed Bundle Product items shows randomly instead of according to option
Fixed Unable to place order with Payflow Link if store credit or reward point applied
Fixed Ajax loader does not appears after click on Verify Card on Payflow Link
Fixed "Google Checkout - Carrier" in Magento backend as shipping method rather than the actual shipping method chosen
Fixed JavaScript error appears in checkout because of PSC after press 'Proceed to Checkout'
Fixed Admin user interface: mistakes in labels names
Fixed Problems with grid sorting on edit customer backend page
Fixed It is possible to change the price of the Bundle product from fixed to the dynamic at my store
Fixed Set special price via Catalog Product API is not working
Fixed Price is wrong calculated for bundle product with a zero price for its items on product details page
- subitem price calculation were fixed
Fixed Layout issue appears in IE9 on the grids (example Customers)
Fixed Impossible to press 'Continue' button to place in onepage
Fixed "Add to Wishlist", "Add to Compare" aren't presented for Configurable, bundle, downloadable, simple products on Product Details Page
Fixed Register during checkout with PayPal Express Checkout
Fixed Extension Packager does not read recursive directory if include expression use file mask
Fixed Newsletter Subscription Confirmation Message
Fixed Discount is wrong calculated for Shopping Cart Price Rules when some of them created with Coupon and another without Coupon
Fixed Subtotal (Incl.Tax) on invoices must not include tax applied to shipping amount
- shippingTax amount were excluded from subTotal value
Fixed "Maximum shipping amount allowed to refund" message shows amount excl. tax if Display Shipping Amount set to Including Tax
- adjusted function to include tax into allowed amount for shipping refund
Fixed Display Out of Stock Products must not be considered during admin order creation
Fixed Check box is not working correctly under "prices" of the Bundle products.
Fixed CSS class missing
Fixed Frontend: JavaScript error appears if user registered on Checkout Page
Fixed Website config object is not being cached
- added functionality for memcache backend to split down data that is larger than slab size into chunks
Fixed Removed the ability to work with base_url
Fixed Custom design should be updated via import functionality
Fixed JS error during onepage checkout
Fixed Unable to translate "First name" and "Last name" fields on "Create an Account" page
Fixed After upgrading dashboard "Top 5 Search Terms" grid doesn't show search terms
==== 1.6.1.0-alpha1 ====
=== Major Highlights ===
Added two-step password reset flow
=== Improvements ===
Added support for using Shift-Click to select a range of grid rows when clicking check boxes
Added ability to register during checkout when using PayPal Express
Updated PayflowLink HSS user interface in checkout
"Add to Wishlist", "Add to Compare" were added on the Product Details Page for configurable, bundled and downloadable products
=== Changes ===
TheFind integration was removed
Google Optimizer was removed (it will be supported as a core extension)
Improved how discounts are applied to sub products
=== Fixes ===
Fixed When using direct Export, the _super_product_sku and _super_product_option on the configurable product does not match
Fixed Composite product price in grid is displayed incorrectly with some currencies due to JS regexp problem
Fixed No error message on Payflow link iframe
Fixed Flex uploader elements overlaps hovering menu items in backend
Fixed Unable to upload images in Magento installed on local server
Fixed Configurable Products - Use Default (attribute name) does not work correctly on IE9
Fixed Capture failed when Verification Authorization Amount is set to Zero
Fixed Attribute is sorted like a string even when Input Validation for Store Owner is an Integer Number
Fixed Void and Cancel Order doesn't work (PayflowLink HSS)
Fixed Grand Total (Excl Tax) with negative value displays in the printed Credit Memo
Fixed Resource model of Media module is wrongly declared
Fixed Constraint violation with core_cache_tag table
Fixed Misprint in \downloader\lib\Mage\Connect\Validator.php
Fixed XMLRPC API attribute status changing
Fixed Typo in Mage_Rss_Block_Catalog_Category::_toHtml() method
Fixed Incorrect tax summary for partial credit memos/invoices
Fixed SSL is not used for links in email templates when admin area is configured to use HTTPS
Fixed Incorrect style on product page
Fixed Error is displayed by editing product or by creating product on back-end in IE8
Fixed Catalog price rules for composite products changes
Fixed Moving modules to the correct place
Fixed Wishlist shows items per store scope, not website
Fixed Products in Wishlist disappears, when Store View is changed
Fixed Wrong Comments History in notification of order creation/cancellation
Fixed In AJAX popup fields "From" and "To" have behavior as mandatory fields
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed Product price lower than 0 (after catalog price rule applying)
Fixed Google Checkout throws error if Zip Range is used for Tax Rate
- changed part of XML request to Google responsible for postal codes
- made changes to correctly fetch tax rules for postal code ranges
Fixed Website config object is not being cached
Fixed Select groups in grid view doesn't work under IE7
Fixed No products name in Popular tags report file .csv
Fixed Qty Increments should work when it was defined in the default scope configuration
Fixed Products in catalog displays as "out of stock"
Fixed "Get help for this page" in each tab under System->Configuration links to the same help page
Fixed Unable to translate submenu
Fixed Redirect to main page of front-end during deleting Product Tax Class which is used in Tax Rule
Fixed Redirect to base URL should consider full request URI string
Fixed Incorrect transparency of PNG image in indexed non-alpha mode
Fixed Problem of generation URL between different domains
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit Order without creating new one functionality saves invalid changes in non-default customer address attributes
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Admin can Reorder order with status On Hold
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Tax not displaying on PayPal side for Express orders
Fixed Wishlist: Not configured grouped product has unneeded link "Show Details"
Fixed Removed the ability to work with customise admin url through the parameter base_url
Fixed Roles not displaying selected resources
Fixed Unable to use Import when compiler is enabled
Fixed Missing Translation Capability in Transactional Email Variable
Fixed productConfigure is undefined error is occurred during creation Order in Backend in IE8 browser
Fixed Zend Full Page Cache. Lifetime of the cookie is not equal to specified on "Cookie Lifetime" field
Fixed Incorrect price values for Bundle Product
Fixed Link does not pass validation if ends with .html
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect reports with updated_at filter
Fixed paypal_payment_transaction_clean job takes credentials form default config instead of website for Payflow Link
Fixed Wrong schedule time setup for paypal_payment_transaction_clean job for Payflow Link
Fixed Backend Error message "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'qwe' for key 2" appears after saving new Email Template with existing name
Fixed Rule Conditions logic
Fixed Error appears after Customer Group saving with name length more than 32
Fixed Category product index run time
Fixed Sidebar cart is missing composite product options on category page
Fixed Missed validation for space character at the begin of unique fields
- improved validation of Attribute Set Name and validation of unique fields in Mage_Core_Model_Resource_Db_Abstract class
Fixed Ability to input uppercase, space, specials symbols in Order Status Code
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed No ability to create Shipping Label with "plus-four codes" Zip Code (in case with USPS Domestic)
Fixed Changing language twice -> Error 404
Fixed The sort order in products page doesn't work
Fixed When a grouped product with configured price=0 is added to the wishlist and shared, adding the product to the cart leads to 404 error
Fixed Media Saves Incorrect Cached Config
- added options that disallow saving cache
Fixed Bundle Product items shows randomly instead of according to option
Fixed Unable to place order with Payflow Link if store credit or reward point applied
Fixed Ajax loader does not appears after click on Verify Card on Payflow Link
Fixed "Google Checkout - Carrier" in Magento backend as shipping method rather than the actual shipping method chosen
Fixed JavaScript error appears in checkout because of PSC after press 'Proceed to Checkout'
Fixed Admin user interface: mistakes in labels names
Fixed Problems with grid sorting on edit customer backend page
Fixed It is possible to change the price of the Bundle product from fixed to the dynamic at my store
Fixed Set special price via Catalog Product API is not working
Fixed Price is wrong calculated for bundle product with a zero price for its items on product details page
- subitem price calculation were fixed
Fixed Layout issue appears in IE9 on the grids (example Customers)
Fixed Impossible to press 'Continue' button to place in onepage
Fixed "Add to Wishlist", "Add to Compare" aren't presented for Configurable, bundle, downloadable, simple products on Product Details Page
Fixed Register during checkout with PayPal Express Checkout
Fixed Extension Packager does not read recursive directory if include expression use file mask
Fixed Newsletter Subscription Confirmation Message
Fixed Discount is wrong calculated for Shopping Cart Price Rules when some of them created with Coupon and another without Coupon
Fixed Subtotal (Incl.Tax) on invoices must not include tax applied to shipping amount
- shippingTax amount were excluded from subTotal value
Fixed "Maximum shipping amount allowed to refund" message shows amount excl. tax if Display Shipping Amount set to Including Tax
- adjusted function to include tax into allowed amount for shipping refund
Fixed Display Out of Stock Products must not be considered during admin order creation
Fixed Check box is not working correctly under "prices" of the Bundle products.
Fixed CSS class missing
Fixed Frontend: JavaScript error appears if user registered on Checkout Page
Fixed Website config object is not being cached
- added functionality for memcache backend to split down data that is larger than slab size into chunks
Fixed Removed the ability to work with base_url
Fixed Custom design should be updated via import functionality
Fixed JS error during onepage checkout
Fixed Unable to translate "First name" and "Last name" fields on "Create an Account" page
Fixed After upgrading dashboard "Top 5 Search Terms" grid doesn't show search terms
==== 1.6.x-devel-119961 ====
=== Fixes ===
Fixed Wrong Comments History in notification of order creation/cancellation
Fixed In AJAX popup fields "From" and "To" have behavior as mandatory fields
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed Product price lower than 0 (after catalog price rule applying)
Fixed Google Checkout throws error if Zip Range is used for Tax Rate
- changed part of XML request to Google responsible for postal codes
- made changes to correctly fetch tax rules for postal code ranges
Fixed Website config object is not being cached
Fixed Select groups in grid view doesn't work under IE7
Fixed No products name in Popular tags report file .csv
Fixed Qty Increments should work when it was defined in the default scope configuration
Fixed Products in catalog displays as "out of stock"
Fixed "Get help for this page" in each tab under System->Configuration links to the same help page
Fixed Unable to translate submenu
Fixed Redirect to main page of front-end during deleting Product Tax Class which is used in Tax Rule
Fixed Redirect to base URL should consider full request URI string
==== 1.6.x-devel-119217 ====
=== Fixes ===
Fixed Incorrect transparency of PNG image in indexed non-alpha mode
Fixed Problem of generation URL between different domains
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit Order without creating new one functionality saves invalid changes in non-default customer address attributes
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Admin can Reorder order with status On Hold
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Tax not displaying on PayPal side for Express orders
Fixed Wishlist: Not configured grouped product has unneeded link "Show Details"
Fixed Removed the ability to work with customise admin url through the parameter base_url
Fixed Roles not displaying selected resources
Fixed Unable to use Import when compiler is enabled
Fixed Missing Translation Capability in Transactional Email Variable
Fixed productConfigure is undefined error is occurred during creation Order in Backend in IE8 browser
Fixed Zend Full Page Cache. Lifetime of the cookie is not equal to specified on "Cookie Lifetime" field
Fixed Incorrect price values for Bundle Product
Fixed Link does not pass validation if ends with .html
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect reports with updated_at filter
Fixed paypal_payment_transaction_clean job takes credentials form default config instead of website for Payflow Link
Fixed Wrong schedule time setup for paypal_payment_transaction_clean job for Payflow Link
Fixed Backend Error message "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'qwe' for key 2" appears after saving new Email Template with existing name
Fixed Rule Conditions logic
Fixed Error appears after Customer Group saving with name length more than 32
Fixed Category product index run time
Fixed Sidebar cart is missing composite product options on category page
Fixed Missed validation for space character at the begin of unique fields
- improved validation of Attribute Set Name and validation of unique fields in Mage_Core_Model_Resource_Db_Abstract class
Fixed Ability to input uppercase, space, specials symbols in Order Status Code
Fixed Filter by Allow Countries not working for Customer Address Form in the Backend
Fixed No ability to create Shipping Label with "plus-four codes" Zip Code (in case with USPS Domestic)
Fixed Changing language twice -> Error 404
Fixed The sort order in products page doesn't work
Fixed When a grouped product with configured price=0 is added to the wishlist and shared, adding the product to the cart leads to 404 error
Fixed Media Saves Incorrect Cached Config
- added options that disallow saving cache
Fixed Bundle Product items shows randomly instead of according to option
Fixed Unable to place order with Payflow Link if store credit or reward point applied
Fixed Ajax loader does not appears after click on Verify Card on Payflow Link
Fixed "Google Checkout - Carrier" in Magento backend as shipping method rather than the actual shipping method chosen
Fixed JavaScript error appears in checkout because of PSC after press 'Proceed to Checkout'
Fixed Admin user interface: mistakes in labels names
Fixed Problems with grid sorting on edit customer backend page
Fixed It is possible to change the price of the Bundle product from fixed to the dynamic at my store
Fixed Set special price via Catalog Product API is not working
Fixed Price is wrong calculated for bundle product with a zero price for its items on product details page
- subitem price calculation were fixed
Fixed Layout issue appears in IE9 on the grids (example Customers)
Fixed Impossible to press 'Continue' button to place in onepage
Fixed "Add to Wishlist", "Add to Compare" aren't presented for Configurable, bundle, downloadable, simple products on Product Details Page
Fixed Register during checkout with PayPal Express Checkout
Fixed Extension Packager does not read recursive directory if include expression use file mask
Fixed Newsletter Subscription Confirmation Message
Fixed Discount is wrong calculated for Shopping Cart Price Rules when some of them created with Coupon and another without Coupon
Fixed Subtotal (Incl.Tax) on invoices must not include tax applied to shipping amount
- shippingTax amount were excluded from subTotal value
Fixed "Maximum shipping amount allowed to refund" message shows amount excl. tax if Display Shipping Amount set to Including Tax
- adjusted function to include tax into allowed amount for shipping refund
Fixed Display Out of Stock Products must not be considered during admin order creation
Fixed Check box is not working correctly under "prices" of the Bundle products.
Fixed CSS class missing
Fixed Frontend: JavaScript error appears if user registered on Checkout Page
Fixed Website config object is not being cached
- added functionality for memcache backend to split down data that is larger than slab size into chunks
Fixed Removed the ability to work with base_url
Fixed Custom design should be updated via import functionality
Fixed JS error during onepage checkout
Fixed Unable to translate "First name" and "Last name" fields on "Create an Account" page
Fixed After upgrading dashboard "Top 5 Search Terms" grid doesn't show search terms
==== 1.6.0.0 ====
=== Major Highlights ===
Minimum Advertised Price
Persistent Shopping Cart
Shipping Integration with Label printing support
=== Improvements ===
XmlConnect package release v21
Order Payment Action for Express Checkout (PayPal)
- Added settings Authorization Honor Period and Order Valid Period into EC tab in the backend
- Automatically new authorize transaction created after order transaction
- Automatically cancel order after the expiration of Order Valid Period
- Automatically authorize transaction void\create after the expiration of Authorization Honor Period
Implemented Authorize.Net 'hold for review' status shows up as 'declined' in Magento
Add Dynamic sku option for configurable products
Moneybookers Multistore System Configuration
Moneybookers OBT Defaults
PrototypeJS upgraded to 1.7
=== Changes ===
Removed deprecation.js because its not compatible with prototype 1.7
Relations between models and resource models were revised for better support of multiple databases
- Varien_Db_Adapter_Pdo_Mysql revised
- Introduced Varien_Db_Adapter_Interface, Varien_Db_Ddl_Table
- Introduced new classes named resource helpers
- Backwards comatibility and known issues
-- Error appears after Customer Group saving with name length more than 32
Deprecated GoogleBase module (http://googlemerchantblog.blogspot.com/2010/12/new-shopping-apis-and-deprecation-of.html)
- Google Shopping Extension is available for the replacement
=== Fixes ===
Fixed Google checkout shipping (merchant and carrier calculated) returns only default prices
Fixed Custom option prices for simple products are GLOBAL
- fixed website price scope for simple products when product is linked to few websites with separate store views
Fixed Custom Price for Bundled Product should be disabled in Admin Panel
Fixed Configurable products. Incorrect pricing with super attributes price in percents
- percentage of price is taken from final product price
Fixed Label of system Customer Attribute, that was changed, is not displayed
Fixed Taxes are not correctly calculated if bundle with dynamic price is about to partially return
Fixed No ability to create Shipping Labels with several packages (in case with decimals Qty of products)
Fixed Special symbols as search keywords return error page
Fixed Changes in URL rewrite suffix cannot be reverted
Fixed Taxes are not correctly calculated if bundle with dynamic price is about to partially return
Fixed Product is deleted from shopping cart by editing grouped product
Fixed Product view page doesn't reflect last visited category
Fixed Customer is linked in order even if it is deleted from Magento
Fixed Exception is shown when Email to a Friend page is opened using URL in case when this feature is disabled
Fixed Missing "?" placeholders in class Varien_Cache_Backend_Database
Fixed There are no server side validation of first character of Attribute Code (it should be letter)
Fixed Edit cart item return unnecessary error message
Fixed Product Custom Option values titles are not saved
Fixed Newsletters are not sent
Fixed Preview URL for CMS Pages template contain two question mark
Fixed Partial refund orders with downloadable products affect status of all downloadable links
Fixed AddToCart takes forever if a configurable has massive count of child products
Fixed Mage_Tag_IndexController::saveAction() contains business logic of creating tag relation
Fixed Frontend: If second customer logs in and does not select the "Remember Me" then the previous long-term cookie does not removes
Fixed Frontend: After new customer registration with "Remember Me" and pressing "Logout" the long-term cookie session doesn't apply if in configuration on backend ""Remember Me" Default Value" - No
Fixed Currency problems. Back office TAX calculation on the product edit page
Fixed UPS shipping quotes are incorrect
Fixed Quote CollectTotals performance issue
Fixed PayPal Checkout Error Duplicate Order ID
- added additional exception handling which sets transaction to pending
Fixed In report Products Ordered configurable and its associated simple product appear and are counted
Fixed Multi select attributes not importing/exporting correctly
Fixed Google Bot User Agent and compare product issue
Fixed Bundle price display issue with tier pricing
Fixed No validation of Customs Value field
Fixed Form for adding new customer is shown instead customer's information page
- correct customer ID passed to URL generator
Fixed With IE9 impossible to do drag and drop actions in Admin
- added support of Range.createContextualFragment for IE9
Fixed Countries with no Zip code still have it as required field in address
Fixed Anchor category does not display products from subcategories
Fixed Place of "Options Details" is wrong in wishlist for composite products
Fixed 3D Secure + PayPal Website Payments Pro in UK prevents non-3D secure cards from working
Fixed When creating new order for customer registered on multiple websites, account/website mismatch causes issues
Fixed Shipping method is calculating based on default shipping address instead of 'Same as billing' setting in backend
Fixed Global variables in js.js
Fixed Observers from adminhtml are do not work when use Soap
Fixed Item quantity changed to 1 if added space
Fixed Row total is incorrectly calculated as negative number
Fixed HTML validation fails for pages with multiple grids
Fixed Can not log in to MCM if connect.cfg is incorrect
Fixed Incorrect use of chmod in Varien_Io_File::streamClose()
Fixed Unable to return full amount on PayPal if partial credit memo is done and customer applied Store Credit
Fixed Import Issue when attribute values not unique
Fixed Wrong customer group in order creation process in Admin panel
Fixed "Unable to save invoice" message appears when admin captures money when authorization transaction is no longer valid
Fixed Wishlist doesn't save configured composite products if MAP is enabled
Fixed Empty items grid is present, after deleting last item
Fixed Incorrect Tax Calculation when "Apply Tax On:Original price only" but custom price is not entered
Fixed Unable to place order with Authorize.net Direct Post payment method in IE 9
Fixed Ability to bypass configuration setting for the Admin area URL route
Fixed Ability to create package with decimals Qty of products, for which "Qty Uses Decimals" set to "No"
Fixed Excess semicolon in warning message, during creating Shipping Labels (in case with invalid Packaging Type)
Fixed msrp_display_actual_price_type (MAP:Display Actual Price) field is not exported
Fixed Incorrect Customs Value in Create Packages in case when price value contains decimals
Fixed Incorrect warning message, after Additions products with Qty that exceeds maximum available quantity
Fixed Catalog price rule doesn't work with contains condition and value which contains only cents
Fixed No store base currency beside Customs Value
Fixed Catalog Price Rule not applying to imported products
Fixed Incorrect "Shipper" and "Ship to" information in Shipping Label (in case with UPS)
Fixed Images are not imported via new Import functionality
Fixed Packages Print looks incorrectly
Fixed MAP. In the JS pop-up link "Checkout with PayPal" displayed only under FF
Fixed Extra double-quote in transactional email template app/locale/en_US/template/email/password_new.html
Fixed No ability to create Shipping Label for product with non-integer weight in Ounces (USPS - First-Class Mail International Package)
Fixed Layout issue if RSS is On
Fixed Previous customer information stays on the page header while one page checkout in process
Fixed Out of Stock Configurable product is displayed as In Stock
Fixed In the up-sell products "click to see price" link displayed, when settings "In cart", "Before Order Confirmation" is used
Fixed MAP. On the onepage, in the Wishlist block, link "Click for Price" is not active
Fixed Frontend: the products in Shopping Cart is transferred to other customer, if this customer is logged in in "My Account" page
Fixed Wrong prices are displayed for placed order with downloadable product
Fixed Shipping amount display issue when placing an order on the backend
Fixed Length, Width, Height are not passed to shipping carrier, during package creation (in case with DHL)
Fixed Disabled fields in Create Packages Pop-up with Girth field looks incorrectly
Fixed Customer address that affect tax calculation does not affect persistent customer
Fixed Ability to create more products in Shipping Labels than products in the order/shipment (in case with decimals Qty of products)
Fixed No ability to create Shipping Labels with several packages (in case with decimals Qty of products)
Fixed Formed items grid looks incorrectly, during package creation
Fixed Incorrect total weight of bundle product
Fixed Shopping Cart Rule Not Working Properly
Fixed Javascript error on "forgot your password" validation
Fixed When custom price is applied on an order in the admin, Price Incl tax on the order is the same as Excl tax
Fixed Edit cart item return unnecessary error message
Fixed Unable to save HTML code in attribute options
Fixed In the Wishlist text message appears in 2 rows, when MAP is applied for product that is in the wishlist
Fixed Unable to apply coupon code to order with zero subtotal
Fixed Nonexistent blank option in multiple select form attribute
Fixed Cannot add widget to packages or themes containing underscore in name
Fixed Product's sort order by position works incorrect with negative numbers
- allowed negative numbers
- corrected sorting by position
Fixed Incorrect Grand Total calculation when "Buy X get Y free" discount applied
Fixed Wrong product's quantity in the Wishlist after updating 'Shopping Cart'
Fixed Unneeded URL translation in admin template
Fixed Incorrect subtotal on invoice creation page (Order with Tax and Discount)
- hidden tax amount was added to collect process
Fixed When we add new address to address book during onepage checkout, not shown customer address attributes are taken from saved address attribute value
Fixed Street Address input box missing on create order form in admin
Fixed MAP enabled. In the wishlist block product price displayed when it should not
Fixed Qty field is not disabled if even check-box unselected
Fixed No ability to create Shipping Label with decimals Qty of products (in case with FedEx International)
Fixed FedEx Shipping Method unavailable (in case with Request Courier drop off type)
Fixed Unable to upgrade Magento when installed extension without max version
Fixed Wrong calculation price of Bundle product
- fixed sub item prices calculation
Fixed Incorrect products weight in Shipping Label (in case with USPS Int.,FedEx Int. and decimal Qty)
Fixed Gateway URL Absent in FedEx Shipping Module
Fixed Google checkout shipping (merchant and carrier calculated) returns only default prices
Fixed Frontend: the products in the Shopping Cart is not transferred to other customer, if this customer is logged in or register after clicks on "Checkout with Multiple Addresses", "Google Checkout" or "PayPal"
Fixed Unable to login to site after adding SID to URL
Fixed Image in description doesn't shown in compare grid
Fixed Missed validation for space charter in begin of unique fields
Fixed Impossible to sort blocks
Fixed Incorrect behavior of Offline Refunds for an Order when Adjustment fee is specified
Fixed Order saving error on backend
Fixed Customer logged out by wrong SID cached in blocks
Fixed System->Configuration->Advanced->Admin->Startup page->"Startup Page" drop-down - Optgroups are displayed after child elements
Fixed Removed unused code from Varien_File_Uploader
Fixed DHL Shipping Methods unavailable (in case with package type letter)
Fixed Error via using Global Search [Search in Admin]
Fixed Error is presented by saving address, creating order with created attributes type Image File or file(attachment)
Fixed Package contents should be specified dynamically while creating shipping labels for the USPS International shipping methods
Fixed Product option with file type input is not being transferred from wishlist to the cart
- add mergeBuyRequest method to Mage_Wishlist_Model_Item
- add checking of custom add to cart URL in Mage_Catalog_Block_Product_View
Fixed Import: Imported file is not saved to var/importexport
Fixed Reports for Sales do not work except PayPal Settlement if several order statutes were selected
Fixed No disabling of package type and dimensions fields (in case with USPS Domestic)
Fixed Wrong behavior of composite configurable product during adding to the Shopping Cart via backend
Fixed Package Types that not available for current Shipping Method displayed in Create Packages pop-up
- added/removed several methods/packages for UPS shipping according to SRS
Fixed "Notify for Quantity Below" does not work
Fixed Frontend: Tier price not always applied to Mini Shopping Cart
Fixed Void button is present on Order page, Authorization transaction is not closed when payment action is set to "authorize and charge" - Google Checkout
Fixed MAP is applied to a Bundle product with dynamic price
Fixed No ability to create Shipping Label with package size "Oversize"
Fixed Button "Add to Cart" located in JS-popup (with Display Actual Price = On Gesture) doesn't work
Fixed Incorrect Shipping Label for USPS Library Mail Shipping Methods
Fixed Duplicating customer's addresses through placing order (backend)
Fixed Updating the qty of products from backend does not allow checkout on Frontend
- added ability to Quote and Quote items to track errors and remove them, when fixed, so whole 'error' status from Quote/Quote Item can be removed
- removed duplicating messages on Cart View page
Fixed No ability to create Shipping Label even if "Residential Delivery" set to "Yes" (in case with FedEx Home Delivery)
Fixed Button "Add new address" for customer works incorrect (backend)
Fixed It should be possible to set Minimum Qty Allowed in Shopping Cart setting via backend
Fixed Cart Subtotal is shown incorrect in sidebar shopping cart
Fixed Grid/list view settings do not save
Fixed Cannot assign custom filter to the grid column
Fixed Wishlist - product custom options are lost after customer login
Fixed Saved products will be matched each target rule
Fixed Taxes are not displayed in the catalog from frontend for Bundle products
- re-factored work with taxes for bundle product
Fixed Unable to save year less than 1970 in DOB customer attribute
- added DATETIME type to DDL
- fixed customer attributes to have same as pre-MMDB default values
Fixed "Grand Total" is not displayed for a configurable product that contains product where DAP = display before order confirmation
Fixed 'Click for price' not clickable after pressing 'Review' link in category
Fixed Bundle price display issue with tier pricing
- not considering tier price at bundle product's view page in price range
Fixed Frontend: In the block "Recently Viewed Products" the products of two customers are mixed
Fixed Error with Advanced Search (in case with Date Attribute)
Fixed Tax Rate ignores set values of Post/Zip codes Range From-To and applies it to Address with any Zip codes
Fixed Wishlist - Comment lost on config update
Fixed Import cannot handle UTF-8 characters
Fixed Welcome email template for store view scope is being ignored
Fixed Incorrect behavior of bundle product during creating Shipping Label with Customs value (in case when Price: Fixed, Ship Bundle Items" set to Separately)
Fixed Order status isn't changed when payed via PayPal if registered email differs characters cases (upper and lower)
Fixed Unwanted orders are shown in Sales->Orders list when the date filter affects to the day when DST changes apply
Fixed Payment method "Credit Card (saved)" does not display fields for fill in card information when product price is 0.00
Fixed Available to create online invoice after performing void for order
Fixed MAP configuration must contain default text for "Default Popup Text Message" and "Default "What's This" Text Message"
Fixed Backwards compatibility loss results in fatal error in Google Shopping module
- added all previous DDL constants to DDL Table, they are deprecated and being converted to new supported types
- added support for 'char' attributes
- fixed several incompatibilities in DDL Table
Fixed No ability to create Shipping Label with package type "Flat-Rate Box" (in case with USPS International)
Fixed Frontend: The block "Compare Products" with product is present on catalog page after adding the product to this block and clicking on "Not..?"
Fixed Fatal error when trying to open configurable product with super attribute not in the appropriate attribute set
Fixed Unable to return full amount on PayPal if partial credit memo is done and customer applied Store Credit
Fixed When creating new order for customer registered on multiple websites, account/website mismatch causes issues
Fixed Import Issue when attribute values not unique
Fixed After upgrading Magento website left in the maintenance mode
Fixed Ability to create more Shipping Labels than products in the order(shipment)
Fixed Street Address and Street Address 2 are mixed up in request to shipping carrier (in case with USPS International)
Fixed PayflowLink doesn't work (error "Payment has been declined. Please try again." is shown, Order is canceled)
Fixed Shopping cart price rule with attribute does not work when "Use Flat Catalog Product" enabled
Fixed Upgrade checking after cache flushed
Fixed Frontend: Tier price not always applied to Mini Shopping Cart
Fixed A message for the case when shipping label is created from the order should be modified
Fixed Spelling mistake in abbreviations unit of mass measurement (lbs, kgs)
Fixed FedEx Ground Shipping Method unavailable (if others FedEx Shipping Methods unavailable)
Fixed Incorrect Signature Confirmation options in the drop-down (in case with UPS)
Fixed Frontend: Catalog Price Rule does not apply to Mini Shopping Cart after login current customer
- add recollect total prices for quote on customer register
Fixed Fatal error when requesting non-existent file from Media directory
Fixed Button "Add to Cart" located in JS-popup (with Display Actual Price = On Gesture) doesn't work
Fixed Headers sent twice or three times when file downloading
Fixed Shipping method is calculating based on default shipping address instead of 'Same as billing' setting in backend
Fixed No ability to create more that one online Partial Invoice with Google Checkout
- parent transaction will be closed on payment model level;
- fixed exception error in Mage_Tax_Model_Resource_Calculation
Fixed Cross Sell Sorting Not Working
Fixed No ability to create Shipping Label for USPS - First-Class Mail International Package
Fixed Notification remove link in admin redirects to homepage on frontend in IE8
Fixed Incorrect behavior of image gallery
Fixed 'On Gesture' option is not applied on products' level
Fixed The message that appears instead or totals in the shopping cart and mini shopping cart should be modified