You are here

CHANGELOG.txt in Ubercart Addresses 6.2

Same filename and directory in other branches
  1. 6 CHANGELOG.txt
  2. 7 CHANGELOG.txt
Ubercart Addresses 6.x-2.x, xxxx-xx-xx
------------------------------
- Issue #1986798 by MegaChriz: fixed bug where two addresses could be marked as
  the same default type through the API.
- Issue #2068927 by MegaChriz: fixed UcAddressesUnownedException upon completing
  checkout.
- Issue #2461299 by MegaChriz: fixed field handler API does not always work
  with an UcAddressesSchemaAddress.

Ubercart Addresses 6.x-2.0-beta1, 2013-04-18
------------------------------
- Issue #1829348 by MegaChriz: sort countries list after translation.
- Issue #1871916 by MegaChriz: display a warning when a field handler is
  missing.
- Issue #1894858 by MegaChriz: made API change in UcAddressesPermissions to
  be able to check access for other users.
- Issue #1895918 by MegaChriz: fixed bug where trying to load a non-
  existing address could lead to a PHP notice error.
- Issue #1912698 by MegaChriz: moved UcAddressesTextFieldHandler from the
  example module to the main module and renamed the used handler in the
  example module.
- Issue #1831424 by MegaChriz: backported API additions from the 7.x-1.x
  version.
- Issue #1911136 by MegaChriz: separated schema definitions from field
  handler API definitions in the example module.
- Issue #1382088 by MegaChriz: backported test module from the 7.x-1.x
  version.
- Issue #1910626 by MegaChriz: API change: specified field data types.
- Issue #1900150 by MegaChriz: added Views address access filters.
- Issue #1908904 by MegaChriz: added uc_addresses relationship in user
  based views.
- Issue #1900176 by MegaChriz: added Views address action links.
- Issue #1927258 by MegaChriz: convert data to the right type in
  UcAddressesSchemaAddress::setField().
- Issue #1942748 by MegaChriz: added Views address row style plugin.
- Issue #1942746 by MegaChriz: added Views display access plugin and Views
  argument validator plugins for addresses.
- Issue #1433034 by MegaChriz: added default View for the address book page.
- Issue #1961590 by MegaChriz: fixed "empty" address format.

Ubercart Addresses 6.x-2.0-alpha2, 2012-10-11
------------------------------
- Issue #1381120 by MegaChriz: fixed foreach warning in address book when
  user has no addresses.
- Issue #1382088 by MegaChriz: added automated tests.
- by MegaChriz: backport of several changes made in 7.x-1.x branch.
- Issue #1412060 by MegaChriz: renamed permissions that contained an
  apostrophe: "everyone's" has been replaced by "all".
- Issue #1578362 by MegaChriz: implemented address tokens in order context.
- Issue #1668666 by miccelito, MegaChriz: make default addresses on address
  book page better themable.
- Issue #1670124 by MegaChriz: renamed theme hook "uc_addresses_pane" to
  "uc_addresses_form".
- Issue #1678406 by MegaChriz: fixed bug while loading Ubercart order which
  could result into a UcAddressesInvalidFieldException error when the order
  had fields starting with 'delivery' or 'billing' that were unknown to
  Ubercart Addresses.
- Issue #1391216 by MegaChriz, phead, MegaChriz: added basic Views
  integration.
- Issue #1382088 by MegaChriz: adjusted automated tests 'checkout' to be
  consistent with Ubercart's checkout test.
- Issue #1382088 by MegaChriz: changed methods getEditAddressValues() and
  generateAddressFieldValue() from UcAddressesTestCase class from
  'protected' to 'public static'.
- Issue #1735678 by MegaChriz: added an test for checking autofilling
  addresses on checkout.
- Issue #1785168 by MegaChriz: Ensure new addresses are saved after
  checkout.
- Issue #1785168 by MegaChriz: Ensure no double addresses are saved.
- Issue #1701324 by MegaChriz: Fixed bug where selecting an address from
  a previous order at checkout resulted into a "Illegal choice" error.

Ubercart Addresses 6.x-2.0-alpha1, 2011-12-16
------------------------------
- by MegaChriz: little correction in upgrade script.
- Issue #1368162 by MegaChriz: added odd/even classes for "other addresses"
  in the address book.
