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.

74 lines
2.5 KiB

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. - Database schema: add uniqueness constraint to Check.code
  6. - Database schema: add Ping.kind field. Remove "start" and "fail" fields.
  7. - Add "Email Settings..." dialog and "Subject Must Contain" setting
  8. - Database schema: add the Project model
  9. - Move project-specific settings to a new "Project Settings" page
  10. - Add a "Transfer to Another Project..." dialog
  11. ## 1.4.0 - 2018-12-25
  12. ### Improvements
  13. - Set Pushover alert priorities for "down" and "up" events separately
  14. - Additional python usage examples
  15. - Allow simultaneous access to checks from different teams
  16. - Add CORS support to API endpoints
  17. - Flip model, for tracking status changes of the Check objects
  18. - Add `/ping/<code>/start` API endpoint
  19. - When using the `/start` endpoint, show elapsed times in ping log
  20. ### Bug Fixes
  21. - Fix after-login redirects (the "?next=" query parameter)
  22. - Update Check.status field when user edits timeout & grace settings
  23. - Use timezone-aware datetimes with croniter, avoid ambiguities around DST
  24. - Validate and reject cron schedules with six components
  25. ## 1.3.0 - 2018-11-21
  26. ### Improvements
  27. - Load settings from environment variables
  28. - Add "List-Unsubscribe" header to alert and report emails
  29. - Don't send monthly reports to inactive accounts (no pings in 6 months)
  30. - Add search box in the "My Checks" page
  31. - Add read-only API key support
  32. - Remove Profile.bill_to field (obsolete)
  33. - Show a warning when running with DEBUG=True
  34. - Add "channels" attribute to the Check API resource
  35. - Can specify channel codes when updating a check via API
  36. - Add a workaround for email agents automatically opening "Unsubscribe" links
  37. - Add Channel.name field, users can now name integrations
  38. - Add "Get a List of Existing Integrations" API call
  39. ### Bug Fixes
  40. - During DST transition, handle ambiguous dates as pre-transition
  41. ## 1.2.0 - 2018-10-20
  42. ### Improvements
  43. - Content updates in the "Welcome" page.
  44. - Added "Docs > Third-Party Resources" page.
  45. - Improved layout and styling in "Login" page.
  46. - Separate "Sign Up" and "Log In" forms.
  47. - "My Checks" page: support filtering checks by query string parameters.
  48. - Added Trello integration
  49. ### Bug Fixes
  50. - Timezones were missing in the "Change Schedule" dialog, fixed.
  51. - Fix hamburger menu button in "Login" page.
  52. ## 1.1.0 - 2018-08-20
  53. ### Improvements
  54. - A new "Check Details" page.
  55. - Updated django-compressor, psycopg2, pytz, requests package versions.
  56. - C# usage example.
  57. - Checks have a "Description" field.