You are here

CHANGELOG.txt in JSONlog 7.2

Same filename and directory in other branches
  1. 7 CHANGELOG.txt
jsonlog 7.x-2.x, 2015-06-12
---------------------------
- Release 7.x-2.1.

jsonlog 7.x-2.x, 2015-06-06
---------------------------
- New 'canonical' name property for simpler identification across load balanced
  site instances.
- Support event/error 'code'; an exploitation of Drupal watchdog's 'link'
  property (when that is integer or 'integer').

jsonlog 7.x-2.x, 2015-04-28
---------------------------
- Reset jsonlog_dir to default by submitting empty jsonlog_dir field.
- Settings page: fieldsets have no description - doh.

jsonlog 7.x-2.x, 2015-04-24
---------------------------
- Variable replacement must take place _before_ escaping message.

jsonlog 7.x-2.x, 2015-03-21
---------------------------
- Replace variables into message.

jsonlog 7.x-2.x, 2014-12-16
---------------------------
* Don't escape newlines, (drupal_)json_encode() does that.
* Increased default truncation to 64 (Kb, was 4).
* Release 7.x-2.0.

jsonlog 7.x-2.x, 2014-12-10
---------------------------
* Recent changes call for a new major version. Will roll branch 7.x-1.x back to the equivalent of tag 7.x-1.3.

jsonlog 7.x-2.x, 2014-12-06
---------------------------
* Now defaults to write to daily log files instead of one file forever.
* Replaced the setting jsonlog_file with jsonlog_dir.
* Watchdog 'type' is now being logged as JSON 'subtype', and JSON 'type' is always 'drupal'.

jsonlog 7.x-2.x, 2014-12-05
---------------------------
* Watchdog 'type' is now being logged as JSON 'category', and JSON 'type' is always 'drupal'.

jsonlog 7.x-1.x, 2014-11-12
---------------------------
* Fixed that settings form didn't work at all (issue #2373857).
* Site id and file settings are required.
* Test filing shan't manipulate drupal file setting unnecessarily.
* Release 7.x-1.3.

