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.

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