You are here

CHANGELOG.txt in Unique field 8.2

Same filename and directory in other branches
  1. 8 CHANGELOG.txt
  2. 5 CHANGELOG.txt
  3. 6 CHANGELOG.txt
  4. 7 CHANGELOG.txt
/**
 * Revisions log for unique_field
 */

version 2009/11/17
-- initial release of Drupal 7.x compatible version

version 2009/11/12
-- added Italian translation [thanks to eliosh]
-- improved user message that reports duplicate values when checking
  fields in combination
-- fixed support for datetime and other date-related database field
  datatypes [thanks to Parkes Design]
-- added permission that allows users to bypass the unique field
  requirements after getting the warning message [thanks to benjah]

version 2009/03/06
-- fixed query generation for grouping OR clauses
-- altered appearance of unique fields settings on the content type form:
  moved unique field section to the bottom, added descriptions
-- fixed compatibility with date module version 6.x-2.0
-- fixed compatibility with content_permissions module [thanks to skassam]
-- Hungarian translation added [thanks to Zoltan Balogh]

version 2009/02/09
-- improved handling of CCK values in single node scope
-- fixed formatting bug in duplicate error message

version 2009/02/07
-- fixed handling of multiple values per CCK field
-- added option for showing the nodes that match when a duplicate
  value is found [thanks to crea]
-- added node language as a query field and scope
-- fixed handling of node revisions
-- rewrote query generation routine
-- added node author as a query field
-- added hook_uninstall support for removing the module's variables
  [thanks to markus_petrux]
-- improved compliance with coding standards [thanks to deekayen]

version 2008/10/24
-- updated to compatibility with Drupal 6.x [thanks to Yur]
-- added check for content.module for CCK-dependent code [thanks to sigsby]
-- removed all MySQL database-specific code [thanks to rssaddict]

version 2008/03/15
-- fixed to use node title label from node type data [thanks to tj2653]

version 2008/03/14
-- changed behavior so that if a field value is null or empty it matches
  no other node (including other nodes with null or empty values)
  [thanks to scedwar]

version 2008/03/13
-- fixed support for node and user reference fields in single node scope,
  verified support for both in other scopes

version 2008/03/12
-- added single node scope to require that specified fields on a node
  have unique values
-- improved error messages to specify which fields must be unique
  and which include duplicates

version 2008/02/22
-- fixed queries to support table prefixes

version 2008/02/18
-- initial release

TO-DO
-- add SimpleTest test
-- fix use of t() to eliminate the use of variables inside
-- fix consistent case-sensitivity of database queries, add option
  for whether to use case-sensitive comparisons (see #333137)
-- add validation before submission via AJAX (see #338744)
-- add taxonomy vocabulary/term as query field and scope (see #227254)
-- add views as a query scope (see #223792)
-- allow multiple types of constraints (see #347327)

File

CHANGELOG.txt
View source
  1. /**
  2. * Revisions log for unique_field
  3. */
  4. version 2009/11/17
  5. -- initial release of Drupal 7.x compatible version
  6. version 2009/11/12
  7. -- added Italian translation [thanks to eliosh]
  8. -- improved user message that reports duplicate values when checking
  9. fields in combination
  10. -- fixed support for datetime and other date-related database field
  11. datatypes [thanks to Parkes Design]
  12. -- added permission that allows users to bypass the unique field
  13. requirements after getting the warning message [thanks to benjah]
  14. version 2009/03/06
  15. -- fixed query generation for grouping OR clauses
  16. -- altered appearance of unique fields settings on the content type form:
  17. moved unique field section to the bottom, added descriptions
  18. -- fixed compatibility with date module version 6.x-2.0
  19. -- fixed compatibility with content_permissions module [thanks to skassam]
  20. -- Hungarian translation added [thanks to Zoltan Balogh]
  21. version 2009/02/09
  22. -- improved handling of CCK values in single node scope
  23. -- fixed formatting bug in duplicate error message
  24. version 2009/02/07
  25. -- fixed handling of multiple values per CCK field
  26. -- added option for showing the nodes that match when a duplicate
  27. value is found [thanks to crea]
  28. -- added node language as a query field and scope
  29. -- fixed handling of node revisions
  30. -- rewrote query generation routine
  31. -- added node author as a query field
  32. -- added hook_uninstall support for removing the module's variables
  33. [thanks to markus_petrux]
  34. -- improved compliance with coding standards [thanks to deekayen]
  35. version 2008/10/24
  36. -- updated to compatibility with Drupal 6.x [thanks to Yur]
  37. -- added check for content.module for CCK-dependent code [thanks to sigsby]
  38. -- removed all MySQL database-specific code [thanks to rssaddict]
  39. version 2008/03/15
  40. -- fixed to use node title label from node type data [thanks to tj2653]
  41. version 2008/03/14
  42. -- changed behavior so that if a field value is null or empty it matches
  43. no other node (including other nodes with null or empty values)
  44. [thanks to scedwar]
  45. version 2008/03/13
  46. -- fixed support for node and user reference fields in single node scope,
  47. verified support for both in other scopes
  48. version 2008/03/12
  49. -- added single node scope to require that specified fields on a node
  50. have unique values
  51. -- improved error messages to specify which fields must be unique
  52. and which include duplicates
  53. version 2008/02/22
  54. -- fixed queries to support table prefixes
  55. version 2008/02/18
  56. -- initial release
  57. TO-DO
  58. -- add SimpleTest test
  59. -- fix use of t() to eliminate the use of variables inside
  60. -- fix consistent case-sensitivity of database queries, add option
  61. for whether to use case-sensitive comparisons (see #333137)
  62. -- add validation before submission via AJAX (see #338744)
  63. -- add taxonomy vocabulary/term as query field and scope (see #227254)
  64. -- add views as a query scope (see #223792)
  65. -- allow multiple types of constraints (see #347327)