CHANGELOG.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. * Revisions log for unique_field
  3. */
  4. version 7.x-1.0-rc1 (2011/07/25)
  5. -- #1163924 by derhasi: fixing support for multilingual fields
  6. -- #1185904: reworking query code to use EntityFieldQuery
  7. -- #1185902: adding functional tests for core functionality
  8. version 2011/06/11 (7.x-1.0-beta2)
  9. -- #1037904 by Boobaa: fixing compatibility with localized content
  10. version 2010/11/20 (7.x-1.0-beta1)
  11. -- #945482 by Scott Falconer: fixing PDOException on empty values in
  12. multi-value fields
  13. -- #970548: fixing undefined index warning
  14. -- fixing JavaScript bypass for compatibility with Drupal 7 updates
  15. -- other code improvements
  16. version 2010/08/04
  17. -- fixed restriction bypass JavaScript for Drupal 7 compatibility
  18. version 2010/01/20
  19. -- validation is skipped when a node is deleted (otherwise nodes
  20. with duplicate values are prevented from being deleted)
  21. -- fixed translatability of all strings
  22. -- added documentation through help hook
  23. -- fixed compatibility with Drupal 7.0 alpha 1
  24. version 2009/11/17
  25. -- initial release of Drupal 7.x compatible version
  26. version 2009/11/12
  27. -- added Italian translation [thanks to eliosh]
  28. -- improved user message that reports duplicate values when checking
  29. fields in combination
  30. -- fixed support for datetime and other date-related database field
  31. datatypes [thanks to Parkes Design]
  32. -- added permission that allows users to bypass the unique field
  33. requirements after getting the warning message [thanks to benjah]
  34. version 2009/03/06
  35. -- fixed query generation for grouping OR clauses
  36. -- altered appearance of unique fields settings on the content type form:
  37. moved unique field section to the bottom, added descriptions
  38. -- fixed compatibility with date module version 6.x-2.0
  39. -- fixed compatibility with content_permissions module [thanks to skassam]
  40. -- Hungarian translation added [thanks to Zoltan Balogh]
  41. version 2009/02/09
  42. -- improved handling of CCK values in single node scope
  43. -- fixed formatting bug in duplicate error message
  44. version 2009/02/07
  45. -- fixed handling of multiple values per CCK field
  46. -- added option for showing the nodes that match when a duplicate
  47. value is found [thanks to crea]
  48. -- added node language as a query field and scope
  49. -- fixed handling of node revisions
  50. -- rewrote query generation routine
  51. -- added node author as a query field
  52. -- added hook_uninstall support for removing the module's variables
  53. [thanks to markus_petrux]
  54. -- improved compliance with coding standards [thanks to deekayen]
  55. version 2008/10/24
  56. -- updated to compatibility with Drupal 6.x [thanks to Yur]
  57. -- added check for content.module for CCK-dependent code [thanks to sigsby]
  58. -- removed all MySQL database-specific code [thanks to rssaddict]
  59. version 2008/03/15
  60. -- fixed to use node title label from node type data [thanks to tj2653]
  61. version 2008/03/14
  62. -- changed behavior so that if a field value is null or empty it matches
  63. no other node (including other nodes with null or empty values)
  64. [thanks to scedwar]
  65. version 2008/03/13
  66. -- fixed support for node and user reference fields in single node scope,
  67. verified support for both in other scopes
  68. version 2008/03/12
  69. -- added single node scope to require that specified fields on a node
  70. have unique values
  71. -- improved error messages to specify which fields must be unique
  72. and which include duplicates
  73. version 2008/02/22
  74. -- fixed queries to support table prefixes
  75. version 2008/02/18
  76. -- initial release