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.

179 lines
6.5 KiB

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. ## v1.12.0-dev - Unreleased
  4. ### Improvements
  5. - "Filtering Rules" dialog, an option to require HTTP POST (#297)
  6. - Show Healthchecks version in Django admin header (#306)
  7. ## v1.11.0 - 2019-11-22
  8. ### Improvements
  9. - In monthly reports, no downtime stats for the current month (month has just started)
  10. - Add Microsoft Teams integration (#135)
  11. - Add Profile.last_active_date field for more accurate inactive user detection
  12. - Add "Shell Commands" integration (#302)
  13. - PagerDuty integration works with or without PD_VENDOR_KEY (#303)
  14. ### Bug Fixes
  15. - On mobile, "My Checks" page, always show the gear (Details) button (#286)
  16. - Make log events fit better on mobile screens
  17. ## v1.10.0 - 2019-10-21
  18. ### Improvements
  19. - Add the "Last Duration" field in the "My Checks" page (#257)
  20. - Add "last_duration" attribute to the Check API resource (#257)
  21. - Upgrade to psycopg2 2.8.3
  22. - Add Go usage example
  23. - Send monthly reports on 1st of every month, not randomly during the month
  24. - Signup form sets the "auto-login" cookie to avoid an extra click during first login
  25. - Autofocus the email field in the signup form, and submit on enter key
  26. - Add support for OpsGenie EU region (#294)
  27. - Update OpsGenie logo and setup illustrations
  28. - Add a "Create a Copy" function for cloning checks (#288)
  29. - Send email notification when monthly SMS sending limit is reached (#292)
  30. ### Bug Fixes
  31. - Prevent double-clicking the submit button in signup form
  32. - Upgrade to Django 2.2.6 – fixes sqlite migrations (#284)
  33. ## v1.9.0 - 2019-09-03
  34. ### Improvements
  35. - Show the number of downtimes and total downtime minutes in monthly reports (#104)
  36. - Show the number of downtimes and total downtime minutes in "Check Details" page
  37. - Add the `pruneflips` management command
  38. - Add Mattermost integration (#276)
  39. - Three choices in timezone switcher (UTC / check's timezone / browser's timezone) (#278)
  40. - After adding a new check redirect to the "Check Details" page
  41. ### Bug Fixes
  42. - Fix javascript code to construct correct URLs when running from a subdirectory (#273)
  43. - Don't show the "Sign Up" link in the login page if registration is closed (#280)
  44. ## v1.8.0 - 2019-07-08
  45. ### Improvements
  46. - Add the `prunetokenbucket` management command
  47. - Show check counts in JSON "badges" (#251)
  48. - Webhooks support HTTP PUT (#249)
  49. - Webhooks can use different req. bodies and headers for "up" and "down" events (#249)
  50. - Show check's code instead of full URL on 992px - 1200px wide screens (#253)
  51. - Add WhatsApp integration (uses Twilio same as the SMS integration)
  52. - Webhooks support the $TAGS placeholder
  53. - Don't include ping URLs in API responses when the read-only key is used
  54. ### Bug Fixes
  55. - Fix badges for tags containing special characters (#240, #237)
  56. - Fix the "Integrations" page for when the user has no active project
  57. - Prevent email clients from opening the one-time login links (#255)
  58. - Fix `prunepings` and `prunepingsslow`, they got broken when adding Projects (#264)
  59. ## v1.7.0 - 2019-05-02
  60. ### Improvements
  61. - Add the EMAIL_USE_VERIFICATION configuration setting (#232)
  62. - Show "Badges" and "Settings" in top navigation (#234)
  63. - Upgrade to Django 2.2
  64. - Can configure the email integration to only report the "down" events (#231)
  65. - Add "Test!" function in the Integrations page (#207)
  66. - Rate limiting for the log in attempts
  67. - Password strength meter and length check in the "Set Password" form
  68. - Show the Description section even if the description is missing. (#246)
  69. - Include the description in email alerts. (#247)
  70. ## v1.6.0 - 2019-04-01
  71. ### Improvements
  72. - Add the "desc" field (check's description) to API responses
  73. - Add maxlength attribute to HTML input=text elements
  74. - Improved logic for displaying job execution times in log (#219)
  75. - Add Matrix integration
  76. - Add Pager Team integration
  77. - Add a management command for sending inactive account notifications
  78. ### Bug Fixes
  79. - Fix refreshing of the checks page filtered by tags (#221)
  80. - Escape asterisks in Slack messages (#223)
  81. - Fix a "invalid time format" in front.views.status_single on Windows hosts
  82. ## v1.5.0 - 2019-02-04
  83. ### Improvements
  84. - Database schema: add uniqueness constraint to Check.code
  85. - Database schema: add Ping.kind field. Remove "start" and "fail" fields
  86. - Add "Email Settings..." dialog and "Subject Must Contain" setting
  87. - Database schema: add the Project model
  88. - Move project-specific settings to a new "Project Settings" page
  89. - Add a "Transfer to Another Project..." dialog
  90. - Add the "My Projects" page
  91. ## v1.4.0 - 2018-12-25
  92. ### Improvements
  93. - Set Pushover alert priorities for "down" and "up" events separately
  94. - Additional python usage examples
  95. - Allow simultaneous access to checks from different teams
  96. - Add CORS support to API endpoints
  97. - Flip model, for tracking status changes of the Check objects
  98. - Add `/ping/<code>/start` API endpoint
  99. - When using the `/start` endpoint, show elapsed times in ping log
  100. ### Bug Fixes
  101. - Fix after-login redirects (the "?next=" query parameter)
  102. - Update Check.status field when user edits timeout & grace settings
  103. - Use timezone-aware datetimes with croniter, avoid ambiguities around DST
  104. - Validate and reject cron schedules with six components
  105. ## v1.3.0 - 2018-11-21
  106. ### Improvements
  107. - Load settings from environment variables
  108. - Add "List-Unsubscribe" header to alert and report emails
  109. - Don't send monthly reports to inactive accounts (no pings in 6 months)
  110. - Add search box in the "My Checks" page
  111. - Add read-only API key support
  112. - Remove Profile.bill_to field (obsolete)
  113. - Show a warning when running with DEBUG=True
  114. - Add "channels" attribute to the Check API resource
  115. - Can specify channel codes when updating a check via API
  116. - Add a workaround for email agents automatically opening "Unsubscribe" links
  117. - Add Channel.name field, users can now name integrations
  118. - Add "Get a List of Existing Integrations" API call
  119. ### Bug Fixes
  120. - During DST transition, handle ambiguous dates as pre-transition
  121. ## v1.2.0 - 2018-10-20
  122. ### Improvements
  123. - Content updates in the "Welcome" page.
  124. - Added "Docs > Third-Party Resources" page.
  125. - Improved layout and styling in "Login" page.
  126. - Separate "Sign Up" and "Log In" forms.
  127. - "My Checks" page: support filtering checks by query string parameters.
  128. - Added Trello integration
  129. ### Bug Fixes
  130. - Timezones were missing in the "Change Schedule" dialog, fixed.
  131. - Fix hamburger menu button in "Login" page.
  132. ## v1.1.0 - 2018-08-20
  133. ### Improvements
  134. - A new "Check Details" page.
  135. - Updated django-compressor, psycopg2, pytz, requests package versions.
  136. - C# usage example.
  137. - Checks have a "Description" field.