- by MegaChriz: the property '#uc_addresses_required' of the
  uc_addresses_address now accept arrays, the required-setting of address
  fields can now be overridden before the uc_addresses_address element
  is processed.
- by MegaChriz: added date tokens for "created" and "modified".
- by MegaChriz: minor coding standards fixes.
- by MegaChriz: minor text strings fixes.
- by MegaChriz: added descriptions for address fields.

Ubercart Addresses 6.x-2.x-dev, 2011-11-25
------------------------------
- by MegaChriz: removed unused functions uc_addresses_get_field_handlers()
  and uc_addresses_compare().
- by MegaChriz: replaced property '#required' in the uc_addresses_address
  form element with '#uc_addresses_required'. Setting this to FALSE makes
  all address fields non-required (even if they are configured to be
  required). The field handlers were adjusted to fit with this change.
- by MegaChriz: setting a default value for the property
  '#uc_addresses_address' for the uc_addresses_address form element is moved
  to the process function. This is done to increase performance: CTools'
  plugin system is no longer unnecessary invoked on every request with a
  form.
- by MegaChriz: other minor changes.

Ubercart Addresses 6.x-2.x-dev, 2011-11-04
------------------------------
- by MegaChriz: fixed PHP foreach warning on checkout page (forgot to test
  anonymous checkout).
- by MegaChriz: fixed minor bugs in the API.

Ubercart Addresses 6.x-2.x-dev, 2011-10-31
------------------------------
- Issue #1327148 by MegaChriz: fixed a bug that could result in a fatal
  error when trying to save an user with no addresses.
- by MegaChriz: renamed permissions:
  - "view own default address" has become "view own default addresses".
  - "view default addresses" has become "view everyone's default addresses".
- by MegaChriz: API change in the field handler API. The strings array is
  removed from the field definition. Instead, extra properties can be
  defined. In field handlers, getString() is replaced by getProperty().
- Issue #396342 by MegaChriz: added support for getting addresses from
  other sources than the address book. Two new hooks are introduced:
  - hook_uc_addresses_select_addresses()
  - hook_uc_addresses_select_addresses_alter()
- by MegaChriz: added help via hook_help().

Ubercart Addresses 6.x-2.x-dev, 2011-10-16
------------------------------
- Issue #660376 by MegaChriz: Implemented user tokens for default
  addresses.
- Documented used variables in templates.
- Issue #1305348 by gease, MegaChriz: prevent address being saved as user
  data in the user table.
- Issue #1307896 by MegaChriz: implemented default values for fields.
- by MegaChriz: added more documentation.
- Issue #396342 by MegaChriz: Implemented address book in admin order
  interface (partly done).

Ubercart Addresses 6.x-2.x-dev, 2011-10-01
------------------------------
- by MegaChriz: Removed own checkout panes (due to complexity with CA
  triggering).
- by MegaChriz: Increased dependency of Ubercart to Ubercart 2.6.
- by MegaChriz: Implemented order panes (rough version, incomplete).
- by MegaChriz: Implemented tokens for address display.
- by MegaChriz: Replaced address display in invoice with Ubercart
  Addresses version.
- by MegaChriz: added hook hook_uc_addresses_presave().
- by MegaChriz: moved hooks documentation to uc_addresses.api.php.

Ubercart Addresses 6.x-2.x-dev, 2011-09-14
------------------------------
New features:
- by freixas, MegaChriz: Implemented a total new API.
- by MegaChriz: Added a system for adding extra address fields (for
  developers).
- by MegaChriz: added hooks for addresses operations (load, insert, update
  and delete).
- by MegaChriz: Added address format display settings for addresses from
  Ubercart Addresses.
- by freixas, MegaChriz: Improved permission settings.
- by MegaChriz: Improved theming.

File

