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.

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