jsonlog 7.x-1.x, 2014-11-11
---------------------------
* Use file locking (issue #2373039).
* Renamed 'event_id' to 'message_id'.
* Release 7.x-1.2.

jsonlog 7.x-1.x, 2014-10-21
---------------------------
* Fix negation of writable in filing test (issue #2360577).
* Moved helper functions which aren't needed - except initially and when administating the module - to include file.
* jsonlog_test_filing() is now usable for drush.
* Better phpdoc'umentation.

jsonlog 7.x-1.x, 2014-10-20
---------------------------
* Better error handling when testing log filing, and some admin page improvements.
* Release 7.x-1.0.

jsonlog 7.x-1.x, 2014-10-15
---------------------------
* Implemented tags.

jsonlog 7.x-1.x, 2014-10-14
---------------------------
* JSON field names are no longer configurable.
* The version field's value is no longer configurable, but always 1.
* All conf variables are now overridable by server environment variables (drupal_[variable name]), and no longer conditioned by server env var drupal_jsonlog_server_conf (now obsolete).

jsonlog 7.x-1.x, 2014-08-08
---------------------------
* Use server environment vars instead of Drupal conf vars, if server env.var 'drupal_jsonlog_server_conf' is set.

jsonlog 7.x-1.x, 2014-08-06
---------------------------
* Fixed that test write didn't write effectively didn't write to the location to be tested.

jsonlog 7.x-1.x, 2014-08-03
---------------------------
* Use API drupal_truncate_bytes instead of custom multibyte truncation algo.

jsonlog 7.x-1.x, 2014-07-29
---------------------------
* Remove null byte.
* Test write when user submits the logging settings form.
* Use file_put_contents() instead of fopen+fwrite+fclose().

jsonlog 7.x-1.x, 2014-07-28
---------------------------
* Establish default log dir when error_log directive is 'syslog'.

jsonlog 7.x-1.x, 2014-07-24
---------------------------
* Truncation. Fixed newline escaping (json_encode() doesn't escape control chars). Log to standard log if filing fails.
* Various minor optimizations and fixes.

jsonlog 7.x-1.x, 2014-07-23
---------------------------
* Initial.

File

CHANGELOG.txt
View source
  1. jsonlog 7.x-2.x, 2015-06-12
  2. ---------------------------
  3. - Release 7.x-2.1.
  4. jsonlog 7.x-2.x, 2015-06-06
  5. ---------------------------
  6. - New 'canonical' name property for simpler identification across load balanced
  7. site instances.
  8. - Support event/error 'code'; an exploitation of Drupal watchdog's 'link'
  9. property (when that is integer or 'integer').
  10. jsonlog 7.x-2.x, 2015-04-28
  11. ---------------------------
  12. - Reset jsonlog_dir to default by submitting empty jsonlog_dir field.
  13. - Settings page: fieldsets have no description - doh.
  14. jsonlog 7.x-2.x, 2015-04-24
  15. ---------------------------
  16. - Variable replacement must take place _before_ escaping message.
  17. jsonlog 7.x-2.x, 2015-03-21
  18. ---------------------------
  19. - Replace variables into message.
  20. jsonlog 7.x-2.x, 2014-12-16
  21. ---------------------------
  22. * Don't escape newlines, (drupal_)json_encode() does that.
  23. * Increased default truncation to 64 (Kb, was 4).
  24. * Release 7.x-2.0.
  25. jsonlog 7.x-2.x, 2014-12-10
  26. ---------------------------
  27. * Recent changes call for a new major version. Will roll branch 7.x-1.x back to the equivalent of tag 7.x-1.3.
  28. jsonlog 7.x-2.x, 2014-12-06
  29. ---------------------------
  30. * Now defaults to write to daily log files instead of one file forever.
  31. * Replaced the setting jsonlog_file with jsonlog_dir.
  32. * Watchdog 'type' is now being logged as JSON 'subtype', and JSON 'type' is always 'drupal'.
  33. jsonlog 7.x-2.x, 2014-12-05
  34. ---------------------------
  35. * Watchdog 'type' is now being logged as JSON 'category', and JSON 'type' is always 'drupal'.
  36. jsonlog 7.x-1.x, 2014-11-12
  37. ---------------------------
  38. * Fixed that settings form didn't work at all (issue #2373857).
  39. * Site id and file settings are required.
  40. * Test filing shan't manipulate drupal file setting unnecessarily.
  41. * Release 7.x-1.3.
  42. jsonlog 7.x-1.x, 2014-11-11
  43. ---------------------------
  44. * Use file locking (issue #2373039).
  45. * Renamed 'event_id' to 'message_id'.
  46. * Release 7.x-1.2.
  47. jsonlog 7.x-1.x, 2014-10-21
  48. ---------------------------
  49. * Fix negation of writable in filing test (issue #2360577).
  50. * Moved helper functions which aren't needed - except initially and when administating the module - to include file.
  51. * jsonlog_test_filing() is now usable for drush.
  52. * Better phpdoc'umentation.
  53. jsonlog 7.x-1.x, 2014-10-20
  54. ---------------------------
  55. * Better error handling when testing log filing, and some admin page improvements.
  56. * Release 7.x-1.0.
  57. jsonlog 7.x-1.x, 2014-10-15
  58. ---------------------------
  59. * Implemented tags.
  60. jsonlog 7.x-1.x, 2014-10-14
  61. ---------------------------
  62. * JSON field names are no longer configurable.
  63. * The version field's value is no longer configurable, but always 1.
  64. * All conf variables are now overridable by server environment variables (drupal_[variable name]), and no longer conditioned by server env var drupal_jsonlog_server_conf (now obsolete).
  65. jsonlog 7.x-1.x, 2014-08-08
  66. ---------------------------
  67. * Use server environment vars instead of Drupal conf vars, if server env.var 'drupal_jsonlog_server_conf' is set.
  68. jsonlog 7.x-1.x, 2014-08-06
  69. ---------------------------
  70. * Fixed that test write didn't write effectively didn't write to the location to be tested.
  71. jsonlog 7.x-1.x, 2014-08-03
  72. ---------------------------
  73. * Use API drupal_truncate_bytes instead of custom multibyte truncation algo.
  74. jsonlog 7.x-1.x, 2014-07-29
  75. ---------------------------
  76. * Remove null byte.
  77. * Test write when user submits the logging settings form.
  78. * Use file_put_contents() instead of fopen+fwrite+fclose().
  79. jsonlog 7.x-1.x, 2014-07-28
  80. ---------------------------
  81. * Establish default log dir when error_log directive is 'syslog'.
  82. jsonlog 7.x-1.x, 2014-07-24
  83. ---------------------------
  84. * Truncation. Fixed newline escaping (json_encode() doesn't escape control chars). Log to standard log if filing fails.
  85. * Various minor optimizations and fixes.
  86. jsonlog 7.x-1.x, 2014-07-23
  87. ---------------------------
  88. * Initial.