CHANGELOG.txt
View source
  1. Ubercart Addresses 6.x-2.x, xxxx-xx-xx
  2. ------------------------------
  3. - Issue #1986798 by MegaChriz: fixed bug where two addresses could be marked as
  4. the same default type through the API.
  5. - Issue #2068927 by MegaChriz: fixed UcAddressesUnownedException upon completing
  6. checkout.
  7. - Issue #2461299 by MegaChriz: fixed field handler API does not always work
  8. with an UcAddressesSchemaAddress.
  9. Ubercart Addresses 6.x-2.0-beta1, 2013-04-18
  10. ------------------------------
  11. - Issue #1829348 by MegaChriz: sort countries list after translation.
  12. - Issue #1871916 by MegaChriz: display a warning when a field handler is
  13. missing.
  14. - Issue #1894858 by MegaChriz: made API change in UcAddressesPermissions to
  15. be able to check access for other users.
  16. - Issue #1895918 by MegaChriz: fixed bug where trying to load a non-
  17. existing address could lead to a PHP notice error.
  18. - Issue #1912698 by MegaChriz: moved UcAddressesTextFieldHandler from the
  19. example module to the main module and renamed the used handler in the
  20. example module.
  21. - Issue #1831424 by MegaChriz: backported API additions from the 7.x-1.x
  22. version.
  23. - Issue #1911136 by MegaChriz: separated schema definitions from field
  24. handler API definitions in the example module.
  25. - Issue #1382088 by MegaChriz: backported test module from the 7.x-1.x
  26. version.
  27. - Issue #1910626 by MegaChriz: API change: specified field data types.
  28. - Issue #1900150 by MegaChriz: added Views address access filters.
  29. - Issue #1908904 by MegaChriz: added uc_addresses relationship in user
  30. based views.
  31. - Issue #1900176 by MegaChriz: added Views address action links.
  32. - Issue #1927258 by MegaChriz: convert data to the right type in
  33. UcAddressesSchemaAddress::setField().
  34. - Issue #1942748 by MegaChriz: added Views address row style plugin.
  35. - Issue #1942746 by MegaChriz: added Views display access plugin and Views
  36. argument validator plugins for addresses.
  37. - Issue #1433034 by MegaChriz: added default View for the address book page.
  38. - Issue #1961590 by MegaChriz: fixed "empty" address format.
  39. Ubercart Addresses 6.x-2.0-alpha2, 2012-10-11
  40. ------------------------------
  41. - Issue #1381120 by MegaChriz: fixed foreach warning in address book when
  42. user has no addresses.
  43. - Issue #1382088 by MegaChriz: added automated tests.
  44. - by MegaChriz: backport of several changes made in 7.x-1.x branch.
  45. - Issue #1412060 by MegaChriz: renamed permissions that contained an
  46. apostrophe: "everyone's" has been replaced by "all".
  47. - Issue #1578362 by MegaChriz: implemented address tokens in order context.
  48. - Issue #1668666 by miccelito, MegaChriz: make default addresses on address
  49. book page better themable.
  50. - Issue #1670124 by MegaChriz: renamed theme hook "uc_addresses_pane" to
  51. "uc_addresses_form".
  52. - Issue #1678406 by MegaChriz: fixed bug while loading Ubercart order which
  53. could result into a UcAddressesInvalidFieldException error when the order
  54. had fields starting with 'delivery' or 'billing' that were unknown to
  55. Ubercart Addresses.
  56. - Issue #1391216 by MegaChriz, phead, MegaChriz: added basic Views
  57. integration.
  58. - Issue #1382088 by MegaChriz: adjusted automated tests 'checkout' to be
  59. consistent with Ubercart's checkout test.
  60. - Issue #1382088 by MegaChriz: changed methods getEditAddressValues() and
  61. generateAddressFieldValue() from UcAddressesTestCase class from
  62. 'protected' to 'public static'.
  63. - Issue #1735678 by MegaChriz: added an test for checking autofilling
  64. addresses on checkout.
  65. - Issue #1785168 by MegaChriz: Ensure new addresses are saved after
  66. checkout.
  67. - Issue #1785168 by MegaChriz: Ensure no double addresses are saved.
  68. - Issue #1701324 by MegaChriz: Fixed bug where selecting an address from
  69. a previous order at checkout resulted into a "Illegal choice" error.
  70. Ubercart Addresses 6.x-2.0-alpha1, 2011-12-16
  71. ------------------------------
  72. - by MegaChriz: little correction in upgrade script.
  73. - Issue #1368162 by MegaChriz: added odd/even classes for "other addresses"
  74. in the address book.
  75. - by MegaChriz: the property '#uc_addresses_required' of the
  76. uc_addresses_address now accept arrays, the required-setting of address
  77. fields can now be overridden before the uc_addresses_address element
  78. is processed.
  79. - by MegaChriz: added date tokens for "created" and "modified".
  80. - by MegaChriz: minor coding standards fixes.
  81. - by MegaChriz: minor text strings fixes.
  82. - by MegaChriz: added descriptions for address fields.
  83. Ubercart Addresses 6.x-2.x-dev, 2011-11-25
  84. ------------------------------
  85. - by MegaChriz: removed unused functions uc_addresses_get_field_handlers()
  86. and uc_addresses_compare().
  87. - by MegaChriz: replaced property '#required' in the uc_addresses_address
  88. form element with '#uc_addresses_required'. Setting this to FALSE makes
  89. all address fields non-required (even if they are configured to be
  90. required). The field handlers were adjusted to fit with this change.
  91. - by MegaChriz: setting a default value for the property
  92. '#uc_addresses_address' for the uc_addresses_address form element is moved
  93. to the process function. This is done to increase performance: CTools'
  94. plugin system is no longer unnecessary invoked on every request with a
  95. form.
  96. - by MegaChriz: other minor changes.
  97. Ubercart Addresses 6.x-2.x-dev, 2011-11-04
  98. ------------------------------
  99. - by MegaChriz: fixed PHP foreach warning on checkout page (forgot to test
  100. anonymous checkout).
  101. - by MegaChriz: fixed minor bugs in the API.
  102. Ubercart Addresses 6.x-2.x-dev, 2011-10-31
  103. ------------------------------
  104. - Issue #1327148 by MegaChriz: fixed a bug that could result in a fatal
  105. error when trying to save an user with no addresses.
  106. - by MegaChriz: renamed permissions:
  107. - "view own default address" has become "view own default addresses".
  108. - "view default addresses" has become "view everyone's default addresses".
  109. - by MegaChriz: API change in the field handler API. The strings array is
  110. removed from the field definition. Instead, extra properties can be
  111. defined. In field handlers, getString() is replaced by getProperty().
  112. - Issue #396342 by MegaChriz: added support for getting addresses from
  113. other sources than the address book. Two new hooks are introduced:
  114. - hook_uc_addresses_select_addresses()
  115. - hook_uc_addresses_select_addresses_alter()
  116. - by MegaChriz: added help via hook_help().
  117. Ubercart Addresses 6.x-2.x-dev, 2011-10-16
  118. ------------------------------
  119. - Issue #660376 by MegaChriz: Implemented user tokens for default
  120. addresses.
  121. - Documented used variables in templates.
  122. - Issue #1305348 by gease, MegaChriz: prevent address being saved as user
  123. data in the user table.
  124. - Issue #1307896 by MegaChriz: implemented default values for fields.
  125. - by MegaChriz: added more documentation.
  126. - Issue #396342 by MegaChriz: Implemented address book in admin order
  127. interface (partly done).
  128. Ubercart Addresses 6.x-2.x-dev, 2011-10-01
  129. ------------------------------
  130. - by MegaChriz: Removed own checkout panes (due to complexity with CA
  131. triggering).
  132. - by MegaChriz: Increased dependency of Ubercart to Ubercart 2.6.
  133. - by MegaChriz: Implemented order panes (rough version, incomplete).
  134. - by MegaChriz: Implemented tokens for address display.
  135. - by MegaChriz: Replaced address display in invoice with Ubercart
  136. Addresses version.
  137. - by MegaChriz: added hook hook_uc_addresses_presave().
  138. - by MegaChriz: moved hooks documentation to uc_addresses.api.php.
  139. Ubercart Addresses 6.x-2.x-dev, 2011-09-14
  140. ------------------------------
  141. New features:
  142. - by freixas, MegaChriz: Implemented a total new API.
  143. - by MegaChriz: Added a system for adding extra address fields (for
  144. developers).
  145. - by MegaChriz: added hooks for addresses operations (load, insert, update
  146. and delete).
  147. - by MegaChriz: Added address format display settings for addresses from
  148. Ubercart Addresses.
  149. - by freixas, MegaChriz: Improved permission settings.
  150. - by MegaChriz: Improved theming.