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.

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