Skip to content

Commit f19b465

Browse files
committed
2.0.0.0-dev86
* Service layer updates: * Created Category service and methods * Renamed attribute option service * Implemented an API method to remove for attribute options * Created TaxClass service and methods * Created APIs for Tax service * Framework improvements: * REST/SOAP calls uses default store if store code not provided * Added a warning about using a not secure protocol for theidentity link URL * Fixed exception masking and removed unnecessary exceptions from the Webapi framework * WEEE features parity: * Fixed an issue with Tax calculations when FPT is enabled * Fixed an issue where FPT was not included in the subtotal number on invoice pages * Fixed an issue where FPT was not included in the subtotal number on credit memo pages * Free shipping calculated with FPT * Fixed an issue where discounts where applied to FPT * Fixed an issue with rounding is the Tax detailed info * Fixed issues with bundle product pricing with tier and special prices * Added an integrity test to verify that dictionary and code are synced * i18n Improvements: * Improved the wording of the i18n CLI Tools * Removed the helpers which became unused after i18n Improvements * Fixed bugs: * Fixed an issue where configurable attributes were not chosen according to the hash tag * Fixed an issue where the Compare Products functionality did not work correctly * Fixed an issue where product attribute values were duplicated after import * Fixed an issue were the scope of an attribute was not considered in catalog price rule conditions * Fixed an issue where shipping address was not saved if it was added during checkout * Fixed an issue where there was no POST request when saving a customer group * Fixed an issue where an attribute template was not applied after changing it for the first time during product creation * Fixed an issue where the Sale Report Grid with no results found contained an unnecessary empty Total section * Fixed an issue where a notice was added to system.log when a product was added to cart * Fixed integration test coverage failure * Fixed an issue where a message about inequality of password and confirmation was displayed in the wrong place * Fixed an issue with an XSS warning in 'Used for Sorting in Product Listing' property of Product Attribute * Fixed an issue where an order was not displayed on frontend if its order status was deleted * Fixed an issue where tier pricing was not displayed on a grouped product page * Verified and fixed the content of errors returned from SOAP calls * Fixed an issue where it was impossible to create a tax rule when using a complex Customer/Product tax class * Fixed an issue where the Street Address line count setting was not applied. * Fixed an issue where customers were not assigned to the correct VAT customer groups during admin order creation * The unused translateArray method of AbstractHelper was removed * Fixed an issue where localization did not work for strings containing a single quote (') * Fixed issues with the translate and the logging transformation tools * Fixed an issue where it was impossible to create a URL rewrite for a CMS Page with Temporary (302) or Permanent (301) redirect * GitHub requests: * [#598] Add Sort Order to Rules * [#580] Set changed status on model to prevent status overwriting when model gets saved * Unit Tests Coverage: * Part of the Catalog module covered with the unit tests * Added the following functional tests: * Applying Several Catalog Price Rules * Attribute Set Creation * Category Deletion * Customer Group Deletion * Generating Sitemap * Product Attribute Deletion * Update Admin User * Update Cms Page * Update Customer Group * Update Downloadable Product * Update Product Attribute * Update Sales Rule * Update Sitemap
1 parent cf6ae36 commit f19b465

File tree

1,307 files changed

+77794
-47100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,307 files changed

+77794
-47100
lines changed

CHANGELOG.md

+67-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
2.0.0.0-dev86
2+
=============
3+
* Service layer updates:
4+
* Created Category service and methods
5+
* Renamed attribute option service
6+
* Implemented an API method to remove for attribute options
7+
* Created TaxClass service and methods
8+
* Created APIs for Tax service
9+
* Framework improvements:
10+
* REST/SOAP calls uses default store if store code not provided
11+
* Added a warning about using a not secure protocol for theidentity link URL
12+
* Fixed exception masking and removed unnecessary exceptions from the Webapi framework
13+
* WEEE features parity:
14+
* Fixed an issue with Tax calculations when FPT is enabled
15+
* Fixed an issue where FPT was not included in the subtotal number on invoice pages
16+
* Fixed an issue where FPT was not included in the subtotal number on credit memo pages
17+
* Free shipping calculated with FPT
18+
* Fixed an issue where discounts where applied to FPT
19+
* Fixed an issue with rounding is the Tax detailed info
20+
* Fixed issues with bundle product pricing with tier and special prices
21+
* Added an integrity test to verify that dictionary and code are synced
22+
* i18n Improvements:
23+
* Improved the wording of the i18n CLI Tools
24+
* Removed the helpers which became unused after i18n Improvements
25+
* Fixed bugs:
26+
* Fixed an issue where configurable attributes were not chosen according to the hash tag
27+
* Fixed an issue where the Compare Products functionality did not work correctly
28+
* Fixed an issue where product attribute values were duplicated after import
29+
* Fixed an issue were the scope of an attribute was not considered in catalog price rule conditions
30+
* Fixed an issue where shipping address was not saved if it was added during checkout
31+
* Fixed an issue where there was no POST request when saving a customer group
32+
* Fixed an issue where an attribute template was not applied after changing it for the first time during product creation
33+
* Fixed an issue where the Sale Report Grid with no results found contained an unnecessary empty Total section
34+
* Fixed an issue where a notice was added to system.log when a product was added to cart
35+
* Fixed integration test coverage failure
36+
* Fixed an issue where a message about inequality of password and confirmation was displayed in the wrong place
37+
* Fixed an issue with an XSS warning in 'Used for Sorting in Product Listing' property of Product Attribute
38+
* Fixed an issue where an order was not displayed on frontend if its order status was deleted
39+
* Fixed an issue where tier pricing was not displayed on a grouped product page
40+
* Verified and fixed the content of errors returned from SOAP calls
41+
* Fixed an issue where it was impossible to create a tax rule when using a complex Customer/Product tax class
42+
* Fixed an issue where the Street Address line count setting was not applied.
43+
* Fixed an issue where customers were not assigned to the correct VAT customer groups during admin order creation
44+
* The unused translateArray method of AbstractHelper was removed
45+
* Fixed an issue where localization did not work for strings containing a single quote (')
46+
* Fixed issues with the translate and the logging transformation tools
47+
* Fixed an issue where it was impossible to create a URL rewrite for a CMS Page with Temporary (302) or Permanent (301) redirect
48+
* GitHub requests:
49+
* [#598] Add Sort Order to Rules
50+
* [#580] Set changed status on model to prevent status overwriting when model gets saved
51+
* Unit Tests Coverage:
52+
* Part of the Catalog module covered with the unit tests
53+
* Added the following functional tests:
54+
* Applying Several Catalog Price Rules
55+
* Attribute Set Creation
56+
* Category Deletion
57+
* Customer Group Deletion
58+
* Generating Sitemap
59+
* Product Attribute Deletion
60+
* Update Admin User
61+
* Update Cms Page
62+
* Update Customer Group
63+
* Update Downloadable Product
64+
* Update Product Attribute
65+
* Update Sales Rule
66+
* Update Sitemap
67+
168
2.0.0.0-dev85
269
=============
370
* Service layer updates:
@@ -9,7 +76,6 @@
976
* Fixed an issue where Google Content was not sending the correct 'description' attribute
1077
* Fixed an issue where custom attributes were not displayed in layered navigation after a product import
1178
* Fixed an issue where the Category URL keys did not work correctly after saving
12-
* Fixed an issue where an admin could not create a Target rule with a certain Products to Display condition
1379
* Fixed a jQuery error on a product page in the Admin panel, which appeared when switching between product tabs
1480
* Framework Improvements:
1581
* Created ProductsCustomOptions Service API for Catalog module
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,51 @@
1-
"Actions","Aktionen"
2-
"An error occurred while marking notification as read.","Fehler beim Markieren des Hinweises als 'gelesen'."
3-
"An error occurred while marking the messages as read.","Fehler beim Markieren der Nachrichten als 'gelesen'."
4-
"An error occurred while removing messages.","Fehler beim Entfernen der Nachrichten."
5-
"An error occurred while removing the message.","Fehler beim Entfernen der Nachricht."
6-
"Are you sure?","Sind Sie sicher?"
7-
"Date Added","Hinzugefügt am"
8-
"Last Update","Letzte Aktualisierung"
1+
"Read Details","Details anzeigen"
92
"Mark as Read","Als 'gelesen' markieren"
10-
"Mark as read","Als gelesen markieren"
11-
"Message","Nachricht"
12-
"Messages Inbox","Posteingang"
13-
"Notifications","Hinweise"
3+
"Are you sure?","Sind Sie sicher?"
4+
Remove,Entfernen
5+
"Messages Inbox",Posteingang
6+
"You have %1 new system messages","You have %1 new system messages"
7+
"You have %1 new system message","You have %1 new system message"
8+
"Incoming Message","Incoming Message"
9+
close,close
10+
"Read details","Read details"
11+
Notifications,Hinweise
12+
"The message has been marked as Read.","The message has been marked as Read."
13+
"We couldn't mark the notification as Read because of an error.","We couldn't mark the notification as Read because of an error."
1414
"Please select messages.","Bitte Nachrichten auswählen."
15-
"Read Details","Details anzeigen"
16-
"Remove","Entfernen"
17-
"Severity","Wichtigkeit"
18-
"Show List","Liste anzeigen"
19-
"Show Toolbar","Werkzeugleiste anzeigen"
20-
"The message has been marked as read.","Die Nachricht wurde als 'gelesen' markiert."
15+
"A total of %1 record(s) have been marked as Read.","A total of %1 record(s) have been marked as Read."
2116
"The message has been removed.","Die Nachricht wurde entfernt."
22-
"Total of %d record(s) have been marked as read.","Insgesamt %d Einträge wurden als 'gelesen' markiert."
23-
"Total of %d record(s) have been removed.","Insgesamt %d Einträge wurden gelöscht."
24-
"Unable to proceed. Please, try again.","Vorgang konnte nicht ausgeführt werden. Bitte versuchen Sie es später noch einmal."
25-
"Update Frequency","Aktualisierungshäufigkeit"
26-
"Use HTTPS to Get Feed","Benutzen Sie HTTPS um Nachrichten abzurufen"
27-
"critical","kritisch"
28-
"major","wichtig"
29-
"minor","unwichtig"
30-
"notice","Hinweis"
17+
"We couldn't remove the messages because of an error.","We couldn't remove the messages because of an error."
18+
"Total of %1 record(s) have been removed.","Total of %1 record(s) have been removed."
19+
"1 Hour","1 Hour"
20+
"2 Hours","2 Hours"
21+
"6 Hours","6 Hours"
22+
"12 Hours","12 Hours"
23+
"24 Hours","24 Hours"
24+
critical,kritisch
25+
major,wichtig
26+
minor,unwichtig
27+
notice,Hinweis
28+
"Wrong message type","Wrong message type"
29+
"{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>.","{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>."
30+
"One or more of the Cache Types are invalidated: %1. ","One or more of the Cache Types are invalidated: %1. "
31+
"Please go to <a href=""%1"">Cache Management</a> and refresh cache types.","Please go to <a href=""%1"">Cache Management</a> and refresh cache types."
32+
"One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details."
33+
"Synchronization of media storages has been completed.","Synchronization of media storages has been completed."
34+
"Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider."
35+
"We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento.","We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento."
36+
"Close popup","Close popup"
37+
Close,Close
38+
"Critical System Messages","Critical System Messages"
39+
"Major System Messages","Major System Messages"
40+
"System messages","System messages"
41+
Notification,Notification
42+
Cancel,Cancel
43+
Acknowledge,Acknowledge
44+
"See All (%1 unread)","See All (%1 unread)"
45+
Actions,Aktionen
46+
Message,Nachricht
47+
"Use HTTPS to Get Feed","Use HTTPS to Get Feed"
48+
"Update Frequency","Update Frequency"
49+
"Last Update","Last Update"
50+
Severity,Wichtigkeit
51+
"Date Added","Hinzugefügt am"
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,51 @@
1-
"Actions","Actions"
2-
"An error occurred while marking notification as read.","An error occurred while marking notification as read."
3-
"An error occurred while marking the messages as read.","An error occurred while marking the messages as read."
4-
"An error occurred while removing messages.","An error occurred while removing messages."
5-
"An error occurred while removing the message.","An error occurred while removing the message."
6-
"Are you sure?","Are you sure?"
7-
"Date Added","Date Added"
8-
"Last Update","Last Update"
1+
"Read Details","Read Details"
92
"Mark as Read","Mark as Read"
10-
"Mark as read","Mark as read"
11-
"Message","Message"
3+
"Are you sure?","Are you sure?"
4+
Remove,Remove
125
"Messages Inbox","Messages Inbox"
13-
"Notifications","Notifications"
6+
"You have %1 new system messages","You have %1 new system messages"
7+
"You have %1 new system message","You have %1 new system message"
8+
"Incoming Message","Incoming Message"
9+
close,close
10+
"Read details","Read details"
11+
Notifications,Notifications
12+
"The message has been marked as Read.","The message has been marked as Read."
13+
"We couldn't mark the notification as Read because of an error.","We couldn't mark the notification as Read because of an error."
1414
"Please select messages.","Please select messages."
15-
"Read Details","Read Details"
16-
"Remove","Remove"
17-
"Severity","Severity"
18-
"Show List","Show List"
19-
"Show Toolbar","Show Toolbar"
20-
"The message has been marked as read.","The message has been marked as read."
15+
"A total of %1 record(s) have been marked as Read.","A total of %1 record(s) have been marked as Read."
2116
"The message has been removed.","The message has been removed."
22-
"Total of %d record(s) have been marked as read.","Total of %d record(s) have been marked as read."
23-
"Total of %d record(s) have been removed.","Total of %d record(s) have been removed."
24-
"Unable to proceed. Please, try again.","Unable to proceed. Please, try again."
25-
"Update Frequency","Update Frequency"
17+
"We couldn't remove the messages because of an error.","We couldn't remove the messages because of an error."
18+
"Total of %1 record(s) have been removed.","Total of %1 record(s) have been removed."
19+
"1 Hour","1 Hour"
20+
"2 Hours","2 Hours"
21+
"6 Hours","6 Hours"
22+
"12 Hours","12 Hours"
23+
"24 Hours","24 Hours"
24+
critical,critical
25+
major,major
26+
minor,minor
27+
notice,notice
28+
"Wrong message type","Wrong message type"
29+
"{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>.","{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>."
30+
"One or more of the Cache Types are invalidated: %1. ","One or more of the Cache Types are invalidated: %1. "
31+
"Please go to <a href=""%1"">Cache Management</a> and refresh cache types.","Please go to <a href=""%1"">Cache Management</a> and refresh cache types."
32+
"One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details."
33+
"Synchronization of media storages has been completed.","Synchronization of media storages has been completed."
34+
"Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider."
35+
"We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento.","We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento."
36+
"Close popup","Close popup"
37+
Close,Close
38+
"Critical System Messages","Critical System Messages"
39+
"Major System Messages","Major System Messages"
40+
"System messages","System messages"
41+
Notification,Notification
42+
Cancel,Cancel
43+
Acknowledge,Acknowledge
44+
"See All (%1 unread)","See All (%1 unread)"
45+
Actions,Actions
46+
Message,Message
2647
"Use HTTPS to Get Feed","Use HTTPS to Get Feed"
27-
"critical","critical"
28-
"major","major"
29-
"minor","minor"
30-
"notice","notice"
48+
"Update Frequency","Update Frequency"
49+
"Last Update","Last Update"
50+
Severity,Severity
51+
"Date Added","Date Added"
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,51 @@
1-
"Actions","Acciones"
2-
"An error occurred while marking notification as read.","Se ha producido un error al marcar la notificación como leída."
3-
"An error occurred while marking the messages as read.","Se ha producido un error al marcar los mensajes como leídos."
4-
"An error occurred while removing messages.","Se ha producido un error al eliminar los mensajes."
5-
"An error occurred while removing the message.","Se ha producido un error al eliminar el mensaje."
6-
"Are you sure?","¿Está seguro?"
7-
"Date Added","Añadido el día"
8-
"Last Update","Última actualización"
1+
"Read Details","Leer detalles"
92
"Mark as Read","Marcar como leído"
10-
"Mark as read","Marcar como leído"
11-
"Message","Mensaje"
3+
"Are you sure?","¿Está seguro?"
4+
Remove,Eliminar
125
"Messages Inbox","Bandeja de entrada"
13-
"Notifications","Notificaciones"
6+
"You have %1 new system messages","You have %1 new system messages"
7+
"You have %1 new system message","You have %1 new system message"
8+
"Incoming Message","Incoming Message"
9+
close,close
10+
"Read details","Read details"
11+
Notifications,Notificaciones
12+
"The message has been marked as Read.","The message has been marked as Read."
13+
"We couldn't mark the notification as Read because of an error.","We couldn't mark the notification as Read because of an error."
1414
"Please select messages.","Por favor, selecciona al menos un mensaje."
15-
"Read Details","Leer detalles"
16-
"Remove","Eliminar"
17-
"Severity","Gravedad"
18-
"Show List","Mostrar lista"
19-
"Show Toolbar","Mostrar barra de herramientas"
20-
"The message has been marked as read.","El mensaje ha sido marcado como leído."
15+
"A total of %1 record(s) have been marked as Read.","A total of %1 record(s) have been marked as Read."
2116
"The message has been removed.","El mensaje ha sido eliminado."
22-
"Total of %d record(s) have been marked as read.","%d informe(s) ha(n) sido marcado(s) como leído(s)."
23-
"Total of %d record(s) have been removed.","%d informe(s) ha(n) sido eliminado(s)."
24-
"Unable to proceed. Please, try again.","Imposible realizar la operación. Inténtalo de nuevo."
25-
"Update Frequency","Frecuencia de actualización"
26-
"Use HTTPS to Get Feed","Utiliza HTTPS para obtener información"
27-
"critical","crítico"
28-
"major","mayor"
29-
"minor","menor"
30-
"notice","aviso"
17+
"We couldn't remove the messages because of an error.","We couldn't remove the messages because of an error."
18+
"Total of %1 record(s) have been removed.","Total of %1 record(s) have been removed."
19+
"1 Hour","1 Hour"
20+
"2 Hours","2 Hours"
21+
"6 Hours","6 Hours"
22+
"12 Hours","12 Hours"
23+
"24 Hours","24 Hours"
24+
critical,crítico
25+
major,mayor
26+
minor,menor
27+
notice,aviso
28+
"Wrong message type","Wrong message type"
29+
"{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>.","{{base_url}} is not recommended to use in a production environment to declare the Base Unsecure URL / Base Secure URL. It is highly recommended to change this value in your Magento <a href=""%1"">configuration</a>."
30+
"One or more of the Cache Types are invalidated: %1. ","One or more of the Cache Types are invalidated: %1. "
31+
"Please go to <a href=""%1"">Cache Management</a> and refresh cache types.","Please go to <a href=""%1"">Cache Management</a> and refresh cache types."
32+
"One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details.","One or more media files failed to be synchronized during the media storages synchronization process. Refer to the log file for details."
33+
"Synchronization of media storages has been completed.","Synchronization of media storages has been completed."
34+
"Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider.","Your web server is configured incorrectly. As a result, configuration files with sensitive information are accessible from the outside. Please contact your hosting provider."
35+
"We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento.","We appreciate our merchants' feedback. Please <a href=""#"" data-mage-init=%1>take our survey</a> and tell us about features you'd like to see in Magento."
36+
"Close popup","Close popup"
37+
Close,Close
38+
"Critical System Messages","Critical System Messages"
39+
"Major System Messages","Major System Messages"
40+
"System messages","System messages"
41+
Notification,Notification
42+
Cancel,Cancel
43+
Acknowledge,Acknowledge
44+
"See All (%1 unread)","See All (%1 unread)"
45+
Actions,Acciones
46+
Message,Mensaje
47+
"Use HTTPS to Get Feed","Use HTTPS to Get Feed"
48+
"Update Frequency","Update Frequency"
49+
"Last Update","Last Update"
50+
Severity,Gravedad
51+
"Date Added","Añadido el día"

0 commit comments

Comments
 (0)