You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
5.2 KiB

5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. ## Unreleased
  4. ### Improvements
  5. - Add the "Last Duration" field in the "My Checks" page (#257)
  6. - Add "last_duration" attribute to the Check API resource (#257)
  7. ## 1.9.0 - 2019-09-03
  8. ### Improvements
  9. - Show the number of downtimes and total downtime minutes in monthly reports (#104)
  10. - Show the number of downtimes and total downtime minutes in "Check Details" page
  11. - Add the `pruneflips` management command
  12. - Add Mattermost integration (#276)
  13. - Three choices in timezone switcher (UTC / check's timezone / browser's timezone) (#278)
  14. - After adding a new check redirect to the "Check Details" page
  15. ## Bug Fixes
  16. - Fix javascript code to construct correct URLs when running from a subdirectory (#273)
  17. - Don't show the "Sign Up" link in the login page if registration is closed (#280)
  18. ## 1.8.0 - 2019-07-08
  19. ### Improvements
  20. - Add the `prunetokenbucket` management command
  21. - Show check counts in JSON "badges" (#251)
  22. - Webhooks support HTTP PUT (#249)
  23. - Webhooks can use different req. bodies and headers for "up" and "down" events (#249)
  24. - Show check's code instead of full URL on 992px - 1200px wide screens (#253)
  25. - Add WhatsApp integration (uses Twilio same as the SMS integration)
  26. - Webhooks support the $TAGS placeholder
  27. - Don't include ping URLs in API responses when the read-only key is used
  28. ### Bug Fixes
  29. - Fix badges for tags containing special characters (#240, #237)
  30. - Fix the "Integrations" page for when the user has no active project
  31. - Prevent email clients from opening the one-time login links (#255)
  32. - Fix `prunepings` and `prunepingsslow`, they got broken when adding Projects (#264)
  33. ## 1.7.0 - 2019-05-02
  34. ### Improvements
  35. - Add the EMAIL_USE_VERIFICATION configuration setting (#232)
  36. - Show "Badges" and "Settings" in top navigation (#234)
  37. - Upgrade to Django 2.2
  38. - Can configure the email integration to only report the "down" events (#231)
  39. - Add "Test!" function in the Integrations page (#207)
  40. - Rate limiting for the log in attempts
  41. - Password strength meter and length check in the "Set Password" form
  42. - Show the Description section even if the description is missing. (#246)
  43. - Include the description in email alerts. (#247)
  44. ## 1.6.0 - 2019-04-01
  45. ### Improvements
  46. - Add the "desc" field (check's description) to API responses
  47. - Add maxlength attribute to HTML input=text elements
  48. - Improved logic for displaying job execution times in log (#219)
  49. - Add Matrix integration
  50. - Add Pager Team integration
  51. - Add a management command for sending inactive account notifications
  52. ### Bug Fixes
  53. - Fix refreshing of the checks page filtered by tags (#221)
  54. - Escape asterisks in Slack messages (#223)
  55. - Fix a "invalid time format" in front.views.status_single on Windows hosts
  56. ## 1.5.0 - 2019-02-04
  57. ### Improvements
  58. - Database schema: add uniqueness constraint to Check.code
  59. - Database schema: add Ping.kind field. Remove "start" and "fail" fields
  60. - Add "Email Settings..." dialog and "Subject Must Contain" setting
  61. - Database schema: add the Project model
  62. - Move project-specific settings to a new "Project Settings" page
  63. - Add a "Transfer to Another Project..." dialog
  64. - Add the "My Projects" page
  65. ## 1.4.0 - 2018-12-25
  66. ### Improvements
  67. - Set Pushover alert priorities for "down" and "up" events separately
  68. - Additional python usage examples
  69. - Allow simultaneous access to checks from different teams
  70. - Add CORS support to API endpoints
  71. - Flip model, for tracking status changes of the Check objects
  72. - Add `/ping/<code>/start` API endpoint
  73. - When using the `/start` endpoint, show elapsed times in ping log
  74. ### Bug Fixes
  75. - Fix after-login redirects (the "?next=" query parameter)
  76. - Update Check.status field when user edits timeout & grace settings
  77. - Use timezone-aware datetimes with croniter, avoid ambiguities around DST
  78. - Validate and reject cron schedules with six components
  79. ## 1.3.0 - 2018-11-21
  80. ### Improvements
  81. - Load settings from environment variables
  82. - Add "List-Unsubscribe" header to alert and report emails
  83. - Don't send monthly reports to inactive accounts (no pings in 6 months)
  84. - Add search box in the "My Checks" page
  85. - Add read-only API key support
  86. - Remove Profile.bill_to field (obsolete)
  87. - Show a warning when running with DEBUG=True
  88. - Add "channels" attribute to the Check API resource
  89. - Can specify channel codes when updating a check via API
  90. - Add a workaround for email agents automatically opening "Unsubscribe" links
  91. - Add Channel.name field, users can now name integrations
  92. - Add "Get a List of Existing Integrations" API call
  93. ### Bug Fixes
  94. - During DST transition, handle ambiguous dates as pre-transition
  95. ## 1.2.0 - 2018-10-20
  96. ### Improvements
  97. - Content updates in the "Welcome" page.
  98. - Added "Docs > Third-Party Resources" page.
  99. - Improved layout and styling in "Login" page.
  100. - Separate "Sign Up" and "Log In" forms.
  101. - "My Checks" page: support filtering checks by query string parameters.
  102. - Added Trello integration
  103. ### Bug Fixes
  104. - Timezones were missing in the "Change Schedule" dialog, fixed.
  105. - Fix hamburger menu button in "Login" page.
  106. ## 1.1.0 - 2018-08-20
  107. ### Improvements
  108. - A new "Check Details" page.
  109. - Updated django-compressor, psycopg2, pytz, requests package versions.
  110. - C# usage example.
  111. - Checks have a "Description" field.