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.

104 lines
3.6 KiB

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 EMAIL_USE_VERIFICATION configuration setting (#232)
  6. - Show "Badges" and "Settings" in top navigation (#234)
  7. - Upgrade to Django 2.2
  8. - Can configure the email integration to only report the "down" events (#231)
  9. - Add "Test!" function in the Integrations page (#207)
  10. - Rate limiting for the log in attempts
  11. - Password strength meter and length check in the "Set Password" form
  12. - Show the Description section even if the description is missing. (#246)
  13. - Include the description in email alerts. (#247)
  14. ## 1.6.0 - 2019-04-01
  15. ### Improvements
  16. - Add the "desc" field (check's description) to API responses
  17. - Add maxlength attribute to HTML input=text elements
  18. - Improved logic for displaying job execution times in log (#219)
  19. - Add Matrix integration
  20. - Add Pager Team integration
  21. - Add a management command for sending inactive account notifications
  22. ### Bug Fixes
  23. - Fix refreshing of the checks page filtered by tags (#221)
  24. - Escape asterisks in Slack messages (#223)
  25. - Fix a "invalid time format" in front.views.status_single on Windows hosts
  26. ## 1.5.0 - 2019-02-04
  27. ### Improvements
  28. - Database schema: add uniqueness constraint to Check.code
  29. - Database schema: add Ping.kind field. Remove "start" and "fail" fields.
  30. - Add "Email Settings..." dialog and "Subject Must Contain" setting
  31. - Database schema: add the Project model
  32. - Move project-specific settings to a new "Project Settings" page
  33. - Add a "Transfer to Another Project..." dialog
  34. - Add the "My Projects" page
  35. ## 1.4.0 - 2018-12-25
  36. ### Improvements
  37. - Set Pushover alert priorities for "down" and "up" events separately
  38. - Additional python usage examples
  39. - Allow simultaneous access to checks from different teams
  40. - Add CORS support to API endpoints
  41. - Flip model, for tracking status changes of the Check objects
  42. - Add `/ping/<code>/start` API endpoint
  43. - When using the `/start` endpoint, show elapsed times in ping log
  44. ### Bug Fixes
  45. - Fix after-login redirects (the "?next=" query parameter)
  46. - Update Check.status field when user edits timeout & grace settings
  47. - Use timezone-aware datetimes with croniter, avoid ambiguities around DST
  48. - Validate and reject cron schedules with six components
  49. ## 1.3.0 - 2018-11-21
  50. ### Improvements
  51. - Load settings from environment variables
  52. - Add "List-Unsubscribe" header to alert and report emails
  53. - Don't send monthly reports to inactive accounts (no pings in 6 months)
  54. - Add search box in the "My Checks" page
  55. - Add read-only API key support
  56. - Remove Profile.bill_to field (obsolete)
  57. - Show a warning when running with DEBUG=True
  58. - Add "channels" attribute to the Check API resource
  59. - Can specify channel codes when updating a check via API
  60. - Add a workaround for email agents automatically opening "Unsubscribe" links
  61. - Add Channel.name field, users can now name integrations
  62. - Add "Get a List of Existing Integrations" API call
  63. ### Bug Fixes
  64. - During DST transition, handle ambiguous dates as pre-transition
  65. ## 1.2.0 - 2018-10-20
  66. ### Improvements
  67. - Content updates in the "Welcome" page.
  68. - Added "Docs > Third-Party Resources" page.
  69. - Improved layout and styling in "Login" page.
  70. - Separate "Sign Up" and "Log In" forms.
  71. - "My Checks" page: support filtering checks by query string parameters.
  72. - Added Trello integration
  73. ### Bug Fixes
  74. - Timezones were missing in the "Change Schedule" dialog, fixed.
  75. - Fix hamburger menu button in "Login" page.
  76. ## 1.1.0 - 2018-08-20
  77. ### Improvements
  78. - A new "Check Details" page.
  79. - Updated django-compressor, psycopg2, pytz, requests package versions.
  80. - C# usage example.
  81. - Checks have a "Description" field.